@aws-sdk/client-comprehendmedical 3.245.0 → 3.252.0
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.
|
@@ -1485,8 +1485,12 @@ const serializeAws_json1_1ComprehendMedicalAsyncJobFilter = (input, context) =>
|
|
|
1485
1485
|
return {
|
|
1486
1486
|
...(input.JobName != null && { JobName: input.JobName }),
|
|
1487
1487
|
...(input.JobStatus != null && { JobStatus: input.JobStatus }),
|
|
1488
|
-
...(input.SubmitTimeAfter != null && {
|
|
1489
|
-
|
|
1488
|
+
...(input.SubmitTimeAfter != null && {
|
|
1489
|
+
SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000).toString(),
|
|
1490
|
+
}),
|
|
1491
|
+
...(input.SubmitTimeBefore != null && {
|
|
1492
|
+
SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000).toString(),
|
|
1493
|
+
}),
|
|
1490
1494
|
};
|
|
1491
1495
|
};
|
|
1492
1496
|
const serializeAws_json1_1DescribeEntitiesDetectionV2JobRequest = (input, context) => {
|
|
@@ -1429,8 +1429,12 @@ const serializeAws_json1_1ComprehendMedicalAsyncJobFilter = (input, context) =>
|
|
|
1429
1429
|
return {
|
|
1430
1430
|
...(input.JobName != null && { JobName: input.JobName }),
|
|
1431
1431
|
...(input.JobStatus != null && { JobStatus: input.JobStatus }),
|
|
1432
|
-
...(input.SubmitTimeAfter != null && {
|
|
1433
|
-
|
|
1432
|
+
...(input.SubmitTimeAfter != null && {
|
|
1433
|
+
SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000).toString(),
|
|
1434
|
+
}),
|
|
1435
|
+
...(input.SubmitTimeBefore != null && {
|
|
1436
|
+
SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000).toString(),
|
|
1437
|
+
}),
|
|
1434
1438
|
};
|
|
1435
1439
|
};
|
|
1436
1440
|
const serializeAws_json1_1DescribeEntitiesDetectionV2JobRequest = (input, context) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-comprehendmedical",
|
|
3
3
|
"description": "AWS SDK for JavaScript Comprehendmedical Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.252.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
-
"generate:client": "
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo comprehendmedical"
|
|
15
15
|
},
|
|
16
16
|
"main": "./dist-cjs/index.js",
|
|
17
17
|
"types": "./dist-types/index.d.ts",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.252.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.234.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.252.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.226.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.226.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.226.0",
|