@aws-sdk/client-amplifyuibuilder 3.521.0 → 3.523.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 (39) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -0
  3. package/dist-cjs/commands/TagResourceCommand.js +1 -0
  4. package/dist-cjs/commands/UntagResourceCommand.js +1 -0
  5. package/dist-cjs/index.js +141 -0
  6. package/dist-es/AmplifyUIBuilder.js +6 -0
  7. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  8. package/dist-es/commands/TagResourceCommand.js +24 -0
  9. package/dist-es/commands/UntagResourceCommand.js +24 -0
  10. package/dist-es/commands/index.js +3 -0
  11. package/dist-es/models/models_0.js +4 -0
  12. package/dist-es/protocols/Aws_restJson1.js +73 -0
  13. package/dist-types/AmplifyUIBuilder.d.ts +22 -1
  14. package/dist-types/AmplifyUIBuilderClient.d.ts +6 -3
  15. package/dist-types/commands/CreateComponentCommand.d.ts +2 -2
  16. package/dist-types/commands/CreateFormCommand.d.ts +16 -16
  17. package/dist-types/commands/ExportComponentsCommand.d.ts +1 -1
  18. package/dist-types/commands/ExportFormsCommand.d.ts +8 -8
  19. package/dist-types/commands/GetComponentCommand.d.ts +1 -1
  20. package/dist-types/commands/GetFormCommand.d.ts +8 -8
  21. package/dist-types/commands/ListFormsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +75 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +74 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +74 -0
  25. package/dist-types/commands/UpdateComponentCommand.d.ts +2 -2
  26. package/dist-types/commands/UpdateFormCommand.d.ts +16 -16
  27. package/dist-types/commands/index.d.ts +3 -0
  28. package/dist-types/index.d.ts +1 -1
  29. package/dist-types/models/models_0.d.ts +69 -1
  30. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  31. package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +51 -0
  32. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +18 -0
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
  34. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +26 -0
  35. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +29 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +21 -1
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  39. package/package.json +34 -34
@@ -75,6 +75,10 @@ import {
75
75
  ListFormsCommandInput,
76
76
  ListFormsCommandOutput,
77
77
  } from "../commands/ListFormsCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "../commands/ListTagsForResourceCommand";
