@aws-sdk/client-qapps 3.647.0 → 3.648.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.
@@ -78,6 +78,19 @@ declare const UpdateLibraryItemMetadataCommand_base: {
78
78
  * <p>Base exception class for all service exceptions from QApps service.</p>
79
79
  *
80
80
  * @public
81
+ * @example Update a library item to be verified
82
+ * ```javascript
83
+ * //
84
+ * const input = {
85
+ * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f",
86
+ * "isVerified": true,
87
+ * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316"
88
+ * };
89
+ * const command = new UpdateLibraryItemMetadataCommand(input);
90
+ * await client.send(command);
91
+ * // example id: example-1
92
+ * ```
93
+ *
81
94
  */
82
95
  export declare class UpdateLibraryItemMetadataCommand extends UpdateLibraryItemMetadataCommand_base {
83
96
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-qapps",
3
3
  "description": "AWS SDK for JavaScript Qapps Client for Node.js, Browser and React Native",
4
- "version": "3.647.0",
4
+ "version": "3.648.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",