@aws-sdk/client-iotthingsgraph 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IoTThingsGraphServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +95 -3
- package/dist-cjs/protocols/Aws_json1_1.js +319 -1211
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTThingsGraphServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_json1_1.js +736 -1338
- package/dist-types/IoTThingsGraphClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTThingsGraphServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -29
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/IoTThingsGraphClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTThingsGraphServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -29
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
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, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput } from "./commands/AssociateEntityToThingCommand";
|
|
10
10
|
import { CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput } from "./commands/CreateFlowTemplateCommand";
|
|
11
11
|
import { CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput } from "./commands/CreateSystemInstanceCommand";
|
|
@@ -63,7 +63,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
63
63
|
* A function that can calculate the length of a request body.
|
|
64
64
|
* @internal
|
|
65
65
|
*/
|
|
66
|
-
bodyLengthChecker?:
|
|
66
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
67
67
|
/**
|
|
68
68
|
* A function that converts a stream into an array of bytes.
|
|
69
69
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from IoTThingsGraph service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class IoTThingsGraphServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException";
|
|
2
3
|
export interface AssociateEntityToThingRequest {
|
|
3
4
|
/**
|
|
4
5
|
* <p>The name of the thing to which the entity is to be associated.</p>
|
|
@@ -34,34 +35,46 @@ export declare namespace AssociateEntityToThingResponse {
|
|
|
34
35
|
/**
|
|
35
36
|
* <p></p>
|
|
36
37
|
*/
|
|
37
|
-
export
|
|
38
|
-
name: "InternalFailureException";
|
|
39
|
-
$fault: "server";
|
|
40
|
-
|
|
38
|
+
export declare class InternalFailureException extends __BaseException {
|
|
39
|
+
readonly name: "InternalFailureException";
|
|
40
|
+
readonly $fault: "server";
|
|
41
|
+
/**
|
|
42
|
+
* @internal
|
|
43
|
+
*/
|
|
44
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
41
45
|
}
|
|
42
46
|
/**
|
|
43
47
|
* <p></p>
|
|
44
48
|
*/
|
|
45
|
-
export
|
|
46
|
-
name: "InvalidRequestException";
|
|
47
|
-
$fault: "client";
|
|
48
|
-
|
|
49
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
50
|
+
readonly name: "InvalidRequestException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
49
56
|
}
|
|
50
57
|
/**
|
|
51
58
|
* <p></p>
|
|
52
59
|
*/
|
|
53
|
-
export
|
|
54
|
-
name: "ResourceNotFoundException";
|
|
55
|
-
$fault: "client";
|
|
56
|
-
|
|
60
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
61
|
+
readonly name: "ResourceNotFoundException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
57
67
|
}
|
|
58
68
|
/**
|
|
59
69
|
* <p></p>
|
|
60
70
|
*/
|
|
61
|
-
export
|
|
62
|
-
name: "ThrottlingException";
|
|
63
|
-
$fault: "client";
|
|
64
|
-
|
|
71
|
+
export declare class ThrottlingException extends __BaseException {
|
|
72
|
+
readonly name: "ThrottlingException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
65
78
|
}
|
|
66
79
|
export declare enum DefinitionLanguage {
|
|
67
80
|
GRAPHQL = "GRAPHQL"
|
|
@@ -144,18 +157,24 @@ export declare namespace CreateFlowTemplateResponse {
|
|
|
144
157
|
/**
|
|
145
158
|
* <p></p>
|
|
146
159
|
*/
|
|
147
|
-
export
|
|
148
|
-
name: "LimitExceededException";
|
|
149
|
-
$fault: "client";
|
|
150
|
-
|
|
160
|
+
export declare class LimitExceededException extends __BaseException {
|
|
161
|
+
readonly name: "LimitExceededException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
/**
|
|
164
|
+
* @internal
|
|
165
|
+
*/
|
|
166
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
151
167
|
}
|
|
152
168
|
/**
|
|
153
169
|
* <p></p>
|
|
154
170
|
*/
|
|
155
|
-
export
|
|
156
|
-
name: "ResourceAlreadyExistsException";
|
|
157
|
-
$fault: "client";
|
|
158
|
-
|
|
171
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
172
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
173
|
+
readonly $fault: "client";
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
*/
|
|
177
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
159
178
|
}
|
|
160
179
|
/**
|
|
161
180
|
* <p>An object that specifies whether cloud metrics are collected in a deployment and, if so, what role is used to collect metrics.</p>
|
|
@@ -393,10 +412,13 @@ export declare namespace DeleteFlowTemplateResponse {
|
|
|
393
412
|
/**
|
|
394
413
|
* <p></p>
|
|
395
414
|
*/
|
|
396
|
-
export
|
|
397
|
-
name: "ResourceInUseException";
|
|
398
|
-
$fault: "client";
|
|
399
|
-
|
|
415
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
416
|
+
readonly name: "ResourceInUseException";
|
|
417
|
+
readonly $fault: "client";
|
|
418
|
+
/**
|
|
419
|
+
* @internal
|
|
420
|
+
*/
|
|
421
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
400
422
|
}
|
|
401
423
|
export interface DeleteNamespaceRequest {
|
|
402
424
|
}
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTThingsGraphClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTThingsGraphClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTThingsGraphClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
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, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput } from "./commands/AssociateEntityToThingCommand";
|
|
10
10
|
import { CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput } from "./commands/CreateFlowTemplateCommand";
|
|
11
11
|
import { CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput } from "./commands/CreateSystemInstanceCommand";
|
|
@@ -51,7 +51,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
51
51
|
|
|
52
52
|
urlParser?: __UrlParser;
|
|
53
53
|
|
|
54
|
-
bodyLengthChecker?:
|
|
54
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
55
55
|
|
|
56
56
|
streamCollector?: __StreamCollector;
|
|
57
57
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class IoTThingsGraphServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException";
|
|
2
3
|
export interface AssociateEntityToThingRequest {
|
|
3
4
|
|
|
4
5
|
thingName: string | undefined;
|
|
@@ -18,28 +19,32 @@ export declare namespace AssociateEntityToThingResponse {
|
|
|
18
19
|
const filterSensitiveLog: (obj: AssociateEntityToThingResponse) => any;
|
|
19
20
|
}
|
|
20
21
|
|
|
21
|
-
export
|
|
22
|
-
name: "InternalFailureException";
|
|
23
|
-
$fault: "server";
|
|
24
|
-
|
|
22
|
+
export declare class InternalFailureException extends __BaseException {
|
|
23
|
+
readonly name: "InternalFailureException";
|
|
24
|
+
readonly $fault: "server";
|
|
25
|
+
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
25
27
|
}
|
|
26
28
|
|
|
27
|
-
export
|
|
28
|
-
name: "InvalidRequestException";
|
|
29
|
-
$fault: "client";
|
|
30
|
-
|
|
29
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
30
|
+
readonly name: "InvalidRequestException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
|
|
33
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
31
34
|
}
|
|
32
35
|
|
|
33
|
-
export
|
|
34
|
-
name: "ResourceNotFoundException";
|
|
35
|
-
$fault: "client";
|
|
36
|
-
|
|
36
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
37
|
+
readonly name: "ResourceNotFoundException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
37
41
|
}
|
|
38
42
|
|
|
39
|
-
export
|
|
40
|
-
name: "ThrottlingException";
|
|
41
|
-
$fault: "client";
|
|
42
|
-
|
|
43
|
+
export declare class ThrottlingException extends __BaseException {
|
|
44
|
+
readonly name: "ThrottlingException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
|
|
47
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
43
48
|
}
|
|
44
49
|
export declare enum DefinitionLanguage {
|
|
45
50
|
GRAPHQL = "GRAPHQL"
|
|
@@ -89,16 +94,18 @@ export declare namespace CreateFlowTemplateResponse {
|
|
|
89
94
|
const filterSensitiveLog: (obj: CreateFlowTemplateResponse) => any;
|
|
90
95
|
}
|
|
91
96
|
|
|
92
|
-
export
|
|
93
|
-
name: "LimitExceededException";
|
|
94
|
-
$fault: "client";
|
|
95
|
-
|
|
97
|
+
export declare class LimitExceededException extends __BaseException {
|
|
98
|
+
readonly name: "LimitExceededException";
|
|
99
|
+
readonly $fault: "client";
|
|
100
|
+
|
|
101
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
96
102
|
}
|
|
97
103
|
|
|
98
|
-
export
|
|
99
|
-
name: "ResourceAlreadyExistsException";
|
|
100
|
-
$fault: "client";
|
|
101
|
-
|
|
104
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
105
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
106
|
+
readonly $fault: "client";
|
|
107
|
+
|
|
108
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
102
109
|
}
|
|
103
110
|
|
|
104
111
|
export interface MetricsConfiguration {
|
|
@@ -237,10 +244,11 @@ export declare namespace DeleteFlowTemplateResponse {
|
|
|
237
244
|
const filterSensitiveLog: (obj: DeleteFlowTemplateResponse) => any;
|
|
238
245
|
}
|
|
239
246
|
|
|
240
|
-
export
|
|
241
|
-
name: "ResourceInUseException";
|
|
242
|
-
$fault: "client";
|
|
243
|
-
|
|
247
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
248
|
+
readonly name: "ResourceInUseException";
|
|
249
|
+
readonly $fault: "client";
|
|
250
|
+
|
|
251
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
244
252
|
}
|
|
245
253
|
export interface DeleteNamespaceRequest {
|
|
246
254
|
}
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: IoTThingsGraphClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: IoTThingsGraphClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: IoTThingsGraphClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotthingsgraph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotthingsgraph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
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,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|