@wildix/xbees-users-client 1.0.19 → 1.0.21

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.
@@ -322,7 +322,11 @@ const de_ChangeUserEmailCommand = async (output, context) => {
322
322
  const contents = (0, smithy_client_1.map)({
323
323
  $metadata: deserializeMetadata(output),
324
324
  });
325
- await (0, smithy_client_1.collectBody)(output.body, context);
325
+ const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await parseBody(output.body, context))), "body");
326
+ const doc = (0, smithy_client_1.take)(data, {
327
+ 'sfnArn': smithy_client_1.expectString,
328
+ });
329
+ Object.assign(contents, doc);
326
330
  return contents;
327
331
  };
328
332
  exports.de_ChangeUserEmailCommand = de_ChangeUserEmailCommand;
@@ -301,7 +301,11 @@ export const de_ChangeUserEmailCommand = async (output, context) => {
301
301
  const contents = map({
302
302
  $metadata: deserializeMetadata(output),
303
303
  });
304
- await collectBody(output.body, context);
304
+ const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
305
+ const doc = take(data, {
306
+ 'sfnArn': __expectString,
307
+ });
308
+ Object.assign(contents, doc);
305
309
  return contents;
306
310
  };
307
311
  export const de_CreateBotCommand = async (output, context) => {
@@ -46,7 +46,9 @@ declare const ChangeUserEmailCommand_base: {
46
46
  * };
47
47
  * const command = new ChangeUserEmailCommand(input);
48
48
  * const response = await client.send(command);
49
- * // {};
49
+ * // { // ChangeUserEmailOutput
50
+ * // sfnArn: "STRING_VALUE", // required
51
+ * // };
50
52
  *
51
53
  * ```
52
54
  *
@@ -253,6 +253,7 @@ export interface ChangeUserEmailInput {
253
253
  * @public
254
254
  */
255
255
  export interface ChangeUserEmailOutput {
256
+ sfnArn: string;
256
257
  }
257
258
  /**
258
259
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/xbees-users-client",
3
3
  "description": "@wildix/xbees-users-client client",
4
- "version": "1.0.19",
4
+ "version": "1.0.21",
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",