@aws-sdk/client-amplifyuibuilder 3.1087.0 → 3.1089.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/index.js +1 -1
- package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +105 -155
- package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +18 -67
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateFormCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteFormCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ExportFormsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetCodegenJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetFormCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetMetadataCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListCodegenJobsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListFormsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PutMetadataFlagCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartCodegenJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateFormCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/ExportFormsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListFormsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCodegenJobsRequest,
|
|
4
|
-
ListCodegenJobsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCodegenJobsRequest, ListCodegenJobsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListCodegenJobsCommandInput extends ListCodegenJobsRequest {}
|
|
8
|
-
export interface ListCodegenJobsCommandOutput
|
|
9
|
-
extends ListCodegenJobsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCodegenJobsCommandOutput extends ListCodegenJobsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListCodegenJobsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListCodegenJobsCommandInput
|
|
8
|
+
input: ListCodegenJobsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListCodegenJobsCommandInput,
|
|
16
11
|
ListCodegenJobsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListCodegenJobsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListCodegenJobsCommandInput
|
|
17
|
+
input: ListCodegenJobsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListCodegenJobsCommandInput,
|
|
25
20
|
ListCodegenJobsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListComponentsRequest,
|
|
4
|
-
ListComponentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListComponentsCommandInput extends ListComponentsRequest {}
|
|
8
|
-
export interface ListComponentsCommandOutput
|
|
9
|
-
extends ListComponentsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListComponentsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListComponentsCommandInput
|
|
8
|
+
input: ListComponentsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListComponentsCommandInput,
|
|
16
11
|
ListComponentsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListComponentsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListComponentsCommandInput
|
|
17
|
+
input: ListComponentsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListComponentsCommandInput,
|
|
25
20
|
ListComponentsCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListFormsRequest, ListFormsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListFormsCommandInput extends ListFormsRequest {}
|
|
5
|
-
export interface ListFormsCommandOutput
|
|
6
|
-
extends ListFormsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFormsCommandOutput extends ListFormsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListFormsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListFormsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListFormsCommandInput,
|
|
11
11
|
ListFormsCommandOutput,
|
|
12
12
|
import("..").AmplifyUIBuilderClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ListFormsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ListFormsCommandInput,
|
|
18
20
|
ListFormsCommandOutput,
|
|
19
21
|
import("..").AmplifyUIBuilderClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListThemesRequest, ListThemesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListThemesCommandInput extends ListThemesRequest {}
|
|
5
|
-
export interface ListThemesCommandOutput
|
|
6
|
-
extends ListThemesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListThemesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListThemesCommandInput
|
|
8
|
+
input: ListThemesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListThemesCommandInput,
|
|
13
11
|
ListThemesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListThemesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListThemesCommandInput
|
|
17
|
+
input: ListThemesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListThemesCommandInput,
|
|
22
20
|
ListThemesCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface PutMetadataFlagCommandInput extends PutMetadataFlagRequest {}
|
|
|
5
5
|
export interface PutMetadataFlagCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const PutMetadataFlagCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: PutMetadataFlagCommandInput
|
|
8
|
+
input: PutMetadataFlagCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
PutMetadataFlagCommandInput,
|
|
11
11
|
PutMetadataFlagCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const PutMetadataFlagCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: PutMetadataFlagCommandInput
|
|
17
|
+
input: PutMetadataFlagCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
PutMetadataFlagCommandInput,
|
|
20
20
|
PutMetadataFlagCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { RefreshTokenRequest, RefreshTokenResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface RefreshTokenCommandInput extends RefreshTokenRequest {}
|
|
5
|
-
export interface RefreshTokenCommandOutput
|
|
6
|
-
extends RefreshTokenResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RefreshTokenCommandOutput extends RefreshTokenResponse, __MetadataBearer {}
|
|
8
6
|
declare const RefreshTokenCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: RefreshTokenCommandInput
|
|
8
|
+
input: RefreshTokenCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
RefreshTokenCommandInput,
|
|
13
11
|
RefreshTokenCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const RefreshTokenCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: RefreshTokenCommandInput
|
|
17
|
+
input: RefreshTokenCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
RefreshTokenCommandInput,
|
|
22
20
|
RefreshTokenCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartCodegenJobRequest,
|
|
4
|
-
StartCodegenJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartCodegenJobRequest, StartCodegenJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartCodegenJobCommandInput extends StartCodegenJobRequest {}
|
|
8
|
-
export interface StartCodegenJobCommandOutput
|
|
9
|
-
extends StartCodegenJobResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartCodegenJobCommandOutput extends StartCodegenJobResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartCodegenJobCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartCodegenJobCommandInput
|
|
8
|
+
input: StartCodegenJobCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartCodegenJobCommandInput,
|
|
16
11
|
StartCodegenJobCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartCodegenJobCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartCodegenJobCommandInput
|
|
17
|
+
input: StartCodegenJobCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartCodegenJobCommandInput,
|
|
25
20
|
StartCodegenJobCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateComponentRequest,
|
|
4
|
-
UpdateComponentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateComponentCommandInput extends UpdateComponentRequest {}
|
|
8
|
-
export interface UpdateComponentCommandOutput
|
|
9
|
-
extends UpdateComponentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateComponentCommandOutput extends UpdateComponentResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateComponentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateComponentCommandInput
|
|
8
|
+
input: UpdateComponentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateComponentCommandInput,
|
|
16
11
|
UpdateComponentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateComponentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateComponentCommandInput
|
|
17
|
+
input: UpdateComponentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateComponentCommandInput,
|
|
25
20
|
UpdateComponentCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateFormRequest, UpdateFormResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateFormCommandInput extends UpdateFormRequest {}
|
|
5
|
-
export interface UpdateFormCommandOutput
|
|
6
|
-
extends UpdateFormResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateFormCommandOutput extends UpdateFormResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateFormCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateFormCommandInput
|
|
8
|
+
input: UpdateFormCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateFormCommandInput,
|
|
13
11
|
UpdateFormCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateFormCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateFormCommandInput
|
|
17
|
+
input: UpdateFormCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateFormCommandInput,
|
|
22
20
|
UpdateFormCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateThemeCommandInput extends UpdateThemeRequest {}
|
|
5
|
-
export interface UpdateThemeCommandOutput
|
|
6
|
-
extends UpdateThemeResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateThemeCommandOutput extends UpdateThemeResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateThemeCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateThemeCommandInput
|
|
8
|
+
input: UpdateThemeCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateThemeCommandInput,
|
|
13
11
|
UpdateThemeCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateThemeCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateThemeCommandInput
|
|
17
|
+
input: UpdateThemeCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateThemeCommandInput,
|
|
22
20
|
UpdateThemeCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface AmplifyUIBuilderExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -52,8 +52,7 @@ export declare const CodegenJobStatus: {
|
|
|
52
52
|
readonly IN_PROGRESS: "in_progress";
|
|
53
53
|
readonly SUCCEEDED: "succeeded";
|
|
54
54
|
};
|
|
55
|
-
export type CodegenJobStatus =
|
|
56
|
-
(typeof CodegenJobStatus)[keyof typeof CodegenJobStatus];
|
|
55
|
+
export type CodegenJobStatus = (typeof CodegenJobStatus)[keyof typeof CodegenJobStatus];
|
|
57
56
|
export declare const SortDirection: {
|
|
58
57
|
readonly ASC: "ASC";
|
|
59
58
|
readonly DESC: "DESC";
|
|
@@ -62,8 +61,7 @@ export type SortDirection = (typeof SortDirection)[keyof typeof SortDirection];
|
|
|
62
61
|
export declare const TokenProviders: {
|
|
63
62
|
readonly FIGMA: "figma";
|
|
64
63
|
};
|
|
65
|
-
export type TokenProviders =
|
|
66
|
-
(typeof TokenProviders)[keyof typeof TokenProviders];
|
|
64
|
+
export type TokenProviders = (typeof TokenProviders)[keyof typeof TokenProviders];
|
|
67
65
|
export declare const FixedPosition: {
|
|
68
66
|
readonly FIRST: "first";
|
|
69
67
|
};
|
|
@@ -73,31 +71,26 @@ export declare const FormButtonsPosition: {
|
|
|
73
71
|
readonly TOP: "top";
|
|
74
72
|
readonly TOP_AND_BOTTOM: "top_and_bottom";
|
|
75
73
|
};
|
|
76
|
-
export type FormButtonsPosition =
|
|
77
|
-
(typeof FormButtonsPosition)[keyof typeof FormButtonsPosition];
|
|
74
|
+
export type FormButtonsPosition = (typeof FormButtonsPosition)[keyof typeof FormButtonsPosition];
|
|
78
75
|
export declare const FormDataSourceType: {
|
|
79
76
|
readonly CUSTOM: "Custom";
|
|
80
77
|
readonly DATASTORE: "DataStore";
|
|
81
78
|
};
|
|
82
|
-
export type FormDataSourceType =
|
|
83
|
-
(typeof FormDataSourceType)[keyof typeof FormDataSourceType];
|
|
79
|
+
export type FormDataSourceType = (typeof FormDataSourceType)[keyof typeof FormDataSourceType];
|
|
84
80
|
export declare const StorageAccessLevel: {
|
|
85
81
|
readonly PRIVATE: "private";
|
|
86
82
|
readonly PROTECTED: "protected";
|
|
87
83
|
readonly PUBLIC: "public";
|
|
88
84
|
};
|
|
89
|
-
export type StorageAccessLevel =
|
|
90
|
-
(typeof StorageAccessLevel)[keyof typeof StorageAccessLevel];
|
|
85
|
+
export type StorageAccessLevel = (typeof StorageAccessLevel)[keyof typeof StorageAccessLevel];
|
|
91
86
|
export declare const FormActionType: {
|
|
92
87
|
readonly CREATE: "create";
|
|
93
88
|
readonly UPDATE: "update";
|
|
94
89
|
};
|
|
95
|
-
export type FormActionType =
|
|
96
|
-
(typeof FormActionType)[keyof typeof FormActionType];
|
|
90
|
+
export type FormActionType = (typeof FormActionType)[keyof typeof FormActionType];
|
|
97
91
|
export declare const LabelDecorator: {
|
|
98
92
|
readonly NONE: "none";
|
|
99
93
|
readonly OPTIONAL: "optional";
|
|
100
94
|
readonly REQUIRED: "required";
|
|
101
95
|
};
|
|
102
|
-
export type LabelDecorator =
|
|
103
|
-
(typeof LabelDecorator)[keyof typeof LabelDecorator];
|
|
96
|
+
export type LabelDecorator = (typeof LabelDecorator)[keyof typeof LabelDecorator];
|
|
@@ -3,49 +3,35 @@ import { AmplifyUIBuilderServiceException as __BaseException } from "./AmplifyUI
|
|
|
3
3
|
export declare class InternalServerException extends __BaseException {
|
|
4
4
|
readonly name: "InternalServerException";
|
|
5
5
|
readonly $fault: "server";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class InvalidParameterException extends __BaseException {
|
|
11
9
|
readonly name: "InvalidParameterException";
|
|
12
10
|
readonly $fault: "client";
|
|
13
|
-
constructor(
|
|
14
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
15
|
-
);
|
|
11
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
16
12
|
}
|
|
17
13
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
14
|
readonly name: "ResourceNotFoundException";
|
|
19
15
|
readonly $fault: "client";
|
|
20
|
-
constructor(
|
|
21
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
22
|
-
);
|
|
16
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
23
17
|
}
|
|
24
18
|
export declare class ThrottlingException extends __BaseException {
|
|
25
19
|
readonly name: "ThrottlingException";
|
|
26
20
|
readonly $fault: "client";
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
29
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
30
22
|
}
|
|
31
23
|
export declare class ResourceConflictException extends __BaseException {
|
|
32
24
|
readonly name: "ResourceConflictException";
|
|
33
25
|
readonly $fault: "client";
|
|
34
|
-
constructor(
|
|
35
|
-
opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
|
|
36
|
-
);
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
37
27
|
}
|
|
38
28
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
39
29
|
readonly name: "ServiceQuotaExceededException";
|
|
40
30
|
readonly $fault: "client";
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
43
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
44
32
|
}
|
|
45
33
|
export declare class UnauthorizedException extends __BaseException {
|
|
46
34
|
readonly name: "UnauthorizedException";
|
|
47
35
|
readonly $fault: "client";
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
50
|
-
);
|
|
36
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
51
37
|
}
|
|
@@ -603,9 +603,7 @@ export interface UpdateThemeResponse {
|
|
|
603
603
|
}
|
|
604
604
|
export interface ValueMappings {
|
|
605
605
|
values: ValueMapping[] | undefined;
|
|
606
|
-
bindingProperties?:
|
|
607
|
-
| Record<string, FormInputBindingPropertiesValue>
|
|
608
|
-
| undefined;
|
|
606
|
+
bindingProperties?: Record<string, FormInputBindingPropertiesValue> | undefined;
|
|
609
607
|
}
|
|
610
608
|
export interface ExportThemesResponse {
|
|
611
609
|
entities: Theme[] | undefined;
|
|
@@ -735,9 +733,7 @@ export interface Component {
|
|
|
735
733
|
children?: ComponentChild[] | undefined;
|
|
736
734
|
variants: ComponentVariant[] | undefined;
|
|
737
735
|
overrides: Record<string, Record<string, string>> | undefined;
|
|
738
|
-
bindingProperties:
|
|
739
|
-
| Record<string, ComponentBindingPropertiesValue>
|
|
740
|
-
| undefined;
|
|
736
|
+
bindingProperties: Record<string, ComponentBindingPropertiesValue> | undefined;
|
|
741
737
|
collectionProperties?: Record<string, ComponentDataConfiguration> | undefined;
|
|
742
738
|
createdAt: Date | undefined;
|
|
743
739
|
modifiedAt?: Date | undefined;
|
|
@@ -753,9 +749,7 @@ export interface CreateComponentData {
|
|
|
753
749
|
children?: ComponentChild[] | undefined;
|
|
754
750
|
variants: ComponentVariant[] | undefined;
|
|
755
751
|
overrides: Record<string, Record<string, string>> | undefined;
|
|
756
|
-
bindingProperties:
|
|
757
|
-
| Record<string, ComponentBindingPropertiesValue>
|
|
758
|
-
| undefined;
|
|
752
|
+
bindingProperties: Record<string, ComponentBindingPropertiesValue> | undefined;
|
|
759
753
|
collectionProperties?: Record<string, ComponentDataConfiguration> | undefined;
|
|
760
754
|
tags?: Record<string, string> | undefined;
|
|
761
755
|
events?: Record<string, ComponentEvent> | undefined;
|
|
@@ -770,9 +764,7 @@ export interface UpdateComponentData {
|
|
|
770
764
|
children?: ComponentChild[] | undefined;
|
|
771
765
|
variants?: ComponentVariant[] | undefined;
|
|
772
766
|
overrides?: Record<string, Record<string, string>> | undefined;
|
|
773
|
-
bindingProperties?:
|
|
774
|
-
| Record<string, ComponentBindingPropertiesValue>
|
|
775
|
-
| undefined;
|
|
767
|
+
bindingProperties?: Record<string, ComponentBindingPropertiesValue> | undefined;
|
|
776
768
|
collectionProperties?: Record<string, ComponentDataConfiguration> | undefined;
|
|
777
769
|
events?: Record<string, ComponentEvent> | undefined;
|
|
778
770
|
schemaVersion?: string | undefined;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ExportFormsCommandInput,
|
|
4
|
-
ExportFormsCommandOutput,
|
|
5
|
-
} from "../commands/ExportFormsCommand";
|
|
2
|
+
import { ExportFormsCommandInput, ExportFormsCommandOutput } from "../commands/ExportFormsCommand";
|
|
6
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateExportForms: (
|
|
8
5
|
config: AmplifyUIBuilderPaginationConfiguration,
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
|
|
3
|
-
export interface AmplifyUIBuilderPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface AmplifyUIBuilderPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: AmplifyUIBuilderClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListFormsCommandInput,
|
|
4
|
-
ListFormsCommandOutput,
|
|
5
|
-
} from "../commands/ListFormsCommand";
|
|
2
|
+
import { ListFormsCommandInput, ListFormsCommandOutput } from "../commands/ListFormsCommand";
|
|
6
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListForms: (
|
|
8
5
|
config: AmplifyUIBuilderPaginationConfiguration,
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListThemesCommandInput,
|
|
4
|
-
ListThemesCommandOutput,
|
|
5
|
-
} from "../commands/ListThemesCommand";
|
|
2
|
+
import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
|
|
6
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListThemes: (
|
|
8
5
|
config: AmplifyUIBuilderPaginationConfiguration,
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: AmplifyUIBuilderClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|