@aws-sdk/client-amplifyuibuilder 3.296.0 → 3.297.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 (34) hide show
  1. package/dist-types/AmplifyUIBuilder.d.ts +23 -0
  2. package/dist-types/AmplifyUIBuilderClient.d.ts +24 -4
  3. package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateFormCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateThemeCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteFormCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteThemeCommand.d.ts +16 -0
  9. package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +16 -0
  10. package/dist-types/commands/ExportComponentsCommand.d.ts +16 -0
  11. package/dist-types/commands/ExportFormsCommand.d.ts +16 -0
  12. package/dist-types/commands/ExportThemesCommand.d.ts +16 -0
  13. package/dist-types/commands/GetComponentCommand.d.ts +16 -0
  14. package/dist-types/commands/GetFormCommand.d.ts +16 -0
  15. package/dist-types/commands/GetMetadataCommand.d.ts +16 -0
  16. package/dist-types/commands/GetThemeCommand.d.ts +16 -0
  17. package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListFormsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListThemesCommand.d.ts +16 -0
  20. package/dist-types/commands/PutMetadataFlagCommand.d.ts +16 -0
  21. package/dist-types/commands/RefreshTokenCommand.d.ts +16 -0
  22. package/dist-types/commands/UpdateComponentCommand.d.ts +16 -0
  23. package/dist-types/commands/UpdateFormCommand.d.ts +16 -0
  24. package/dist-types/commands/UpdateThemeCommand.d.ts +16 -0
  25. package/dist-types/models/AmplifyUIBuilderServiceException.d.ts +2 -0
  26. package/dist-types/models/models_0.d.ts +194 -0
  27. package/dist-types/pagination/ExportComponentsPaginator.d.ts +3 -0
  28. package/dist-types/pagination/ExportFormsPaginator.d.ts +3 -0
  29. package/dist-types/pagination/ExportThemesPaginator.d.ts +3 -0
  30. package/dist-types/pagination/Interfaces.d.ts +3 -0
  31. package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListFormsPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListThemesPaginator.d.ts +3 -0
  34. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateThemeCommand}.
8
10
  */
9
11
  export interface UpdateThemeCommandInput extends UpdateThemeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateThemeCommand}.
13
17
  */
14
18
  export interface UpdateThemeCommandOutput extends UpdateThemeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing theme.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateThemeCommandOutput extends UpdateThemeResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateThemeCommandInput - {@link UpdateThemeCommandInput}
34
+ * @returns {@link UpdateThemeCommandOutput}
28
35
  * @see {@link UpdateThemeCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateThemeCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateThemeCommandOutput extends UpdateThemeResponse, __Metadat
43
50
  export declare class UpdateThemeCommand extends $Command<UpdateThemeCommandInput, UpdateThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
44
51
  readonly input: UpdateThemeCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateThemeCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateThemeCommandInput, UpdateThemeCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from AmplifyUIBuilder service.
4
6
  */
5
7
  export declare class AmplifyUIBuilderServiceException extends __ServiceException {