@aws-sdk/client-iottwinmaker 3.252.0 → 3.254.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.
@@ -507,7 +507,7 @@ const serializeAws_restJson1GetPropertyValueHistoryCommand = async (input, conte
507
507
  body = JSON.stringify({
508
508
  ...(input.componentName != null && { componentName: input.componentName }),
509
509
  ...(input.componentTypeId != null && { componentTypeId: input.componentTypeId }),
510
- ...(input.endDateTime != null && { endDateTime: Math.round(input.endDateTime.getTime() / 1000).toString() }),
510
+ ...(input.endDateTime != null && { endDateTime: Math.round(input.endDateTime.getTime() / 1000) }),
511
511
  ...(input.endTime != null && { endTime: input.endTime }),
512
512
  ...(input.entityId != null && { entityId: input.entityId }),
513
513
  ...(input.interpolation != null && {
@@ -522,7 +522,7 @@ const serializeAws_restJson1GetPropertyValueHistoryCommand = async (input, conte
522
522
  ...(input.selectedProperties != null && {
523
523
  selectedProperties: serializeAws_restJson1SelectedPropertyList(input.selectedProperties, context),
524
524
  }),
525
- ...(input.startDateTime != null && { startDateTime: Math.round(input.startDateTime.getTime() / 1000).toString() }),
525
+ ...(input.startDateTime != null && { startDateTime: Math.round(input.startDateTime.getTime() / 1000) }),
526
526
  ...(input.startTime != null && { startTime: input.startTime }),
527
527
  });
528
528
  let { hostname: resolvedHostname } = await context.endpoint();
@@ -3299,7 +3299,7 @@ const serializeAws_restJson1PropertyRequests = (input, context) => {
3299
3299
  const serializeAws_restJson1PropertyValue = (input, context) => {
3300
3300
  return {
3301
3301
  ...(input.time != null && { time: input.time }),
3302
- ...(input.timestamp != null && { timestamp: Math.round(input.timestamp.getTime() / 1000).toString() }),
3302
+ ...(input.timestamp != null && { timestamp: Math.round(input.timestamp.getTime() / 1000) }),
3303
3303
  ...(input.value != null && { value: serializeAws_restJson1DataValue(input.value, context) }),
3304
3304
  };
3305
3305
  };
@@ -487,7 +487,7 @@ export const serializeAws_restJson1GetPropertyValueHistoryCommand = async (input
487
487
  body = JSON.stringify({
488
488
  ...(input.componentName != null && { componentName: input.componentName }),
489
489
  ...(input.componentTypeId != null && { componentTypeId: input.componentTypeId }),
490
- ...(input.endDateTime != null && { endDateTime: Math.round(input.endDateTime.getTime() / 1000).toString() }),
490
+ ...(input.endDateTime != null && { endDateTime: Math.round(input.endDateTime.getTime() / 1000) }),
491
491
  ...(input.endTime != null && { endTime: input.endTime }),
492
492
  ...(input.entityId != null && { entityId: input.entityId }),
493
493
  ...(input.interpolation != null && {
@@ -502,7 +502,7 @@ export const serializeAws_restJson1GetPropertyValueHistoryCommand = async (input
502
502
  ...(input.selectedProperties != null && {
503
503
  selectedProperties: serializeAws_restJson1SelectedPropertyList(input.selectedProperties, context),
504
504
  }),
505
- ...(input.startDateTime != null && { startDateTime: Math.round(input.startDateTime.getTime() / 1000).toString() }),
505
+ ...(input.startDateTime != null && { startDateTime: Math.round(input.startDateTime.getTime() / 1000) }),
506
506
  ...(input.startTime != null && { startTime: input.startTime }),
507
507
  });
508
508
  let { hostname: resolvedHostname } = await context.endpoint();
@@ -3227,7 +3227,7 @@ const serializeAws_restJson1PropertyRequests = (input, context) => {
3227
3227
  const serializeAws_restJson1PropertyValue = (input, context) => {
3228
3228
  return {
3229
3229
  ...(input.time != null && { time: input.time }),
3230
- ...(input.timestamp != null && { timestamp: Math.round(input.timestamp.getTime() / 1000).toString() }),
3230
+ ...(input.timestamp != null && { timestamp: Math.round(input.timestamp.getTime() / 1000) }),
3231
3231
  ...(input.value != null && { value: serializeAws_restJson1DataValue(input.value, context) }),
3232
3232
  };
3233
3233
  };
@@ -6,7 +6,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
6
6
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
8
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
10
  import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
11
11
  import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
12
12
  import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
@@ -50,11 +50,11 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
50
50
  */
51
51
  requestHandler?: __HttpHandler;
52
52
  /**
53
- * A constructor for a class implementing the {@link __Hash} interface
53
+ * A constructor for a class implementing the {@link __Checksum} interface
54
54
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
55
55
  * @internal
56
56
  */
57
- sha256?: __HashConstructor;
57
+ sha256?: __ChecksumConstructor | __HashConstructor;
58
58
  /**
59
59
  * The function that will be used to convert strings into HTTP endpoints.
60
60
  * @internal
@@ -31,6 +31,7 @@ import {
31
31
  } from "@aws-sdk/smithy-client";
32
32
  import {
33
33
  BodyLengthCalculator as __BodyLengthCalculator,
34
+ ChecksumConstructor as __ChecksumConstructor,
34
35
  Credentials as __Credentials,
35
36
  Decoder as __Decoder,
36
37
  Encoder as __Encoder,
@@ -257,7 +258,7 @@ export declare type ServiceOutputTypes =
257
258
  export interface ClientDefaults
258
259
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
259
260
  requestHandler?: __HttpHandler;
260
- sha256?: __HashConstructor;
261
+ sha256?: __ChecksumConstructor | __HashConstructor;
261
262
  urlParser?: __UrlParser;
262
263
  bodyLengthChecker?: __BodyLengthCalculator;
263
264
  streamCollector?: __StreamCollector;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iottwinmaker",
3
3
  "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
4
- "version": "3.252.0",
4
+ "version": "3.254.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",
@@ -18,39 +18,39 @@
18
18
  "module": "./dist-es/index.js",
19
19
  "sideEffects": false,
20
20
  "dependencies": {
21
- "@aws-crypto/sha256-browser": "2.0.0",
22
- "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.252.0",
24
- "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.252.0",
26
- "@aws-sdk/fetch-http-handler": "3.226.0",
27
- "@aws-sdk/hash-node": "3.226.0",
28
- "@aws-sdk/invalid-dependency": "3.226.0",
29
- "@aws-sdk/middleware-content-length": "3.226.0",
30
- "@aws-sdk/middleware-endpoint": "3.226.0",
31
- "@aws-sdk/middleware-host-header": "3.226.0",
32
- "@aws-sdk/middleware-logger": "3.226.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.226.0",
34
- "@aws-sdk/middleware-retry": "3.235.0",
35
- "@aws-sdk/middleware-serde": "3.226.0",
36
- "@aws-sdk/middleware-signing": "3.226.0",
37
- "@aws-sdk/middleware-stack": "3.226.0",
38
- "@aws-sdk/middleware-user-agent": "3.226.0",
39
- "@aws-sdk/node-config-provider": "3.226.0",
40
- "@aws-sdk/node-http-handler": "3.226.0",
41
- "@aws-sdk/protocol-http": "3.226.0",
42
- "@aws-sdk/smithy-client": "3.234.0",
43
- "@aws-sdk/types": "3.226.0",
44
- "@aws-sdk/url-parser": "3.226.0",
21
+ "@aws-crypto/sha256-browser": "3.0.0",
22
+ "@aws-crypto/sha256-js": "3.0.0",
23
+ "@aws-sdk/client-sts": "3.254.0",
24
+ "@aws-sdk/config-resolver": "3.254.0",
25
+ "@aws-sdk/credential-provider-node": "3.254.0",
26
+ "@aws-sdk/fetch-http-handler": "3.254.0",
27
+ "@aws-sdk/hash-node": "3.254.0",
28
+ "@aws-sdk/invalid-dependency": "3.254.0",
29
+ "@aws-sdk/middleware-content-length": "3.254.0",
30
+ "@aws-sdk/middleware-endpoint": "3.254.0",
31
+ "@aws-sdk/middleware-host-header": "3.254.0",
32
+ "@aws-sdk/middleware-logger": "3.254.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.254.0",
34
+ "@aws-sdk/middleware-retry": "3.254.0",
35
+ "@aws-sdk/middleware-serde": "3.254.0",
36
+ "@aws-sdk/middleware-signing": "3.254.0",
37
+ "@aws-sdk/middleware-stack": "3.254.0",
38
+ "@aws-sdk/middleware-user-agent": "3.254.0",
39
+ "@aws-sdk/node-config-provider": "3.254.0",
40
+ "@aws-sdk/node-http-handler": "3.254.0",
41
+ "@aws-sdk/protocol-http": "3.254.0",
42
+ "@aws-sdk/smithy-client": "3.254.0",
43
+ "@aws-sdk/types": "3.254.0",
44
+ "@aws-sdk/url-parser": "3.254.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.234.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.234.0",
50
- "@aws-sdk/util-endpoints": "3.245.0",
51
- "@aws-sdk/util-retry": "3.229.0",
52
- "@aws-sdk/util-user-agent-browser": "3.226.0",
53
- "@aws-sdk/util-user-agent-node": "3.226.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.254.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.254.0",
50
+ "@aws-sdk/util-endpoints": "3.254.0",
51
+ "@aws-sdk/util-retry": "3.254.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.254.0",
53
+ "@aws-sdk/util-user-agent-node": "3.254.0",
54
54
  "@aws-sdk/util-utf8-browser": "3.188.0",
55
55
  "@aws-sdk/util-utf8-node": "3.208.0",
56
56
  "tslib": "^2.3.1"