@aws-sdk/client-qapps 3.682.0 → 3.687.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.
Files changed (38) hide show
  1. package/README.md +33 -1
  2. package/dist-cjs/QApps.js +8 -0
  3. package/dist-cjs/commands/BatchCreateCategoryCommand.js +26 -0
  4. package/dist-cjs/commands/BatchDeleteCategoryCommand.js +26 -0
  5. package/dist-cjs/commands/BatchUpdateCategoryCommand.js +26 -0
  6. package/dist-cjs/commands/ListCategoriesCommand.js +26 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/protocols/Aws_restJson1.js +106 -1
  9. package/dist-es/QApps.js +8 -0
  10. package/dist-es/commands/BatchCreateCategoryCommand.js +22 -0
  11. package/dist-es/commands/BatchDeleteCategoryCommand.js +22 -0
  12. package/dist-es/commands/BatchUpdateCategoryCommand.js +22 -0
  13. package/dist-es/commands/ListCategoriesCommand.js +22 -0
  14. package/dist-es/commands/index.js +4 -0
  15. package/dist-es/protocols/Aws_restJson1.js +96 -0
  16. package/dist-types/QApps.d.ts +28 -0
  17. package/dist-types/QAppsClient.d.ts +6 -2
  18. package/dist-types/commands/BatchCreateCategoryCommand.d.ts +120 -0
  19. package/dist-types/commands/BatchDeleteCategoryCommand.d.ts +109 -0
  20. package/dist-types/commands/BatchUpdateCategoryCommand.d.ts +120 -0
  21. package/dist-types/commands/GetLibraryItemCommand.d.ts +2 -0
  22. package/dist-types/commands/GetQAppSessionCommand.d.ts +2 -2
  23. package/dist-types/commands/ListCategoriesCommand.d.ts +126 -0
  24. package/dist-types/commands/ListLibraryItemsCommand.d.ts +2 -0
  25. package/dist-types/commands/UpdateLibraryItemCommand.d.ts +2 -0
  26. package/dist-types/commands/index.d.ts +4 -0
  27. package/dist-types/models/models_0.d.ts +117 -0
  28. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  29. package/dist-types/ts3.4/QApps.d.ts +68 -0
  30. package/dist-types/ts3.4/QAppsClient.d.ts +24 -0
  31. package/dist-types/ts3.4/commands/BatchCreateCategoryCommand.d.ts +46 -0
  32. package/dist-types/ts3.4/commands/BatchDeleteCategoryCommand.d.ts +46 -0
  33. package/dist-types/ts3.4/commands/BatchUpdateCategoryCommand.d.ts +46 -0
  34. package/dist-types/ts3.4/commands/ListCategoriesCommand.d.ts +47 -0
  35. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  36. package/dist-types/ts3.4/models/models_0.d.ts +30 -0
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  38. package/package.json +35 -35
@@ -11,6 +11,18 @@ import {
11
11
  AssociateQAppWithUserCommandInput,
12
12
  AssociateQAppWithUserCommandOutput,
13
13
  } from "../commands/AssociateQAppWithUserCommand";
