@aws-sdk/client-iot-wireless 3.428.0 → 3.430.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.
@@ -44,18 +44,18 @@ export interface SidewalkListDevice {
44
44
  SidewalkManufacturingSn?: string;
45
45
  DeviceCertificates?: CertificateList[];
46
46
  DeviceProfileId?: string;
47
- Status?: WirelessDeviceSidewalkStatus | string;
47
+ Status?: WirelessDeviceSidewalkStatus;
48
48
  }
49
49
  export interface WirelessDeviceStatistics {
50
50
  Arn?: string;
51
51
  Id?: string;
52
- Type?: WirelessDeviceType | string;
52
+ Type?: WirelessDeviceType;
53
53
  Name?: string;
54
54
  DestinationName?: string;
55
55
  LastUplinkReceivedAt?: string;
56
56
  LoRaWAN?: LoRaWANListDevice;
57
57
  Sidewalk?: SidewalkListDevice;
58
- FuotaDeviceStatus?: FuotaDeviceStatus | string;
58
+ FuotaDeviceStatus?: FuotaDeviceStatus;
59
59
  MulticastDeviceStatus?: string;
60
60
  McGroupId?: number;
61
61
  }
@@ -87,7 +87,7 @@ export type WirelessGatewayTaskDefinitionType =
87
87
  export interface ListWirelessGatewayTaskDefinitionsRequest {
88
88
  MaxResults?: number;
89
89
  NextToken?: string;
90
- TaskDefinitionType?: WirelessGatewayTaskDefinitionType | string;
90
+ TaskDefinitionType?: WirelessGatewayTaskDefinitionType;
91
91
  }
92
92
  export interface LoRaWANUpdateGatewayTaskEntry {
93
93
  CurrentVersion?: LoRaWANGatewayVersion;
@@ -103,15 +103,15 @@ export interface ListWirelessGatewayTaskDefinitionsResponse {
103
103
  TaskDefinitions?: UpdateWirelessGatewayTaskEntry[];
104
104
  }
105
105
  export interface SemtechGnssConfiguration {
106
- Status: PositionConfigurationStatus | string | undefined;
107
- Fec: PositionConfigurationFec | string | undefined;
106
+ Status: PositionConfigurationStatus | undefined;
107
+ Fec: PositionConfigurationFec | undefined;
108
108
  }
109
109
  export interface PositionSolverConfigurations {
110
110
  SemtechGnss?: SemtechGnssConfiguration;
111
111
  }
112
112
  export interface PutPositionConfigurationRequest {
113
113
  ResourceIdentifier: string | undefined;
114
- ResourceType: PositionResourceType | string | undefined;
114
+ ResourceType: PositionResourceType | undefined;
115
115
  Solvers?: PositionSolverConfigurations;
116
116
  Destination?: string;
117
117
  }
@@ -119,7 +119,7 @@ export interface PutPositionConfigurationResponse {}
119
119
  export interface PutResourceLogLevelRequest {
120
120
  ResourceIdentifier: string | undefined;
121
121
  ResourceType: string | undefined;
122
- LogLevel: LogLevel | string | undefined;
122
+ LogLevel: LogLevel | undefined;
123
123
  }
124
124
  export interface PutResourceLogLevelResponse {}
125
125
  export interface ResetAllResourceLogLevelsRequest {}
@@ -152,7 +152,7 @@ export declare const MessageType: {
152
152
  export type MessageType = (typeof MessageType)[keyof typeof MessageType];
153
153
  export interface SidewalkSendDataToDevice {
154
154
  Seq?: number;
155
- MessageType?: MessageType | string;
155
+ MessageType?: MessageType;
156
156
  AckModeRetryDurationSecs?: number;
157
157
  }
158
158
  export interface WirelessMetadata {
@@ -248,7 +248,7 @@ export interface UntagResourceRequest {
248
248
  export interface UntagResourceResponse {}
249
249
  export interface UpdateDestinationRequest {
250
250
  Name: string | undefined;
251
- ExpressionType?: ExpressionType | string;
251
+ ExpressionType?: ExpressionType;
252
252
  Expression?: string;
253
253
  Description?: string;
254
254
  RoleArn?: string;
@@ -275,7 +275,7 @@ export interface UpdateFuotaTaskRequest {
275
275
  }
276
276
  export interface UpdateFuotaTaskResponse {}
277
277
  export interface UpdateLogLevelsByResourceTypesRequest {
278
- DefaultLogLevel?: LogLevel | string;
278
+ DefaultLogLevel?: LogLevel;
279
279
  WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
280
280
  WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
281
281
  }
@@ -305,19 +305,19 @@ export interface SidewalkUpdateAccount {
305
305
  export interface UpdatePartnerAccountRequest {
306
306
  Sidewalk: SidewalkUpdateAccount | undefined;
307
307
  PartnerAccountId: string | undefined;
308
- PartnerType: PartnerType | string | undefined;
308
+ PartnerType: PartnerType | undefined;
309
309
  }
310
310
  export interface UpdatePartnerAccountResponse {}
311
311
  export interface UpdatePositionRequest {
312
312
  ResourceIdentifier: string | undefined;
313
- ResourceType: PositionResourceType | string | undefined;
313
+ ResourceType: PositionResourceType | undefined;
314
314
  Position: number[] | undefined;
315
315
  }
316
316
  export interface UpdatePositionResponse {}
317
317
  export interface UpdateResourceEventConfigurationRequest {
318
318
  Identifier: string | undefined;
319
- IdentifierType: IdentifierType | string | undefined;
320
- PartnerType?: EventNotificationPartnerType | string;
319
+ IdentifierType: IdentifierType | undefined;
320
+ PartnerType?: EventNotificationPartnerType;
321
321
  DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
322
322
  Proximity?: ProximityEventConfiguration;
323
323
  Join?: JoinEventConfiguration;
@@ -327,7 +327,7 @@ export interface UpdateResourceEventConfigurationRequest {
327
327
  export interface UpdateResourceEventConfigurationResponse {}
328
328
  export interface UpdateResourcePositionRequest {
329
329
  ResourceIdentifier: string | undefined;
330
- ResourceType: PositionResourceType | string | undefined;
330
+ ResourceType: PositionResourceType | undefined;
331
331
  GeoJsonPayload?: Uint8Array;
332
332
  }
333
333
  export interface UpdateResourcePositionResponse {}
@@ -354,7 +354,7 @@ export interface UpdateWirelessDeviceRequest {
354
354
  Name?: string;
355
355
  Description?: string;
356
356
  LoRaWAN?: LoRaWANUpdateDevice;
357
- Positioning?: PositioningConfigStatus | string;
357
+ Positioning?: PositioningConfigStatus;
358
358
  }
359
359
  export interface UpdateWirelessDeviceResponse {}
360
360
  export interface SidewalkUpdateImportInfo {
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.428.0",
4
+ "version": "3.430.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",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-stream": "^2.0.16",
58
58
  "@smithy/util-utf8": "^2.0.0",