@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +256 -75
- package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +749 -698
- package/dist-types/ts3.4/pagination/ExportComponentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ExportThemesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|