78
82
  import {
79
83
  ListThemesCommandInput,
80
84
  ListThemesCommandOutput,
@@ -91,6 +95,14 @@ import {
91
95
  StartCodegenJobCommandInput,
92
96
  StartCodegenJobCommandOutput,
93
97
  } from "../commands/StartCodegenJobCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "../commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "../commands/UntagResourceCommand";
94
106
  import {
95
107
  UpdateComponentCommandInput,
96
108
  UpdateComponentCommandOutput,
@@ -175,6 +187,10 @@ export declare const se_ListFormsCommand: (
175
187
  input: ListFormsCommandInput,
176
188
  context: __SerdeContext
177
189
  ) => Promise<__HttpRequest>;
190
+ export declare const se_ListTagsForResourceCommand: (
191
+ input: ListTagsForResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
178
194
  export declare const se_ListThemesCommand: (
179
195
  input: ListThemesCommandInput,
180
196
  context: __SerdeContext
@@ -191,6 +207,14 @@ export declare const se_StartCodegenJobCommand: (
191
207
  input: StartCodegenJobCommandInput,
192
208
  context: __SerdeContext
193
209
  ) => Promise<__HttpRequest>;
210
+ export declare const se_TagResourceCommand: (
211
+ input: TagResourceCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const se_UntagResourceCommand: (
215
+ input: UntagResourceCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
194
218
  export declare const se_UpdateComponentCommand: (
195
219
  input: UpdateComponentCommandInput,
196
220
  context: __SerdeContext
@@ -275,6 +299,10 @@ export declare const de_ListFormsCommand: (
275
299
  output: __HttpResponse,
276
300
  context: __SerdeContext
277
301
  ) => Promise<ListFormsCommandOutput>;
302
+ export declare const de_ListTagsForResourceCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListTagsForResourceCommandOutput>;
278
306
  export declare const de_ListThemesCommand: (
279
307
  output: __HttpResponse,
280
308
  context: __SerdeContext
@@ -291,6 +319,14 @@ export declare const de_StartCodegenJobCommand: (
291
319
  output: __HttpResponse,
292
320
  context: __SerdeContext
293
321
  ) => Promise<StartCodegenJobCommandOutput>;
322
+ export declare const de_TagResourceCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<TagResourceCommandOutput>;
326
+ export declare const de_UntagResourceCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<UntagResourceCommandOutput>;
294
330
  export declare const de_UpdateComponentCommand: (
295
331
  output: __HttpResponse,
296
332
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplifyuibuilder",
3
3
  "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
4
- "version": "3.521.0",
4
+ "version": "3.523.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-amplifyuibuilder",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.521.0",
24
- "@aws-sdk/core": "3.521.0",
25
- "@aws-sdk/credential-provider-node": "3.521.0",
26
- "@aws-sdk/middleware-host-header": "3.521.0",
27
- "@aws-sdk/middleware-logger": "3.521.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.521.0",
29
- "@aws-sdk/middleware-user-agent": "3.521.0",
30
- "@aws-sdk/region-config-resolver": "3.521.0",
31
- "@aws-sdk/types": "3.521.0",
32
- "@aws-sdk/util-endpoints": "3.521.0",
33
- "@aws-sdk/util-user-agent-browser": "3.521.0",
34
- "@aws-sdk/util-user-agent-node": "3.521.0",
35
- "@smithy/config-resolver": "^2.1.2",
36
- "@smithy/core": "^1.3.3",
37
- "@smithy/fetch-http-handler": "^2.4.2",
38
- "@smithy/hash-node": "^2.1.2",
39
- "@smithy/invalid-dependency": "^2.1.2",
40
- "@smithy/middleware-content-length": "^2.1.2",
41
- "@smithy/middleware-endpoint": "^2.4.2",
42
- "@smithy/middleware-retry": "^2.1.2",
43
- "@smithy/middleware-serde": "^2.1.2",
44
- "@smithy/middleware-stack": "^2.1.2",
45
- "@smithy/node-config-provider": "^2.2.2",
46
- "@smithy/node-http-handler": "^2.4.0",
47
- "@smithy/protocol-http": "^3.2.0",
48
- "@smithy/smithy-client": "^2.4.0",
49
- "@smithy/types": "^2.10.0",
50
- "@smithy/url-parser": "^2.1.2",
23
+ "@aws-sdk/client-sts": "3.523.0",
24
+ "@aws-sdk/core": "3.523.0",
25
+ "@aws-sdk/credential-provider-node": "3.523.0",
26
+ "@aws-sdk/middleware-host-header": "3.523.0",
27
+ "@aws-sdk/middleware-logger": "3.523.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.523.0",
29
+ "@aws-sdk/middleware-user-agent": "3.523.0",
30
+ "@aws-sdk/region-config-resolver": "3.523.0",
31
+ "@aws-sdk/types": "3.523.0",
32
+ "@aws-sdk/util-endpoints": "3.523.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.523.0",
34
+ "@aws-sdk/util-user-agent-node": "3.523.0",
35
+ "@smithy/config-resolver": "^2.1.3",
36
+ "@smithy/core": "^1.3.4",
37
+ "@smithy/fetch-http-handler": "^2.4.3",
38
+ "@smithy/hash-node": "^2.1.3",
39
+ "@smithy/invalid-dependency": "^2.1.3",
40
+ "@smithy/middleware-content-length": "^2.1.3",
41
+ "@smithy/middleware-endpoint": "^2.4.3",
42
+ "@smithy/middleware-retry": "^2.1.3",
43
+ "@smithy/middleware-serde": "^2.1.3",
44
+ "@smithy/middleware-stack": "^2.1.3",
45
+ "@smithy/node-config-provider": "^2.2.3",
46
+ "@smithy/node-http-handler": "^2.4.1",
47
+ "@smithy/protocol-http": "^3.2.1",
48
+ "@smithy/smithy-client": "^2.4.1",
49
+ "@smithy/types": "^2.10.1",
50
+ "@smithy/url-parser": "^2.1.3",
51
51
  "@smithy/util-base64": "^2.1.1",
52
52
  "@smithy/util-body-length-browser": "^2.1.1",
53
53
  "@smithy/util-body-length-node": "^2.2.1",
54
- "@smithy/util-defaults-mode-browser": "^2.1.2",
55
- "@smithy/util-defaults-mode-node": "^2.2.1",
56
- "@smithy/util-endpoints": "^1.1.2",
57
- "@smithy/util-middleware": "^2.1.2",
58
- "@smithy/util-retry": "^2.1.2",
54
+ "@smithy/util-defaults-mode-browser": "^2.1.3",
55
+ "@smithy/util-defaults-mode-node": "^2.2.2",
56
+ "@smithy/util-endpoints": "^1.1.3",
57
+ "@smithy/util-middleware": "^2.1.3",
58
+ "@smithy/util-retry": "^2.1.3",
59
59
  "@smithy/util-utf8": "^2.1.1",
60
60
  "tslib": "^2.5.0",
61
61
  "uuid": "^9.0.1"