14
+ import {
15
+ BatchCreateCategoryCommandInput,
16
+ BatchCreateCategoryCommandOutput,
17
+ } from "../commands/BatchCreateCategoryCommand";
18
+ import {
19
+ BatchDeleteCategoryCommandInput,
20
+ BatchDeleteCategoryCommandOutput,
21
+ } from "../commands/BatchDeleteCategoryCommand";
22
+ import {
23
+ BatchUpdateCategoryCommandInput,
24
+ BatchUpdateCategoryCommandOutput,
25
+ } from "../commands/BatchUpdateCategoryCommand";
14
26
  import {
15
27
  CreateLibraryItemCommandInput,
16
28
  CreateLibraryItemCommandOutput,
@@ -51,6 +63,10 @@ import {
51
63
  ImportDocumentCommandInput,
52
64
  ImportDocumentCommandOutput,
53
65
  } from "../commands/ImportDocumentCommand";
66
+ import {
67
+ ListCategoriesCommandInput,
68
+ ListCategoriesCommandOutput,
69
+ } from "../commands/ListCategoriesCommand";
54
70
  import {
55
71
  ListLibraryItemsCommandInput,
56
72
  ListLibraryItemsCommandOutput,
@@ -107,6 +123,18 @@ export declare const se_AssociateQAppWithUserCommand: (
107
123
  input: AssociateQAppWithUserCommandInput,
108
124
  context: __SerdeContext
109
125
  ) => Promise<__HttpRequest>;
126
+ export declare const se_BatchCreateCategoryCommand: (
127
+ input: BatchCreateCategoryCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_BatchDeleteCategoryCommand: (
131
+ input: BatchDeleteCategoryCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_BatchUpdateCategoryCommand: (
135
+ input: BatchUpdateCategoryCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
110
138
  export declare const se_CreateLibraryItemCommand: (
111
139
  input: CreateLibraryItemCommandInput,
112
140
  context: __SerdeContext
@@ -147,6 +175,10 @@ export declare const se_ImportDocumentCommand: (
147
175
  input: ImportDocumentCommandInput,
148
176
  context: __SerdeContext
149
177
  ) => Promise<__HttpRequest>;
178
+ export declare const se_ListCategoriesCommand: (
179
+ input: ListCategoriesCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
150
182
  export declare const se_ListLibraryItemsCommand: (
151
183
  input: ListLibraryItemsCommandInput,
152
184
  context: __SerdeContext
@@ -203,6 +235,18 @@ export declare const de_AssociateQAppWithUserCommand: (
203
235
  output: __HttpResponse,
204
236
  context: __SerdeContext
205
237
  ) => Promise<AssociateQAppWithUserCommandOutput>;
238
+ export declare const de_BatchCreateCategoryCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<BatchCreateCategoryCommandOutput>;
242
+ export declare const de_BatchDeleteCategoryCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<BatchDeleteCategoryCommandOutput>;
246
+ export declare const de_BatchUpdateCategoryCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<BatchUpdateCategoryCommandOutput>;
206
250
  export declare const de_CreateLibraryItemCommand: (
207
251
  output: __HttpResponse,
208
252
  context: __SerdeContext
@@ -243,6 +287,10 @@ export declare const de_ImportDocumentCommand: (
243
287
  output: __HttpResponse,
244
288
  context: __SerdeContext
245
289
  ) => Promise<ImportDocumentCommandOutput>;
290
+ export declare const de_ListCategoriesCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListCategoriesCommandOutput>;
246
294
  export declare const de_ListLibraryItemsCommand: (
247
295
  output: __HttpResponse,
248
296
  context: __SerdeContext
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.682.0",
4
+ "version": "3.687.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",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.682.0",
24
- "@aws-sdk/client-sts": "3.682.0",
25
- "@aws-sdk/core": "3.679.0",
26
- "@aws-sdk/credential-provider-node": "3.682.0",
27
- "@aws-sdk/middleware-host-header": "3.679.0",
28
- "@aws-sdk/middleware-logger": "3.679.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
- "@aws-sdk/middleware-user-agent": "3.682.0",
31
- "@aws-sdk/region-config-resolver": "3.679.0",
32
- "@aws-sdk/types": "3.679.0",
33
- "@aws-sdk/util-endpoints": "3.679.0",
34
- "@aws-sdk/util-user-agent-browser": "3.679.0",
35
- "@aws-sdk/util-user-agent-node": "3.682.0",
36
- "@smithy/config-resolver": "^3.0.9",
37
- "@smithy/core": "^2.4.8",
38
- "@smithy/fetch-http-handler": "^3.2.9",
39
- "@smithy/hash-node": "^3.0.7",
40
- "@smithy/invalid-dependency": "^3.0.7",
41
- "@smithy/middleware-content-length": "^3.0.9",
42
- "@smithy/middleware-endpoint": "^3.1.4",
43
- "@smithy/middleware-retry": "^3.0.23",
44
- "@smithy/middleware-serde": "^3.0.7",
45
- "@smithy/middleware-stack": "^3.0.7",
46
- "@smithy/node-config-provider": "^3.1.8",
47
- "@smithy/node-http-handler": "^3.2.4",
48
- "@smithy/protocol-http": "^4.1.4",
49
- "@smithy/smithy-client": "^3.4.0",
50
- "@smithy/types": "^3.5.0",
51
- "@smithy/url-parser": "^3.0.7",
23
+ "@aws-sdk/client-sso-oidc": "3.687.0",
24
+ "@aws-sdk/client-sts": "3.687.0",
25
+ "@aws-sdk/core": "3.686.0",
26
+ "@aws-sdk/credential-provider-node": "3.687.0",
27
+ "@aws-sdk/middleware-host-header": "3.686.0",
28
+ "@aws-sdk/middleware-logger": "3.686.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.687.0",
31
+ "@aws-sdk/region-config-resolver": "3.686.0",
32
+ "@aws-sdk/types": "3.686.0",
33
+ "@aws-sdk/util-endpoints": "3.686.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.687.0",
36
+ "@smithy/config-resolver": "^3.0.10",
37
+ "@smithy/core": "^2.5.1",
38
+ "@smithy/fetch-http-handler": "^4.0.0",
39
+ "@smithy/hash-node": "^3.0.8",
40
+ "@smithy/invalid-dependency": "^3.0.8",
41
+ "@smithy/middleware-content-length": "^3.0.10",
42
+ "@smithy/middleware-endpoint": "^3.2.1",
43
+ "@smithy/middleware-retry": "^3.0.25",
44
+ "@smithy/middleware-serde": "^3.0.8",
45
+ "@smithy/middleware-stack": "^3.0.8",
46
+ "@smithy/node-config-provider": "^3.1.9",
47
+ "@smithy/node-http-handler": "^3.2.5",
48
+ "@smithy/protocol-http": "^4.1.5",
49
+ "@smithy/smithy-client": "^3.4.2",
50
+ "@smithy/types": "^3.6.0",
51
+ "@smithy/url-parser": "^3.0.8",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.23",
56
- "@smithy/util-defaults-mode-node": "^3.0.23",
57
- "@smithy/util-endpoints": "^2.1.3",
58
- "@smithy/util-middleware": "^3.0.7",
59
- "@smithy/util-retry": "^3.0.7",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.25",
56
+ "@smithy/util-defaults-mode-node": "^3.0.25",
57
+ "@smithy/util-endpoints": "^2.1.4",
58
+ "@smithy/util-middleware": "^3.0.8",
59
+ "@smithy/util-retry": "^3.0.8",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },