@aws-sdk/client-iot 3.662.0 → 3.664.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 +44 -18
- package/dist-cjs/runtimeConfig.js +1 -0
- package/dist-es/models/models_0.js +13 -12
- package/dist-es/models/models_1.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +11 -2
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/commands/AssociateSbomWithPackageVersionCommand.d.ts +1 -1
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +3 -1
- package/dist-types/commands/CreateDomainConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/CreateRoleAliasCommand.d.ts +8 -0
- package/dist-types/commands/CreateThingTypeCommand.d.ts +4 -1
- package/dist-types/commands/DeleteBillingGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/DisassociateSbomFromPackageVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListManagedJobTemplatesCommand.d.ts +2 -1
- package/dist-types/commands/ListMetricValuesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDomainConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/UpdateRoleAliasCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +119 -42
- package/dist-types/models/models_1.d.ts +110 -78
- package/dist-types/models/models_2.d.ts +153 -4
- package/dist-types/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/runtimeConfig.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteBillingGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListManagedJobTemplatesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListMetricValuesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +23 -12
- package/dist-types/ts3.4/models/models_1.d.ts +18 -20
- package/dist-types/ts3.4/models/models_2.d.ts +26 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
- package/package.json +14 -14
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
-
defaultUserAgentProvider: import("@
|
|
23
|
+
defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
24
24
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
25
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -28,6 +28,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
28
28
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
29
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
30
30
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
31
32
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
32
33
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
33
34
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../IoTClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListManagedJobTemplatesResponse,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { ListManagedJobTemplatesRequest } from "../models/models_1";
|
|
9
|
+
import { ListManagedJobTemplatesResponse } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListManagedJobTemplatesCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../IoTClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListMetricValuesRequest,
|
|
10
|
+
ListMetricValuesResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListMetricValuesCommandInput extends ListMetricValuesRequest {}
|
|
@@ -516,6 +516,14 @@ export interface Policy {
|
|
|
516
516
|
export interface Allowed {
|
|
517
517
|
policies?: Policy[];
|
|
518
518
|
}
|
|
519
|
+
export declare const ApplicationProtocol: {
|
|
520
|
+
readonly DEFAULT: "DEFAULT";
|
|
521
|
+
readonly HTTPS: "HTTPS";
|
|
522
|
+
readonly MQTT_WSS: "MQTT_WSS";
|
|
523
|
+
readonly SECURE_MQTT: "SECURE_MQTT";
|
|
524
|
+
};
|
|
525
|
+
export type ApplicationProtocol =
|
|
526
|
+
(typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
|
|
519
527
|
export interface S3Location {
|
|
520
528
|
bucket?: string;
|
|
521
529
|
key?: string;
|
|
@@ -798,6 +806,15 @@ export declare const AuthDecision: {
|
|
|
798
806
|
readonly IMPLICIT_DENY: "IMPLICIT_DENY";
|
|
799
807
|
};
|
|
800
808
|
export type AuthDecision = (typeof AuthDecision)[keyof typeof AuthDecision];
|
|
809
|
+
export declare const AuthenticationType: {
|
|
810
|
+
readonly AWS_SIGV4: "AWS_SIGV4";
|
|
811
|
+
readonly AWS_X509: "AWS_X509";
|
|
812
|
+
readonly CUSTOM_AUTH: "CUSTOM_AUTH";
|
|
813
|
+
readonly CUSTOM_AUTH_X509: "CUSTOM_AUTH_X509";
|
|
814
|
+
readonly DEFAULT: "DEFAULT";
|
|
815
|
+
};
|
|
816
|
+
export type AuthenticationType =
|
|
817
|
+
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
801
818
|
export interface AuthInfo {
|
|
802
819
|
actionType?: ActionType;
|
|
803
820
|
resources: string[] | undefined;
|
|
@@ -1030,6 +1047,9 @@ export declare class CertificateValidationException extends __BaseException {
|
|
|
1030
1047
|
opts: __ExceptionOptionType<CertificateValidationException, __BaseException>
|
|
1031
1048
|
);
|
|
1032
1049
|
}
|
|
1050
|
+
export interface ClientCertificateConfig {
|
|
1051
|
+
clientCertificateCallbackArn?: string;
|
|
1052
|
+
}
|
|
1033
1053
|
export interface ServerCertificateConfig {
|
|
1034
1054
|
enableOCSPCheck?: boolean;
|
|
1035
1055
|
}
|
|
@@ -1052,6 +1072,9 @@ export interface CreateDomainConfigurationRequest {
|
|
|
1052
1072
|
tags?: Tag[];
|
|
1053
1073
|
tlsConfig?: TlsConfig;
|
|
1054
1074
|
serverCertificateConfig?: ServerCertificateConfig;
|
|
1075
|
+
authenticationType?: AuthenticationType;
|
|
1076
|
+
applicationProtocol?: ApplicationProtocol;
|
|
1077
|
+
clientCertificateConfig?: ClientCertificateConfig;
|
|
1055
1078
|
}
|
|
1056
1079
|
export interface CreateDomainConfigurationResponse {
|
|
1057
1080
|
domainConfigurationName?: string;
|
|
@@ -1750,18 +1773,6 @@ export declare class DeleteConflictException extends __BaseException {
|
|
|
1750
1773
|
opts: __ExceptionOptionType<DeleteConflictException, __BaseException>
|
|
1751
1774
|
);
|
|
1752
1775
|
}
|
|
1753
|
-
export interface DeleteBillingGroupRequest {
|
|
1754
|
-
billingGroupName: string | undefined;
|
|
1755
|
-
expectedVersion?: number;
|
|
1756
|
-
}
|
|
1757
|
-
export interface DeleteBillingGroupResponse {}
|
|
1758
|
-
export declare class CertificateStateException extends __BaseException {
|
|
1759
|
-
readonly name: "CertificateStateException";
|
|
1760
|
-
readonly $fault: "client";
|
|
1761
|
-
constructor(
|
|
1762
|
-
opts: __ExceptionOptionType<CertificateStateException, __BaseException>
|
|
1763
|
-
);
|
|
1764
|
-
}
|
|
1765
1776
|
export declare const KeyPairFilterSensitiveLog: (obj: KeyPair) => any;
|
|
1766
1777
|
export declare const CreateKeysAndCertificateResponseFilterSensitiveLog: (
|
|
1767
1778
|
obj: CreateKeysAndCertificateResponse
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
AggregationType,
|
|
8
8
|
AlertTarget,
|
|
9
9
|
AlertTargetType,
|
|
10
|
+
ApplicationProtocol,
|
|
10
11
|
AuditCheckConfiguration,
|
|
11
12
|
AuditCheckDetails,
|
|
12
13
|
AuditFinding,
|
|
@@ -22,6 +23,7 @@ import {
|
|
|
22
23
|
AuditTaskMetadata,
|
|
23
24
|
AuditTaskStatus,
|
|
24
25
|
AuditTaskType,
|
|
26
|
+
AuthenticationType,
|
|
25
27
|
AuthorizerConfig,
|
|
26
28
|
AuthorizerDescription,
|
|
27
29
|
AuthorizerStatus,
|
|
@@ -32,10 +34,10 @@ import {
|
|
|
32
34
|
Behavior,
|
|
33
35
|
BillingGroupProperties,
|
|
34
36
|
CertificateProviderOperation,
|
|
37
|
+
ClientCertificateConfig,
|
|
35
38
|
CustomMetricType,
|
|
36
39
|
DayOfWeek,
|
|
37
40
|
DimensionType,
|
|
38
|
-
DimensionValueOperator,
|
|
39
41
|
FleetMetricUnit,
|
|
40
42
|
JobExecutionsRetryConfig,
|
|
41
43
|
JobExecutionsRolloutConfig,
|
|
@@ -43,7 +45,6 @@ import {
|
|
|
43
45
|
MaintenanceWindow,
|
|
44
46
|
MetricsExportConfig,
|
|
45
47
|
MetricToRetain,
|
|
46
|
-
MetricValue,
|
|
47
48
|
MitigationActionParams,
|
|
48
49
|
OTAUpdateFile,
|
|
49
50
|
OTAUpdateStatus,
|
|
@@ -70,6 +71,18 @@ import {
|
|
|
70
71
|
TopicRuleDestination,
|
|
71
72
|
VerificationState,
|
|
72
73
|
} from "./models_0";
|
|
74
|
+
export interface DeleteBillingGroupRequest {
|
|
75
|
+
billingGroupName: string | undefined;
|
|
76
|
+
expectedVersion?: number;
|
|
77
|
+
}
|
|
78
|
+
export interface DeleteBillingGroupResponse {}
|
|
79
|
+
export declare class CertificateStateException extends __BaseException {
|
|
80
|
+
readonly name: "CertificateStateException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<CertificateStateException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
73
86
|
export interface DeleteCACertificateRequest {
|
|
74
87
|
certificateId: string | undefined;
|
|
75
88
|
}
|
|
@@ -491,6 +504,9 @@ export interface DescribeDomainConfigurationResponse {
|
|
|
491
504
|
lastStatusChangeDate?: Date;
|
|
492
505
|
tlsConfig?: TlsConfig;
|
|
493
506
|
serverCertificateConfig?: ServerCertificateConfig;
|
|
507
|
+
authenticationType?: AuthenticationType;
|
|
508
|
+
applicationProtocol?: ApplicationProtocol;
|
|
509
|
+
clientCertificateConfig?: ClientCertificateConfig;
|
|
494
510
|
}
|
|
495
511
|
export interface DescribeEndpointRequest {
|
|
496
512
|
endpointType?: string;
|
|
@@ -1566,24 +1582,6 @@ export interface ManagedJobTemplateSummary {
|
|
|
1566
1582
|
environments?: string[];
|
|
1567
1583
|
templateVersion?: string;
|
|
1568
1584
|
}
|
|
1569
|
-
export interface ListManagedJobTemplatesResponse {
|
|
1570
|
-
managedJobTemplates?: ManagedJobTemplateSummary[];
|
|
1571
|
-
nextToken?: string;
|
|
1572
|
-
}
|
|
1573
|
-
export interface ListMetricValuesRequest {
|
|
1574
|
-
thingName: string | undefined;
|
|
1575
|
-
metricName: string | undefined;
|
|
1576
|
-
dimensionName?: string;
|
|
1577
|
-
dimensionValueOperator?: DimensionValueOperator;
|
|
1578
|
-
startTime: Date | undefined;
|
|
1579
|
-
endTime: Date | undefined;
|
|
1580
|
-
maxResults?: number;
|
|
1581
|
-
nextToken?: string;
|
|
1582
|
-
}
|
|
1583
|
-
export interface MetricDatum {
|
|
1584
|
-
timestamp?: Date;
|
|
1585
|
-
value?: MetricValue;
|
|
1586
|
-
}
|
|
1587
1585
|
export declare const GetPackageResponseFilterSensitiveLog: (
|
|
1588
1586
|
obj: GetPackageResponse
|
|
1589
1587
|
) => any;
|
|
@@ -5,12 +5,14 @@ import {
|
|
|
5
5
|
AggregationType,
|
|
6
6
|
AlertTarget,
|
|
7
7
|
AlertTargetType,
|
|
8
|
+
ApplicationProtocol,
|
|
8
9
|
AttributePayload,
|
|
9
10
|
AuditCheckConfiguration,
|
|
10
11
|
AuditFrequency,
|
|
11
12
|
AuditMitigationActionsTaskTarget,
|
|
12
13
|
AuditNotificationTarget,
|
|
13
14
|
AuditNotificationType,
|
|
15
|
+
AuthenticationType,
|
|
14
16
|
AuthInfo,
|
|
15
17
|
AuthorizerConfig,
|
|
16
18
|
AuthorizerStatus,
|
|
@@ -19,9 +21,11 @@ import {
|
|
|
19
21
|
Behavior,
|
|
20
22
|
BillingGroupProperties,
|
|
21
23
|
CertificateProviderOperation,
|
|
24
|
+
ClientCertificateConfig,
|
|
22
25
|
CustomMetricType,
|
|
23
26
|
DayOfWeek,
|
|
24
27
|
DimensionType,
|
|
28
|
+
DimensionValueOperator,
|
|
25
29
|
FleetMetricUnit,
|
|
26
30
|
JobExecutionsRetryConfig,
|
|
27
31
|
JobExecutionsRolloutConfig,
|
|
@@ -62,7 +66,7 @@ import {
|
|
|
62
66
|
EventType,
|
|
63
67
|
GroupNameAndArn,
|
|
64
68
|
LogTargetType,
|
|
65
|
-
|
|
69
|
+
ManagedJobTemplateSummary,
|
|
66
70
|
MitigationActionType,
|
|
67
71
|
RegistrationConfig,
|
|
68
72
|
Status,
|
|
@@ -72,6 +76,24 @@ import {
|
|
|
72
76
|
VersionUpdateByJobsConfig,
|
|
73
77
|
ViolationEventOccurrenceRange,
|
|
74
78
|
} from "./models_1";
|
|
79
|
+
export interface ListManagedJobTemplatesResponse {
|
|
80
|
+
managedJobTemplates?: ManagedJobTemplateSummary[];
|
|
81
|
+
nextToken?: string;
|
|
82
|
+
}
|
|
83
|
+
export interface ListMetricValuesRequest {
|
|
84
|
+
thingName: string | undefined;
|
|
85
|
+
metricName: string | undefined;
|
|
86
|
+
dimensionName?: string;
|
|
87
|
+
dimensionValueOperator?: DimensionValueOperator;
|
|
88
|
+
startTime: Date | undefined;
|
|
89
|
+
endTime: Date | undefined;
|
|
90
|
+
maxResults?: number;
|
|
91
|
+
nextToken?: string;
|
|
92
|
+
}
|
|
93
|
+
export interface MetricDatum {
|
|
94
|
+
timestamp?: Date;
|
|
95
|
+
value?: MetricValue;
|
|
96
|
+
}
|
|
75
97
|
export interface ListMetricValuesResponse {
|
|
76
98
|
metricDatumList?: MetricDatum[];
|
|
77
99
|
nextToken?: string;
|
|
@@ -926,6 +948,9 @@ export interface UpdateDomainConfigurationRequest {
|
|
|
926
948
|
removeAuthorizerConfig?: boolean;
|
|
927
949
|
tlsConfig?: TlsConfig;
|
|
928
950
|
serverCertificateConfig?: ServerCertificateConfig;
|
|
951
|
+
authenticationType?: AuthenticationType;
|
|
952
|
+
applicationProtocol?: ApplicationProtocol;
|
|
953
|
+
clientCertificateConfig?: ClientCertificateConfig;
|
|
929
954
|
}
|
|
930
955
|
export interface UpdateDomainConfigurationResponse {
|
|
931
956
|
domainConfigurationName?: string;
|
|
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
-
defaultUserAgentProvider:
|
|
13
|
-
import("@
|
|
14
|
-
>;
|
|
12
|
+
defaultUserAgentProvider: (
|
|
13
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
14
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
17
17
|
requestHandler:
|
|
@@ -34,6 +34,10 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
36
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
userAgentAppId?:
|
|
38
|
+
| string
|
|
39
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
40
|
+
| undefined;
|
|
37
41
|
retryStrategy?:
|
|
38
42
|
| import("@smithy/types").RetryStrategy
|
|
39
43
|
| import("@smithy/types").RetryStrategyV2
|
|
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
13
13
|
) => import("@smithy/types").MemoizedProvider<
|
|
14
14
|
import("@smithy/types").AwsCredentialIdentity
|
|
15
15
|
>;
|
|
16
|
-
defaultUserAgentProvider:
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?:
|
|
18
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
| undefined
|
|
20
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
21
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
22
|
region: string | import("@smithy/types").Provider<string>;
|
|
21
23
|
requestHandler:
|
|
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
26
28
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
32
|
apiVersion: string;
|
|
30
33
|
cacheMiddleware?: boolean | undefined;
|
|
31
34
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
defaultUserAgentProvider:
|
|
26
|
-
import("@
|
|
27
|
-
>;
|
|
25
|
+
defaultUserAgentProvider: (
|
|
26
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
27
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
28
|
credentialDefaultProvider: (
|
|
29
29
|
input: any
|
|
30
30
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
|
|
|
38
38
|
import("@smithy/smithy-client").DefaultsMode
|
|
39
39
|
>;
|
|
40
40
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
userAgentAppId?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
44
|
+
| undefined;
|
|
41
45
|
retryStrategy?:
|
|
42
46
|
| import("@smithy/types").RetryStrategy
|
|
43
47
|
| import("@smithy/types").RetryStrategyV2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.664.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",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.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.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.664.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.664.0",
|
|
25
|
+
"@aws-sdk/core": "3.664.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.664.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.664.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.664.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.664.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.664.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.664.0",
|
|
32
|
+
"@aws-sdk/types": "3.664.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.664.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.664.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.664.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.7",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|