@aws-sdk/client-amplifyuibuilder 3.169.0 → 3.170.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 (35) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +256 -75
  3. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +214 -87
  4. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +749 -698
  24. package/dist-types/ts3.4/pagination/ExportComponentsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ExportThemesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  35. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0";
5
- export interface CreateComponentCommandInput extends CreateComponentRequest {
6
- }
7
- export interface CreateComponentCommandOutput extends CreateComponentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: CreateComponentCommandInput;
12
- constructor(input: CreateComponentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import {
14
+ CreateComponentRequest,
15
+ CreateComponentResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateComponentCommandInput extends CreateComponentRequest {}
18
+ export interface CreateComponentCommandOutput
19
+ extends CreateComponentResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateComponentCommand extends $Command<
23
+ CreateComponentCommandInput,
24
+ CreateComponentCommandOutput,
25
+ AmplifyUIBuilderClientResolvedConfig
26
+ > {
27
+ readonly input: CreateComponentCommandInput;
28
+ constructor(input: CreateComponentCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyUIBuilderClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { CreateThemeRequest, CreateThemeResponse } from "../models/models_0";
5
- export interface CreateThemeCommandInput extends CreateThemeRequest {
6
- }
7
- export interface CreateThemeCommandOutput extends CreateThemeResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateThemeCommand extends $Command<CreateThemeCommandInput, CreateThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: CreateThemeCommandInput;
12
- constructor(input: CreateThemeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateThemeCommandInput, CreateThemeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { CreateThemeRequest, CreateThemeResponse } from "../models/models_0";
14
+ export interface CreateThemeCommandInput extends CreateThemeRequest {}
15
+ export interface CreateThemeCommandOutput
16
+ extends CreateThemeResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateThemeCommand extends $Command<
20
+ CreateThemeCommandInput,
21
+ CreateThemeCommandOutput,
22
+ AmplifyUIBuilderClientResolvedConfig
23
+ > {
24
+ readonly input: CreateThemeCommandInput;
25
+ constructor(input: CreateThemeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyUIBuilderClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateThemeCommandInput, CreateThemeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { DeleteComponentRequest } from "../models/models_0";
5
- export interface DeleteComponentCommandInput extends DeleteComponentRequest {
6
- }
7
- export interface DeleteComponentCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: DeleteComponentCommandInput;
12
- constructor(input: DeleteComponentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentCommandInput, DeleteComponentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { DeleteComponentRequest } from "../models/models_0";
14
+ export interface DeleteComponentCommandInput extends DeleteComponentRequest {}
15
+ export interface DeleteComponentCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteComponentCommand extends $Command<
18
+ DeleteComponentCommandInput,
19
+ DeleteComponentCommandOutput,
20
+ AmplifyUIBuilderClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteComponentCommandInput;
23
+ constructor(input: DeleteComponentCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyUIBuilderClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteComponentCommandInput, DeleteComponentCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { DeleteThemeRequest } from "../models/models_0";
5
- export interface DeleteThemeCommandInput extends DeleteThemeRequest {
6
- }
7
- export interface DeleteThemeCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteThemeCommand extends $Command<DeleteThemeCommandInput, DeleteThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: DeleteThemeCommandInput;
12
- constructor(input: DeleteThemeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteThemeCommandInput, DeleteThemeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { DeleteThemeRequest } from "../models/models_0";
14
+ export interface DeleteThemeCommandInput extends DeleteThemeRequest {}
15
+ export interface DeleteThemeCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteThemeCommand extends $Command<
18
+ DeleteThemeCommandInput,
19
+ DeleteThemeCommandOutput,
20
+ AmplifyUIBuilderClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteThemeCommandInput;
23
+ constructor(input: DeleteThemeCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyUIBuilderClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteThemeCommandInput, DeleteThemeCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { ExchangeCodeForTokenRequest, ExchangeCodeForTokenResponse } from "../models/models_0";
5
- export interface ExchangeCodeForTokenCommandInput extends ExchangeCodeForTokenRequest {
6
- }
7
- export interface ExchangeCodeForTokenCommandOutput extends ExchangeCodeForTokenResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ExchangeCodeForTokenCommand extends $Command<ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: ExchangeCodeForTokenCommandInput;
12
- constructor(input: ExchangeCodeForTokenCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import {
14
+ ExchangeCodeForTokenRequest,
15
+ ExchangeCodeForTokenResponse,
16
+ } from "../models/models_0";
17
+ export interface ExchangeCodeForTokenCommandInput
18
+ extends ExchangeCodeForTokenRequest {}
19
+ export interface ExchangeCodeForTokenCommandOutput
20
+ extends ExchangeCodeForTokenResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ExchangeCodeForTokenCommand extends $Command<
24
+ ExchangeCodeForTokenCommandInput,
25
+ ExchangeCodeForTokenCommandOutput,
26
+ AmplifyUIBuilderClientResolvedConfig
27
+ > {
28
+ readonly input: ExchangeCodeForTokenCommandInput;
29
+ constructor(input: ExchangeCodeForTokenCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyUIBuilderClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ExchangeCodeForTokenCommandInput,
37
+ ExchangeCodeForTokenCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { ExportComponentsRequest, ExportComponentsResponse } from "../models/models_0";
5
- export interface ExportComponentsCommandInput extends ExportComponentsRequest {
6
- }
7
- export interface ExportComponentsCommandOutput extends ExportComponentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ExportComponentsCommand extends $Command<ExportComponentsCommandInput, ExportComponentsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: ExportComponentsCommandInput;
12
- constructor(input: ExportComponentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportComponentsCommandInput, ExportComponentsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import {
14
+ ExportComponentsRequest,
15
+ ExportComponentsResponse,
16
+ } from "../models/models_0";
17
+ export interface ExportComponentsCommandInput extends ExportComponentsRequest {}
18
+ export interface ExportComponentsCommandOutput
19
+ extends ExportComponentsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ExportComponentsCommand extends $Command<
23
+ ExportComponentsCommandInput,
24
+ ExportComponentsCommandOutput,
25
+ AmplifyUIBuilderClientResolvedConfig
26
+ > {
27
+ readonly input: ExportComponentsCommandInput;
28
+ constructor(input: ExportComponentsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyUIBuilderClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ExportComponentsCommandInput, ExportComponentsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { ExportThemesRequest, ExportThemesResponse } from "../models/models_0";
5
- export interface ExportThemesCommandInput extends ExportThemesRequest {
6
- }
7
- export interface ExportThemesCommandOutput extends ExportThemesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ExportThemesCommand extends $Command<ExportThemesCommandInput, ExportThemesCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: ExportThemesCommandInput;
12
- constructor(input: ExportThemesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportThemesCommandInput, ExportThemesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { ExportThemesRequest, ExportThemesResponse } from "../models/models_0";
14
+ export interface ExportThemesCommandInput extends ExportThemesRequest {}
15
+ export interface ExportThemesCommandOutput
16
+ extends ExportThemesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ExportThemesCommand extends $Command<
20
+ ExportThemesCommandInput,
21
+ ExportThemesCommandOutput,
22
+ AmplifyUIBuilderClientResolvedConfig
23
+ > {
24
+ readonly input: ExportThemesCommandInput;
25
+ constructor(input: ExportThemesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyUIBuilderClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ExportThemesCommandInput, ExportThemesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { GetComponentRequest, GetComponentResponse } from "../models/models_0";
5
- export interface GetComponentCommandInput extends GetComponentRequest {
6
- }
7
- export interface GetComponentCommandOutput extends GetComponentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: GetComponentCommandInput;
12
- constructor(input: GetComponentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { GetComponentRequest, GetComponentResponse } from "../models/models_0";
14
+ export interface GetComponentCommandInput extends GetComponentRequest {}
15
+ export interface GetComponentCommandOutput
16
+ extends GetComponentResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetComponentCommand extends $Command<
20
+ GetComponentCommandInput,
21
+ GetComponentCommandOutput,
22
+ AmplifyUIBuilderClientResolvedConfig
23
+ > {
24
+ readonly input: GetComponentCommandInput;
25
+ constructor(input: GetComponentCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyUIBuilderClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { GetThemeRequest, GetThemeResponse } from "../models/models_0";
5
- export interface GetThemeCommandInput extends GetThemeRequest {
6
- }
7
- export interface GetThemeCommandOutput extends GetThemeResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetThemeCommand extends $Command<GetThemeCommandInput, GetThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: GetThemeCommandInput;
12
- constructor(input: GetThemeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetThemeCommandInput, GetThemeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { GetThemeRequest, GetThemeResponse } from "../models/models_0";
14
+ export interface GetThemeCommandInput extends GetThemeRequest {}
15
+ export interface GetThemeCommandOutput
16
+ extends GetThemeResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetThemeCommand extends $Command<
20
+ GetThemeCommandInput,
21
+ GetThemeCommandOutput,
22
+ AmplifyUIBuilderClientResolvedConfig
23
+ > {
24
+ readonly input: GetThemeCommandInput;
25
+ constructor(input: GetThemeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyUIBuilderClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetThemeCommandInput, GetThemeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
5
- export interface ListComponentsCommandInput extends ListComponentsRequest {
6
- }
7
- export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: ListComponentsCommandInput;
12
- constructor(input: ListComponentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import {
14
+ ListComponentsRequest,
15
+ ListComponentsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListComponentsCommandInput extends ListComponentsRequest {}
18
+ export interface ListComponentsCommandOutput
19
+ extends ListComponentsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListComponentsCommand extends $Command<
23
+ ListComponentsCommandInput,
24
+ ListComponentsCommandOutput,
25
+ AmplifyUIBuilderClientResolvedConfig
26
+ > {
27
+ readonly input: ListComponentsCommandInput;
28
+ constructor(input: ListComponentsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyUIBuilderClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
4
- import { ListThemesRequest, ListThemesResponse } from "../models/models_0";
5
- export interface ListThemesCommandInput extends ListThemesRequest {
6
- }
7
- export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListThemesCommand extends $Command<ListThemesCommandInput, ListThemesCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
11
- readonly input: ListThemesCommandInput;
12
- constructor(input: ListThemesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListThemesCommandInput, ListThemesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyUIBuilderClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyUIBuilderClient";
13
+ import { ListThemesRequest, ListThemesResponse } from "../models/models_0";
14
+ export interface ListThemesCommandInput extends ListThemesRequest {}
15
+ export interface ListThemesCommandOutput
16
+ extends ListThemesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListThemesCommand extends $Command<
20
+ ListThemesCommandInput,
21
+ ListThemesCommandOutput,
22
+ AmplifyUIBuilderClientResolvedConfig
23
+ > {
24
+ readonly input: ListThemesCommandInput;
25
+ constructor(input: ListThemesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyUIBuilderClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListThemesCommandInput, ListThemesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }