@aws-sdk/client-amplifyuibuilder 3.296.0 → 3.298.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/dist-cjs/commands/CreateComponentCommand.js +2 -3
- package/dist-cjs/commands/CreateFormCommand.js +2 -3
- package/dist-cjs/commands/CreateThemeCommand.js +2 -3
- package/dist-cjs/commands/DeleteComponentCommand.js +2 -3
- package/dist-cjs/commands/DeleteFormCommand.js +2 -3
- package/dist-cjs/commands/DeleteThemeCommand.js +2 -3
- package/dist-cjs/commands/ExportComponentsCommand.js +2 -3
- package/dist-cjs/commands/ExportFormsCommand.js +2 -3
- package/dist-cjs/commands/ExportThemesCommand.js +2 -3
- package/dist-cjs/commands/GetComponentCommand.js +2 -3
- package/dist-cjs/commands/GetFormCommand.js +2 -3
- package/dist-cjs/commands/GetMetadataCommand.js +2 -3
- package/dist-cjs/commands/GetThemeCommand.js +2 -3
- package/dist-cjs/commands/ListComponentsCommand.js +2 -3
- package/dist-cjs/commands/ListFormsCommand.js +2 -3
- package/dist-cjs/commands/ListThemesCommand.js +2 -3
- package/dist-cjs/commands/PutMetadataFlagCommand.js +2 -3
- package/dist-cjs/commands/UpdateComponentCommand.js +2 -3
- package/dist-cjs/commands/UpdateFormCommand.js +2 -3
- package/dist-cjs/commands/UpdateThemeCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -365
- package/dist-es/commands/CreateComponentCommand.js +2 -3
- package/dist-es/commands/CreateFormCommand.js +2 -3
- package/dist-es/commands/CreateThemeCommand.js +2 -3
- package/dist-es/commands/DeleteComponentCommand.js +2 -3
- package/dist-es/commands/DeleteFormCommand.js +2 -3
- package/dist-es/commands/DeleteThemeCommand.js +2 -3
- package/dist-es/commands/ExportComponentsCommand.js +2 -3
- package/dist-es/commands/ExportFormsCommand.js +2 -3
- package/dist-es/commands/ExportThemesCommand.js +2 -3
- package/dist-es/commands/GetComponentCommand.js +2 -3
- package/dist-es/commands/GetFormCommand.js +2 -3
- package/dist-es/commands/GetMetadataCommand.js +2 -3
- package/dist-es/commands/GetThemeCommand.js +2 -3
- package/dist-es/commands/ListComponentsCommand.js +2 -3
- package/dist-es/commands/ListFormsCommand.js +2 -3
- package/dist-es/commands/ListThemesCommand.js +2 -3
- package/dist-es/commands/PutMetadataFlagCommand.js +2 -3
- package/dist-es/commands/UpdateComponentCommand.js +2 -3
- package/dist-es/commands/UpdateFormCommand.js +2 -3
- package/dist-es/commands/UpdateThemeCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -285
- package/dist-types/AmplifyUIBuilder.d.ts +23 -0
- package/dist-types/AmplifyUIBuilderClient.d.ts +24 -4
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateFormCommand.d.ts +16 -0
- package/dist-types/commands/CreateThemeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFormCommand.d.ts +16 -0
- package/dist-types/commands/DeleteThemeCommand.d.ts +16 -0
- package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +16 -0
- package/dist-types/commands/ExportComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ExportFormsCommand.d.ts +16 -0
- package/dist-types/commands/ExportThemesCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetFormCommand.d.ts +16 -0
- package/dist-types/commands/GetMetadataCommand.d.ts +16 -0
- package/dist-types/commands/GetThemeCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListFormsCommand.d.ts +16 -0
- package/dist-types/commands/ListThemesCommand.d.ts +16 -0
- package/dist-types/commands/PutMetadataFlagCommand.d.ts +16 -0
- package/dist-types/commands/RefreshTokenCommand.d.ts +16 -0
- package/dist-types/commands/UpdateComponentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFormCommand.d.ts +16 -0
- package/dist-types/commands/UpdateThemeCommand.d.ts +16 -0
- package/dist-types/models/AmplifyUIBuilderServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +194 -312
- package/dist-types/pagination/ExportComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ExportFormsPaginator.d.ts +3 -0
- package/dist-types/pagination/ExportThemesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFormsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListThemesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -206
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { GetFormRequest, GetFormResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetFormCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetFormCommandInput extends GetFormRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetFormCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetFormCommandOutput extends GetFormResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an existing form for an Amplify app.</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 GetFormCommandOutput extends GetFormResponse, __MetadataBearer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetFormCommandInput - {@link GetFormCommandInput}
|
|
34
|
+
* @returns {@link GetFormCommandOutput}
|
|
28
35
|
* @see {@link GetFormCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetFormCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetFormCommandOutput extends GetFormResponse, __MetadataBearer
|
|
|
43
50
|
export declare class GetFormCommand extends $Command<GetFormCommandInput, GetFormCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
44
51
|
readonly input: GetFormCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetFormCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFormCommandInput, GetFormCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { GetMetadataRequest, GetMetadataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMetadataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMetadataCommandInput extends GetMetadataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMetadataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMetadataCommandOutput extends GetMetadataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns existing metadata for an Amplify app.</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 GetMetadataCommandOutput extends GetMetadataResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetMetadataCommandInput - {@link GetMetadataCommandInput}
|
|
34
|
+
* @returns {@link GetMetadataCommandOutput}
|
|
28
35
|
* @see {@link GetMetadataCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetMetadataCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetMetadataCommandOutput extends GetMetadataResponse, __Metadat
|
|
|
40
47
|
export declare class GetMetadataCommand extends $Command<GetMetadataCommandInput, GetMetadataCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
41
48
|
readonly input: GetMetadataCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetMetadataCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMetadataCommandInput, GetMetadataCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { GetThemeRequest, GetThemeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetThemeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetThemeCommandInput extends GetThemeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetThemeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetThemeCommandOutput extends GetThemeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an existing theme for an Amplify app.</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 GetThemeCommandOutput extends GetThemeResponse, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetThemeCommandInput - {@link GetThemeCommandInput}
|
|
34
|
+
* @returns {@link GetThemeCommandOutput}
|
|
28
35
|
* @see {@link GetThemeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetThemeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetThemeCommandOutput extends GetThemeResponse, __MetadataBeare
|
|
|
43
50
|
export declare class GetThemeCommand extends $Command<GetThemeCommandInput, GetThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
44
51
|
readonly input: GetThemeCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetThemeCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetThemeCommandInput, GetThemeCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListComponentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListComponentsCommandInput extends ListComponentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListComponentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of components for a specified Amplify app and backend
|
|
18
23
|
* environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
35
|
+
* @returns {@link ListComponentsCommandOutput}
|
|
29
36
|
* @see {@link ListComponentsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListComponentsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
41
48
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
42
49
|
readonly input: ListComponentsCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListComponentsCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { ListFormsRequest, ListFormsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListFormsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListFormsCommandInput extends ListFormsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListFormsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListFormsCommandOutput extends ListFormsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of forms for a specified Amplify app and backend environment.</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 ListFormsCommandOutput extends ListFormsResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListFormsCommandInput - {@link ListFormsCommandInput}
|
|
34
|
+
* @returns {@link ListFormsCommandOutput}
|
|
28
35
|
* @see {@link ListFormsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListFormsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListFormsCommandOutput extends ListFormsResponse, __MetadataBea
|
|
|
40
47
|
export declare class ListFormsCommand extends $Command<ListFormsCommandInput, ListFormsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
41
48
|
readonly input: ListFormsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListFormsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFormsCommandInput, ListFormsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { ListThemesRequest, ListThemesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListThemesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListThemesCommandInput extends ListThemesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListThemesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of themes for a specified Amplify app and backend
|
|
18
23
|
* environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListThemesCommandInput - {@link ListThemesCommandInput}
|
|
35
|
+
* @returns {@link ListThemesCommandOutput}
|
|
29
36
|
* @see {@link ListThemesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListThemesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataB
|
|
|
41
48
|
export declare class ListThemesCommand extends $Command<ListThemesCommandInput, ListThemesCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
42
49
|
readonly input: ListThemesCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListThemesCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListThemesCommandInput, ListThemesCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { PutMetadataFlagRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutMetadataFlagCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutMetadataFlagCommandInput extends PutMetadataFlagRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutMetadataFlagCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutMetadataFlagCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stores the metadata information about a feature on a form or view.</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 PutMetadataFlagCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutMetadataFlagCommandInput - {@link PutMetadataFlagCommandInput}
|
|
34
|
+
* @returns {@link PutMetadataFlagCommandOutput}
|
|
28
35
|
* @see {@link PutMetadataFlagCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutMetadataFlagCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface PutMetadataFlagCommandOutput extends __MetadataBearer {
|
|
|
40
47
|
export declare class PutMetadataFlagCommand extends $Command<PutMetadataFlagCommandInput, PutMetadataFlagCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
41
48
|
readonly input: PutMetadataFlagCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: PutMetadataFlagCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutMetadataFlagCommandInput, PutMetadataFlagCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { RefreshTokenRequest, RefreshTokenResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RefreshTokenCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RefreshTokenCommandInput extends RefreshTokenRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RefreshTokenCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RefreshTokenCommandOutput extends RefreshTokenResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Refreshes a previously issued access token that might have expired.</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 RefreshTokenCommandOutput extends RefreshTokenResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RefreshTokenCommandInput - {@link RefreshTokenCommandInput}
|
|
34
|
+
* @returns {@link RefreshTokenCommandOutput}
|
|
28
35
|
* @see {@link RefreshTokenCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RefreshTokenCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface RefreshTokenCommandOutput extends RefreshTokenResponse, __Metad
|
|
|
37
44
|
export declare class RefreshTokenCommand extends $Command<RefreshTokenCommandInput, RefreshTokenCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
38
45
|
readonly input: RefreshTokenCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: RefreshTokenCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RefreshTokenCommandInput, RefreshTokenCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateComponentCommandInput extends UpdateComponentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateComponentCommandOutput extends UpdateComponentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing component.</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 UpdateComponentCommandOutput extends UpdateComponentResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateComponentCommandInput - {@link UpdateComponentCommandInput}
|
|
34
|
+
* @returns {@link UpdateComponentCommandOutput}
|
|
28
35
|
* @see {@link UpdateComponentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateComponentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateComponentCommandOutput extends UpdateComponentResponse, _
|
|
|
43
50
|
export declare class UpdateComponentCommand extends $Command<UpdateComponentCommandInput, UpdateComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateComponentCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateComponentCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComponentCommandInput, UpdateComponentCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
|
|
5
5
|
import { UpdateFormRequest, UpdateFormResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateFormCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateFormCommandInput extends UpdateFormRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateFormCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateFormCommandOutput extends UpdateFormResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing form.</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 UpdateFormCommandOutput extends UpdateFormResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateFormCommandInput - {@link UpdateFormCommandInput}
|
|
34
|
+
* @returns {@link UpdateFormCommandOutput}
|
|
28
35
|
* @see {@link UpdateFormCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateFormCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateFormCommandOutput extends UpdateFormResponse, __MetadataB
|
|
|
43
50
|
export declare class UpdateFormCommand extends $Command<UpdateFormCommandInput, UpdateFormCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateFormCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateFormCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFormCommandInput, UpdateFormCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -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 {
|