@aws-sdk/client-iot-wireless 3.975.0 → 3.980.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 +36 -23
- package/dist-es/IoTWireless.js +25 -1
- package/dist-types/IoTWireless.d.ts +78 -1
- package/dist-types/ts3.4/IoTWireless.d.ts +82 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -4724,6 +4724,28 @@ class UpdateWirelessGatewayCommand extends smithyClient.Command
|
|
|
4724
4724
|
.build() {
|
|
4725
4725
|
}
|
|
4726
4726
|
|
|
4727
|
+
const paginateListDestinations = core.createPaginator(IoTWirelessClient, ListDestinationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4728
|
+
|
|
4729
|
+
const paginateListDeviceProfiles = core.createPaginator(IoTWirelessClient, ListDeviceProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4730
|
+
|
|
4731
|
+
const paginateListFuotaTasks = core.createPaginator(IoTWirelessClient, ListFuotaTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
4732
|
+
|
|
4733
|
+
const paginateListMulticastGroupsByFuotaTask = core.createPaginator(IoTWirelessClient, ListMulticastGroupsByFuotaTaskCommand, "NextToken", "NextToken", "MaxResults");
|
|
4734
|
+
|
|
4735
|
+
const paginateListMulticastGroups = core.createPaginator(IoTWirelessClient, ListMulticastGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4736
|
+
|
|
4737
|
+
const paginateListNetworkAnalyzerConfigurations = core.createPaginator(IoTWirelessClient, ListNetworkAnalyzerConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4738
|
+
|
|
4739
|
+
const paginateListPositionConfigurations = core.createPaginator(IoTWirelessClient, ListPositionConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4740
|
+
|
|
4741
|
+
const paginateListQueuedMessages = core.createPaginator(IoTWirelessClient, ListQueuedMessagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4742
|
+
|
|
4743
|
+
const paginateListServiceProfiles = core.createPaginator(IoTWirelessClient, ListServiceProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4744
|
+
|
|
4745
|
+
const paginateListWirelessDevices = core.createPaginator(IoTWirelessClient, ListWirelessDevicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4746
|
+
|
|
4747
|
+
const paginateListWirelessGateways = core.createPaginator(IoTWirelessClient, ListWirelessGatewaysCommand, "NextToken", "NextToken", "MaxResults");
|
|
4748
|
+
|
|
4727
4749
|
const commands = {
|
|
4728
4750
|
AssociateAwsAccountWithPartnerAccountCommand,
|
|
4729
4751
|
AssociateMulticastGroupWithFuotaTaskCommand,
|
|
@@ -4838,31 +4860,22 @@ const commands = {
|
|
|
4838
4860
|
UpdateWirelessDeviceImportTaskCommand,
|
|
4839
4861
|
UpdateWirelessGatewayCommand,
|
|
4840
4862
|
};
|
|
4863
|
+
const paginators = {
|
|
4864
|
+
paginateListDestinations,
|
|
4865
|
+
paginateListDeviceProfiles,
|
|
4866
|
+
paginateListFuotaTasks,
|
|
4867
|
+
paginateListMulticastGroups,
|
|
4868
|
+
paginateListMulticastGroupsByFuotaTask,
|
|
4869
|
+
paginateListNetworkAnalyzerConfigurations,
|
|
4870
|
+
paginateListPositionConfigurations,
|
|
4871
|
+
paginateListQueuedMessages,
|
|
4872
|
+
paginateListServiceProfiles,
|
|
4873
|
+
paginateListWirelessDevices,
|
|
4874
|
+
paginateListWirelessGateways,
|
|
4875
|
+
};
|
|
4841
4876
|
class IoTWireless extends IoTWirelessClient {
|
|
4842
4877
|
}
|
|
4843
|
-
smithyClient.createAggregatedClient(commands, IoTWireless);
|
|
4844
|
-
|
|
4845
|
-
const paginateListDestinations = core.createPaginator(IoTWirelessClient, ListDestinationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4846
|
-
|
|
4847
|
-
const paginateListDeviceProfiles = core.createPaginator(IoTWirelessClient, ListDeviceProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4848
|
-
|
|
4849
|
-
const paginateListFuotaTasks = core.createPaginator(IoTWirelessClient, ListFuotaTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
4850
|
-
|
|
4851
|
-
const paginateListMulticastGroups = core.createPaginator(IoTWirelessClient, ListMulticastGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4852
|
-
|
|
4853
|
-
const paginateListMulticastGroupsByFuotaTask = core.createPaginator(IoTWirelessClient, ListMulticastGroupsByFuotaTaskCommand, "NextToken", "NextToken", "MaxResults");
|
|
4854
|
-
|
|
4855
|
-
const paginateListNetworkAnalyzerConfigurations = core.createPaginator(IoTWirelessClient, ListNetworkAnalyzerConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4856
|
-
|
|
4857
|
-
const paginateListPositionConfigurations = core.createPaginator(IoTWirelessClient, ListPositionConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4858
|
-
|
|
4859
|
-
const paginateListQueuedMessages = core.createPaginator(IoTWirelessClient, ListQueuedMessagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4860
|
-
|
|
4861
|
-
const paginateListServiceProfiles = core.createPaginator(IoTWirelessClient, ListServiceProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4862
|
-
|
|
4863
|
-
const paginateListWirelessDevices = core.createPaginator(IoTWirelessClient, ListWirelessDevicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4864
|
-
|
|
4865
|
-
const paginateListWirelessGateways = core.createPaginator(IoTWirelessClient, ListWirelessGatewaysCommand, "NextToken", "NextToken", "MaxResults");
|
|
4878
|
+
smithyClient.createAggregatedClient(commands, IoTWireless, { paginators });
|
|
4866
4879
|
|
|
4867
4880
|
const AggregationPeriod = {
|
|
4868
4881
|
OneDay: "OneDay",
|
package/dist-es/IoTWireless.js
CHANGED
|
@@ -112,6 +112,17 @@ import { UpdateWirelessDeviceCommand, } from "./commands/UpdateWirelessDeviceCom
|
|
|
112
112
|
import { UpdateWirelessDeviceImportTaskCommand, } from "./commands/UpdateWirelessDeviceImportTaskCommand";
|
|
113
113
|
import { UpdateWirelessGatewayCommand, } from "./commands/UpdateWirelessGatewayCommand";
|
|
114
114
|
import { IoTWirelessClient } from "./IoTWirelessClient";
|
|
115
|
+
import { paginateListDestinations } from "./pagination/ListDestinationsPaginator";
|
|
116
|
+
import { paginateListDeviceProfiles } from "./pagination/ListDeviceProfilesPaginator";
|
|
117
|
+
import { paginateListFuotaTasks } from "./pagination/ListFuotaTasksPaginator";
|
|
118
|
+
import { paginateListMulticastGroupsByFuotaTask } from "./pagination/ListMulticastGroupsByFuotaTaskPaginator";
|
|
119
|
+
import { paginateListMulticastGroups } from "./pagination/ListMulticastGroupsPaginator";
|
|
120
|
+
import { paginateListNetworkAnalyzerConfigurations } from "./pagination/ListNetworkAnalyzerConfigurationsPaginator";
|
|
121
|
+
import { paginateListPositionConfigurations } from "./pagination/ListPositionConfigurationsPaginator";
|
|
122
|
+
import { paginateListQueuedMessages } from "./pagination/ListQueuedMessagesPaginator";
|
|
123
|
+
import { paginateListServiceProfiles } from "./pagination/ListServiceProfilesPaginator";
|
|
124
|
+
import { paginateListWirelessDevices } from "./pagination/ListWirelessDevicesPaginator";
|
|
125
|
+
import { paginateListWirelessGateways } from "./pagination/ListWirelessGatewaysPaginator";
|
|
115
126
|
const commands = {
|
|
116
127
|
AssociateAwsAccountWithPartnerAccountCommand,
|
|
117
128
|
AssociateMulticastGroupWithFuotaTaskCommand,
|
|
@@ -226,6 +237,19 @@ const commands = {
|
|
|
226
237
|
UpdateWirelessDeviceImportTaskCommand,
|
|
227
238
|
UpdateWirelessGatewayCommand,
|
|
228
239
|
};
|
|
240
|
+
const paginators = {
|
|
241
|
+
paginateListDestinations,
|
|
242
|
+
paginateListDeviceProfiles,
|
|
243
|
+
paginateListFuotaTasks,
|
|
244
|
+
paginateListMulticastGroups,
|
|
245
|
+
paginateListMulticastGroupsByFuotaTask,
|
|
246
|
+
paginateListNetworkAnalyzerConfigurations,
|
|
247
|
+
paginateListPositionConfigurations,
|
|
248
|
+
paginateListQueuedMessages,
|
|
249
|
+
paginateListServiceProfiles,
|
|
250
|
+
paginateListWirelessDevices,
|
|
251
|
+
paginateListWirelessGateways,
|
|
252
|
+
};
|
|
229
253
|
export class IoTWireless extends IoTWirelessClient {
|
|
230
254
|
}
|
|
231
|
-
createAggregatedClient(commands, IoTWireless);
|
|
255
|
+
createAggregatedClient(commands, IoTWireless, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "./commands/AssociateAwsAccountWithPartnerAccountCommand";
|
|
3
3
|
import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "./commands/AssociateMulticastGroupWithFuotaTaskCommand";
|
|
4
4
|
import { AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput } from "./commands/AssociateWirelessDeviceWithFuotaTaskCommand";
|
|
@@ -809,6 +809,83 @@ export interface IoTWireless {
|
|
|
809
809
|
updateWirelessGateway(args: UpdateWirelessGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWirelessGatewayCommandOutput>;
|
|
810
810
|
updateWirelessGateway(args: UpdateWirelessGatewayCommandInput, cb: (err: any, data?: UpdateWirelessGatewayCommandOutput) => void): void;
|
|
811
811
|
updateWirelessGateway(args: UpdateWirelessGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWirelessGatewayCommandOutput) => void): void;
|
|
812
|
+
/**
|
|
813
|
+
* @see {@link ListDestinationsCommand}
|
|
814
|
+
* @param args - command input.
|
|
815
|
+
* @param paginationConfig - optional pagination config.
|
|
816
|
+
* @returns AsyncIterable of {@link ListDestinationsCommandOutput}.
|
|
817
|
+
*/
|
|
818
|
+
paginateListDestinations(args?: ListDestinationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDestinationsCommandOutput>;
|
|
819
|
+
/**
|
|
820
|
+
* @see {@link ListDeviceProfilesCommand}
|
|
821
|
+
* @param args - command input.
|
|
822
|
+
* @param paginationConfig - optional pagination config.
|
|
823
|
+
* @returns AsyncIterable of {@link ListDeviceProfilesCommandOutput}.
|
|
824
|
+
*/
|
|
825
|
+
paginateListDeviceProfiles(args?: ListDeviceProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDeviceProfilesCommandOutput>;
|
|
826
|
+
/**
|
|
827
|
+
* @see {@link ListFuotaTasksCommand}
|
|
828
|
+
* @param args - command input.
|
|
829
|
+
* @param paginationConfig - optional pagination config.
|
|
830
|
+
* @returns AsyncIterable of {@link ListFuotaTasksCommandOutput}.
|
|
831
|
+
*/
|
|
832
|
+
paginateListFuotaTasks(args?: ListFuotaTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFuotaTasksCommandOutput>;
|
|
833
|
+
/**
|
|
834
|
+
* @see {@link ListMulticastGroupsCommand}
|
|
835
|
+
* @param args - command input.
|
|
836
|
+
* @param paginationConfig - optional pagination config.
|
|
837
|
+
* @returns AsyncIterable of {@link ListMulticastGroupsCommandOutput}.
|
|
838
|
+
*/
|
|
839
|
+
paginateListMulticastGroups(args?: ListMulticastGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMulticastGroupsCommandOutput>;
|
|
840
|
+
/**
|
|
841
|
+
* @see {@link ListMulticastGroupsByFuotaTaskCommand}
|
|
842
|
+
* @param args - command input.
|
|
843
|
+
* @param paginationConfig - optional pagination config.
|
|
844
|
+
* @returns AsyncIterable of {@link ListMulticastGroupsByFuotaTaskCommandOutput}.
|
|
845
|
+
*/
|
|
846
|
+
paginateListMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMulticastGroupsByFuotaTaskCommandOutput>;
|
|
847
|
+
/**
|
|
848
|
+
* @see {@link ListNetworkAnalyzerConfigurationsCommand}
|
|
849
|
+
* @param args - command input.
|
|
850
|
+
* @param paginationConfig - optional pagination config.
|
|
851
|
+
* @returns AsyncIterable of {@link ListNetworkAnalyzerConfigurationsCommandOutput}.
|
|
852
|
+
*/
|
|
853
|
+
paginateListNetworkAnalyzerConfigurations(args?: ListNetworkAnalyzerConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNetworkAnalyzerConfigurationsCommandOutput>;
|
|
854
|
+
/**
|
|
855
|
+
* @see {@link ListPositionConfigurationsCommand}
|
|
856
|
+
* @param args - command input.
|
|
857
|
+
* @param paginationConfig - optional pagination config.
|
|
858
|
+
* @returns AsyncIterable of {@link ListPositionConfigurationsCommandOutput}.
|
|
859
|
+
*/
|
|
860
|
+
paginateListPositionConfigurations(args?: ListPositionConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPositionConfigurationsCommandOutput>;
|
|
861
|
+
/**
|
|
862
|
+
* @see {@link ListQueuedMessagesCommand}
|
|
863
|
+
* @param args - command input.
|
|
864
|
+
* @param paginationConfig - optional pagination config.
|
|
865
|
+
* @returns AsyncIterable of {@link ListQueuedMessagesCommandOutput}.
|
|
866
|
+
*/
|
|
867
|
+
paginateListQueuedMessages(args: ListQueuedMessagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueuedMessagesCommandOutput>;
|
|
868
|
+
/**
|
|
869
|
+
* @see {@link ListServiceProfilesCommand}
|
|
870
|
+
* @param args - command input.
|
|
871
|
+
* @param paginationConfig - optional pagination config.
|
|
872
|
+
* @returns AsyncIterable of {@link ListServiceProfilesCommandOutput}.
|
|
873
|
+
*/
|
|
874
|
+
paginateListServiceProfiles(args?: ListServiceProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceProfilesCommandOutput>;
|
|
875
|
+
/**
|
|
876
|
+
* @see {@link ListWirelessDevicesCommand}
|
|
877
|
+
* @param args - command input.
|
|
878
|
+
* @param paginationConfig - optional pagination config.
|
|
879
|
+
* @returns AsyncIterable of {@link ListWirelessDevicesCommandOutput}.
|
|
880
|
+
*/
|
|
881
|
+
paginateListWirelessDevices(args?: ListWirelessDevicesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWirelessDevicesCommandOutput>;
|
|
882
|
+
/**
|
|
883
|
+
* @see {@link ListWirelessGatewaysCommand}
|
|
884
|
+
* @param args - command input.
|
|
885
|
+
* @param paginationConfig - optional pagination config.
|
|
886
|
+
* @returns AsyncIterable of {@link ListWirelessGatewaysCommandOutput}.
|
|
887
|
+
*/
|
|
888
|
+
paginateListWirelessGateways(args?: ListWirelessGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWirelessGatewaysCommandOutput>;
|
|
812
889
|
}
|
|
813
890
|
/**
|
|
814
891
|
* <p>AWS IoT Wireless provides bi-directional communication between internet-connected
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateAwsAccountWithPartnerAccountCommandInput,
|
|
4
8
|
AssociateAwsAccountWithPartnerAccountCommandOutput,
|
|
@@ -2091,6 +2095,83 @@ export interface IoTWireless {
|
|
|
2091
2095
|
options: __HttpHandlerOptions,
|
|
2092
2096
|
cb: (err: any, data?: UpdateWirelessGatewayCommandOutput) => void
|
|
2093
2097
|
): void;
|
|
2098
|
+
paginateListDestinations(
|
|
2099
|
+
args?: ListDestinationsCommandInput,
|
|
2100
|
+
paginationConfig?: Pick<
|
|
2101
|
+
PaginationConfiguration,
|
|
2102
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2103
|
+
>
|
|
2104
|
+
): Paginator<ListDestinationsCommandOutput>;
|
|
2105
|
+
paginateListDeviceProfiles(
|
|
2106
|
+
args?: ListDeviceProfilesCommandInput,
|
|
2107
|
+
paginationConfig?: Pick<
|
|
2108
|
+
PaginationConfiguration,
|
|
2109
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2110
|
+
>
|
|
2111
|
+
): Paginator<ListDeviceProfilesCommandOutput>;
|
|
2112
|
+
paginateListFuotaTasks(
|
|
2113
|
+
args?: ListFuotaTasksCommandInput,
|
|
2114
|
+
paginationConfig?: Pick<
|
|
2115
|
+
PaginationConfiguration,
|
|
2116
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2117
|
+
>
|
|
2118
|
+
): Paginator<ListFuotaTasksCommandOutput>;
|
|
2119
|
+
paginateListMulticastGroups(
|
|
2120
|
+
args?: ListMulticastGroupsCommandInput,
|
|
2121
|
+
paginationConfig?: Pick<
|
|
2122
|
+
PaginationConfiguration,
|
|
2123
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2124
|
+
>
|
|
2125
|
+
): Paginator<ListMulticastGroupsCommandOutput>;
|
|
2126
|
+
paginateListMulticastGroupsByFuotaTask(
|
|
2127
|
+
args: ListMulticastGroupsByFuotaTaskCommandInput,
|
|
2128
|
+
paginationConfig?: Pick<
|
|
2129
|
+
PaginationConfiguration,
|
|
2130
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2131
|
+
>
|
|
2132
|
+
): Paginator<ListMulticastGroupsByFuotaTaskCommandOutput>;
|
|
2133
|
+
paginateListNetworkAnalyzerConfigurations(
|
|
2134
|
+
args?: ListNetworkAnalyzerConfigurationsCommandInput,
|
|
2135
|
+
paginationConfig?: Pick<
|
|
2136
|
+
PaginationConfiguration,
|
|
2137
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2138
|
+
>
|
|
2139
|
+
): Paginator<ListNetworkAnalyzerConfigurationsCommandOutput>;
|
|
2140
|
+
paginateListPositionConfigurations(
|
|
2141
|
+
args?: ListPositionConfigurationsCommandInput,
|
|
2142
|
+
paginationConfig?: Pick<
|
|
2143
|
+
PaginationConfiguration,
|
|
2144
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2145
|
+
>
|
|
2146
|
+
): Paginator<ListPositionConfigurationsCommandOutput>;
|
|
2147
|
+
paginateListQueuedMessages(
|
|
2148
|
+
args: ListQueuedMessagesCommandInput,
|
|
2149
|
+
paginationConfig?: Pick<
|
|
2150
|
+
PaginationConfiguration,
|
|
2151
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2152
|
+
>
|
|
2153
|
+
): Paginator<ListQueuedMessagesCommandOutput>;
|
|
2154
|
+
paginateListServiceProfiles(
|
|
2155
|
+
args?: ListServiceProfilesCommandInput,
|
|
2156
|
+
paginationConfig?: Pick<
|
|
2157
|
+
PaginationConfiguration,
|
|
2158
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2159
|
+
>
|
|
2160
|
+
): Paginator<ListServiceProfilesCommandOutput>;
|
|
2161
|
+
paginateListWirelessDevices(
|
|
2162
|
+
args?: ListWirelessDevicesCommandInput,
|
|
2163
|
+
paginationConfig?: Pick<
|
|
2164
|
+
PaginationConfiguration,
|
|
2165
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2166
|
+
>
|
|
2167
|
+
): Paginator<ListWirelessDevicesCommandOutput>;
|
|
2168
|
+
paginateListWirelessGateways(
|
|
2169
|
+
args?: ListWirelessGatewaysCommandInput,
|
|
2170
|
+
paginationConfig?: Pick<
|
|
2171
|
+
PaginationConfiguration,
|
|
2172
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2173
|
+
>
|
|
2174
|
+
): Paginator<ListWirelessGatewaysCommandOutput>;
|
|
2094
2175
|
}
|
|
2095
2176
|
export declare class IoTWireless
|
|
2096
2177
|
extends IoTWirelessClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-wireless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iot-wireless",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|