@aws-sdk/client-iot-wireless 3.301.0 → 3.306.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/models/models_0.js +195 -232
- package/dist-cjs/models/models_1.js +9 -11
- package/dist-es/models/models_0.js +195 -232
- package/dist-es/models/models_1.js +9 -11
- package/dist-types/models/models_0.d.ts +380 -195
- package/dist-types/models/models_1.d.ts +19 -9
- package/dist-types/ts3.4/models/models_0.d.ts +260 -195
- package/dist-types/ts3.4/models/models_1.d.ts +12 -9
- package/package.json +34 -34
|
@@ -122,10 +122,15 @@ export interface ListWirelessGatewaysResponse {
|
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* @public
|
|
125
|
+
* @enum
|
|
125
126
|
*/
|
|
126
|
-
export declare
|
|
127
|
-
UPDATE
|
|
128
|
-
}
|
|
127
|
+
export declare const WirelessGatewayTaskDefinitionType: {
|
|
128
|
+
readonly UPDATE: "UPDATE";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type WirelessGatewayTaskDefinitionType = (typeof WirelessGatewayTaskDefinitionType)[keyof typeof WirelessGatewayTaskDefinitionType];
|
|
129
134
|
/**
|
|
130
135
|
* @public
|
|
131
136
|
*/
|
|
@@ -340,13 +345,18 @@ export interface SendDataToMulticastGroupResponse {
|
|
|
340
345
|
}
|
|
341
346
|
/**
|
|
342
347
|
* @public
|
|
348
|
+
* @enum
|
|
343
349
|
*/
|
|
344
|
-
export declare
|
|
345
|
-
CUSTOM_COMMAND_ID_GET
|
|
346
|
-
CUSTOM_COMMAND_ID_NOTIFY
|
|
347
|
-
CUSTOM_COMMAND_ID_RESP
|
|
348
|
-
CUSTOM_COMMAND_ID_SET
|
|
349
|
-
}
|
|
350
|
+
export declare const MessageType: {
|
|
351
|
+
readonly CUSTOM_COMMAND_ID_GET: "CUSTOM_COMMAND_ID_GET";
|
|
352
|
+
readonly CUSTOM_COMMAND_ID_NOTIFY: "CUSTOM_COMMAND_ID_NOTIFY";
|
|
353
|
+
readonly CUSTOM_COMMAND_ID_RESP: "CUSTOM_COMMAND_ID_RESP";
|
|
354
|
+
readonly CUSTOM_COMMAND_ID_SET: "CUSTOM_COMMAND_ID_SET";
|
|
355
|
+
};
|
|
356
|
+
/**
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
export type MessageType = (typeof MessageType)[keyof typeof MessageType];
|
|
350
360
|
/**
|
|
351
361
|
* @public
|
|
352
362
|
* <p>Information about a Sidewalk router.</p>
|