@aws-sdk/client-iot-data-plane 3.590.0 → 3.596.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.
- package/dist-cjs/index.js +0 -7
- package/dist-types/commands/DeleteThingShadowCommand.d.ts +2 -1
- package/dist-types/commands/GetRetainedMessageCommand.d.ts +2 -1
- package/dist-types/commands/GetThingShadowCommand.d.ts +2 -1
- package/dist-types/commands/ListNamedShadowsForThingCommand.d.ts +2 -1
- package/dist-types/commands/ListRetainedMessagesCommand.d.ts +2 -1
- package/dist-types/commands/PublishCommand.d.ts +2 -1
- package/dist-types/commands/UpdateThingShadowCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/IoTDataPlaneServiceException.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteThingShadowCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetRetainedMessageCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetThingShadowCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListNamedShadowsForThingCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListRetainedMessagesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PublishCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateThingShadowCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/IoTDataPlaneServiceException.d.ts +2 -1
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -197,7 +197,6 @@ var IoTDataPlaneClient = _IoTDataPlaneClient;
|
|
|
197
197
|
|
|
198
198
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
199
199
|
|
|
200
|
-
var import_types = require("@smithy/types");
|
|
201
200
|
|
|
202
201
|
// src/protocols/Aws_restJson1.ts
|
|
203
202
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -807,7 +806,6 @@ var DeleteThingShadowCommand = _DeleteThingShadowCommand;
|
|
|
807
806
|
|
|
808
807
|
|
|
809
808
|
|
|
810
|
-
|
|
811
809
|
var _GetRetainedMessageCommand = class _GetRetainedMessageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
812
810
|
...commonParams
|
|
813
811
|
}).m(function(Command, cs, config, o) {
|
|
@@ -824,7 +822,6 @@ var GetRetainedMessageCommand = _GetRetainedMessageCommand;
|
|
|
824
822
|
|
|
825
823
|
|
|
826
824
|
|
|
827
|
-
|
|
828
825
|
var _GetThingShadowCommand = class _GetThingShadowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
829
826
|
...commonParams
|
|
830
827
|
}).m(function(Command, cs, config, o) {
|
|
@@ -841,7 +838,6 @@ var GetThingShadowCommand = _GetThingShadowCommand;
|
|
|
841
838
|
|
|
842
839
|
|
|
843
840
|
|
|
844
|
-
|
|
845
841
|
var _ListNamedShadowsForThingCommand = class _ListNamedShadowsForThingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
846
842
|
...commonParams
|
|
847
843
|
}).m(function(Command, cs, config, o) {
|
|
@@ -858,7 +854,6 @@ var ListNamedShadowsForThingCommand = _ListNamedShadowsForThingCommand;
|
|
|
858
854
|
|
|
859
855
|
|
|
860
856
|
|
|
861
|
-
|
|
862
857
|
var _ListRetainedMessagesCommand = class _ListRetainedMessagesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
863
858
|
...commonParams
|
|
864
859
|
}).m(function(Command, cs, config, o) {
|
|
@@ -875,7 +870,6 @@ var ListRetainedMessagesCommand = _ListRetainedMessagesCommand;
|
|
|
875
870
|
|
|
876
871
|
|
|
877
872
|
|
|
878
|
-
|
|
879
873
|
var _PublishCommand = class _PublishCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
880
874
|
...commonParams
|
|
881
875
|
}).m(function(Command, cs, config, o) {
|
|
@@ -892,7 +886,6 @@ var PublishCommand = _PublishCommand;
|
|
|
892
886
|
|
|
893
887
|
|
|
894
888
|
|
|
895
|
-
|
|
896
889
|
var _UpdateThingShadowCommand = class _UpdateThingShadowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
897
890
|
...commonParams
|
|
898
891
|
}).m(function(Command, cs, config, o) {
|
package/dist-types/index.d.ts
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
export * from "./IoTDataPlaneClient";
|
|
17
17
|
export * from "./IoTDataPlane";
|
|
18
18
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
19
|
-
export { RuntimeExtension } from "./runtimeExtensions";
|
|
20
|
-
export { IoTDataPlaneExtensionConfiguration } from "./extensionConfiguration";
|
|
19
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
20
|
+
export type { IoTDataPlaneExtensionConfiguration } from "./extensionConfiguration";
|
|
21
21
|
export * from "./commands";
|
|
22
22
|
export * from "./pagination";
|
|
23
23
|
export * from "./models";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
-
export {
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
6
|
*
|
|
@@ -10,7 +10,8 @@ import {
|
|
|
10
10
|
DeleteThingShadowRequest,
|
|
11
11
|
DeleteThingShadowResponse,
|
|
12
12
|
} from "../models/models_0";
|
|
13
|
-
export { __MetadataBearer
|
|
13
|
+
export { __MetadataBearer };
|
|
14
|
+
export { $Command };
|
|
14
15
|
export interface DeleteThingShadowCommandInput
|
|
15
16
|
extends DeleteThingShadowRequest {}
|
|
16
17
|
export type DeleteThingShadowCommandOutputType = Pick<
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetRetainedMessageRequest,
|
|
10
10
|
GetRetainedMessageResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetRetainedMessageCommandInput
|
|
14
15
|
extends GetRetainedMessageRequest {}
|
|
15
16
|
export interface GetRetainedMessageCommandOutput
|
|
@@ -10,7 +10,8 @@ import {
|
|
|
10
10
|
GetThingShadowRequest,
|
|
11
11
|
GetThingShadowResponse,
|
|
12
12
|
} from "../models/models_0";
|
|
13
|
-
export { __MetadataBearer
|
|
13
|
+
export { __MetadataBearer };
|
|
14
|
+
export { $Command };
|
|
14
15
|
export interface GetThingShadowCommandInput extends GetThingShadowRequest {}
|
|
15
16
|
export type GetThingShadowCommandOutputType = Pick<
|
|
16
17
|
GetThingShadowResponse,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListNamedShadowsForThingRequest,
|
|
10
10
|
ListNamedShadowsForThingResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListNamedShadowsForThingCommandInput
|
|
14
15
|
extends ListNamedShadowsForThingRequest {}
|
|
15
16
|
export interface ListNamedShadowsForThingCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListRetainedMessagesRequest,
|
|
10
10
|
ListRetainedMessagesResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListRetainedMessagesCommandInput
|
|
14
15
|
extends ListRetainedMessagesRequest {}
|
|
15
16
|
export interface ListRetainedMessagesCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ServiceOutputTypes,
|
|
10
10
|
} from "../IoTDataPlaneClient";
|
|
11
11
|
import { PublishRequest } from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export type PublishCommandInputType = Pick<
|
|
14
15
|
PublishRequest,
|
|
15
16
|
Exclude<keyof PublishRequest, "payload">
|
|
@@ -13,7 +13,8 @@ import {
|
|
|
13
13
|
UpdateThingShadowRequest,
|
|
14
14
|
UpdateThingShadowResponse,
|
|
15
15
|
} from "../models/models_0";
|
|
16
|
-
export { __MetadataBearer
|
|
16
|
+
export { __MetadataBearer };
|
|
17
|
+
export { $Command };
|
|
17
18
|
export type UpdateThingShadowCommandInputType = Pick<
|
|
18
19
|
UpdateThingShadowRequest,
|
|
19
20
|
Exclude<keyof UpdateThingShadowRequest, "payload">
|
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@smithy/smithy-client";
|
|
5
|
-
export {
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
6
7
|
export declare class IoTDataPlaneServiceException extends __ServiceException {
|
|
7
8
|
constructor(options: __ServiceExceptionOptions);
|
|
8
9
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-data-plane",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Data Plane Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.596.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iot-data-plane",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.596.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.596.0",
|
|
25
|
+
"@aws-sdk/core": "3.592.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.596.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.1",
|
|
37
|
-
"@smithy/core": "^2.
|
|
37
|
+
"@smithy/core": "^2.2.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|