@aws-sdk/client-amplifyuibuilder 3.168.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 +16 -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
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
|
|
@@ -1,75 +1,256 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { AmplifyUIBuilderClient } from "./AmplifyUIBuilderClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AmplifyUIBuilderClient } from "./AmplifyUIBuilderClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateComponentCommandInput,
|
|
5
|
+
CreateComponentCommandOutput,
|
|
6
|
+
} from "./commands/CreateComponentCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateThemeCommandInput,
|
|
9
|
+
CreateThemeCommandOutput,
|
|
10
|
+
} from "./commands/CreateThemeCommand";
|
|
11
|
+
import {
|
|
12
|
+
DeleteComponentCommandInput,
|
|
13
|
+
DeleteComponentCommandOutput,
|
|
14
|
+
} from "./commands/DeleteComponentCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteThemeCommandInput,
|
|
17
|
+
DeleteThemeCommandOutput,
|
|
18
|
+
} from "./commands/DeleteThemeCommand";
|
|
19
|
+
import {
|
|
20
|
+
ExchangeCodeForTokenCommandInput,
|
|
21
|
+
ExchangeCodeForTokenCommandOutput,
|
|
22
|
+
} from "./commands/ExchangeCodeForTokenCommand";
|
|
23
|
+
import {
|
|
24
|
+
ExportComponentsCommandInput,
|
|
25
|
+
ExportComponentsCommandOutput,
|
|
26
|
+
} from "./commands/ExportComponentsCommand";
|
|
27
|
+
import {
|
|
28
|
+
ExportThemesCommandInput,
|
|
29
|
+
ExportThemesCommandOutput,
|
|
30
|
+
} from "./commands/ExportThemesCommand";
|
|
31
|
+
import {
|
|
32
|
+
GetComponentCommandInput,
|
|
33
|
+
GetComponentCommandOutput,
|
|
34
|
+
} from "./commands/GetComponentCommand";
|
|
35
|
+
import {
|
|
36
|
+
GetThemeCommandInput,
|
|
37
|
+
GetThemeCommandOutput,
|
|
38
|
+
} from "./commands/GetThemeCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListComponentsCommandInput,
|
|
41
|
+
ListComponentsCommandOutput,
|
|
42
|
+
} from "./commands/ListComponentsCommand";
|
|
43
|
+
import {
|
|
44
|
+
ListThemesCommandInput,
|
|
45
|
+
ListThemesCommandOutput,
|
|
46
|
+
} from "./commands/ListThemesCommand";
|
|
47
|
+
import {
|
|
48
|
+
RefreshTokenCommandInput,
|
|
49
|
+
RefreshTokenCommandOutput,
|
|
50
|
+
} from "./commands/RefreshTokenCommand";
|
|
51
|
+
import {
|
|
52
|
+
UpdateComponentCommandInput,
|
|
53
|
+
UpdateComponentCommandOutput,
|
|
54
|
+
} from "./commands/UpdateComponentCommand";
|
|
55
|
+
import {
|
|
56
|
+
UpdateThemeCommandInput,
|
|
57
|
+
UpdateThemeCommandOutput,
|
|
58
|
+
} from "./commands/UpdateThemeCommand";
|
|
59
|
+
|
|
60
|
+
export declare class AmplifyUIBuilder extends AmplifyUIBuilderClient {
|
|
61
|
+
createComponent(
|
|
62
|
+
args: CreateComponentCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<CreateComponentCommandOutput>;
|
|
65
|
+
createComponent(
|
|
66
|
+
args: CreateComponentCommandInput,
|
|
67
|
+
cb: (err: any, data?: CreateComponentCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
createComponent(
|
|
70
|
+
args: CreateComponentCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: CreateComponentCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
|
|
75
|
+
createTheme(
|
|
76
|
+
args: CreateThemeCommandInput,
|
|
77
|
+
options?: __HttpHandlerOptions
|
|
78
|
+
): Promise<CreateThemeCommandOutput>;
|
|
79
|
+
createTheme(
|
|
80
|
+
args: CreateThemeCommandInput,
|
|
81
|
+
cb: (err: any, data?: CreateThemeCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
createTheme(
|
|
84
|
+
args: CreateThemeCommandInput,
|
|
85
|
+
options: __HttpHandlerOptions,
|
|
86
|
+
cb: (err: any, data?: CreateThemeCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
|
|
89
|
+
deleteComponent(
|
|
90
|
+
args: DeleteComponentCommandInput,
|
|
91
|
+
options?: __HttpHandlerOptions
|
|
92
|
+
): Promise<DeleteComponentCommandOutput>;
|
|
93
|
+
deleteComponent(
|
|
94
|
+
args: DeleteComponentCommandInput,
|
|
95
|
+
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
96
|
+
): void;
|
|
97
|
+
deleteComponent(
|
|
98
|
+
args: DeleteComponentCommandInput,
|
|
99
|
+
options: __HttpHandlerOptions,
|
|
100
|
+
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
|
|
103
|
+
deleteTheme(
|
|
104
|
+
args: DeleteThemeCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<DeleteThemeCommandOutput>;
|
|
107
|
+
deleteTheme(
|
|
108
|
+
args: DeleteThemeCommandInput,
|
|
109
|
+
cb: (err: any, data?: DeleteThemeCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
deleteTheme(
|
|
112
|
+
args: DeleteThemeCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: DeleteThemeCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
|
|
117
|
+
exchangeCodeForToken(
|
|
118
|
+
args: ExchangeCodeForTokenCommandInput,
|
|
119
|
+
options?: __HttpHandlerOptions
|
|
120
|
+
): Promise<ExchangeCodeForTokenCommandOutput>;
|
|
121
|
+
exchangeCodeForToken(
|
|
122
|
+
args: ExchangeCodeForTokenCommandInput,
|
|
123
|
+
cb: (err: any, data?: ExchangeCodeForTokenCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
exchangeCodeForToken(
|
|
126
|
+
args: ExchangeCodeForTokenCommandInput,
|
|
127
|
+
options: __HttpHandlerOptions,
|
|
128
|
+
cb: (err: any, data?: ExchangeCodeForTokenCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
|
|
131
|
+
exportComponents(
|
|
132
|
+
args: ExportComponentsCommandInput,
|
|
133
|
+
options?: __HttpHandlerOptions
|
|
134
|
+
): Promise<ExportComponentsCommandOutput>;
|
|
135
|
+
exportComponents(
|
|
136
|
+
args: ExportComponentsCommandInput,
|
|
137
|
+
cb: (err: any, data?: ExportComponentsCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
exportComponents(
|
|
140
|
+
args: ExportComponentsCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (err: any, data?: ExportComponentsCommandOutput) => void
|
|
143
|
+
): void;
|
|
144
|
+
|
|
145
|
+
exportThemes(
|
|
146
|
+
args: ExportThemesCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<ExportThemesCommandOutput>;
|
|
149
|
+
exportThemes(
|
|
150
|
+
args: ExportThemesCommandInput,
|
|
151
|
+
cb: (err: any, data?: ExportThemesCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
exportThemes(
|
|
154
|
+
args: ExportThemesCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: ExportThemesCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
|
|
159
|
+
getComponent(
|
|
160
|
+
args: GetComponentCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<GetComponentCommandOutput>;
|
|
163
|
+
getComponent(
|
|
164
|
+
args: GetComponentCommandInput,
|
|
165
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
getComponent(
|
|
168
|
+
args: GetComponentCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
|
|
173
|
+
getTheme(
|
|
174
|
+
args: GetThemeCommandInput,
|
|
175
|
+
options?: __HttpHandlerOptions
|
|
176
|
+
): Promise<GetThemeCommandOutput>;
|
|
177
|
+
getTheme(
|
|
178
|
+
args: GetThemeCommandInput,
|
|
179
|
+
cb: (err: any, data?: GetThemeCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
getTheme(
|
|
182
|
+
args: GetThemeCommandInput,
|
|
183
|
+
options: __HttpHandlerOptions,
|
|
184
|
+
cb: (err: any, data?: GetThemeCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
|
|
187
|
+
listComponents(
|
|
188
|
+
args: ListComponentsCommandInput,
|
|
189
|
+
options?: __HttpHandlerOptions
|
|
190
|
+
): Promise<ListComponentsCommandOutput>;
|
|
191
|
+
listComponents(
|
|
192
|
+
args: ListComponentsCommandInput,
|
|
193
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
194
|
+
): void;
|
|
195
|
+
listComponents(
|
|
196
|
+
args: ListComponentsCommandInput,
|
|
197
|
+
options: __HttpHandlerOptions,
|
|
198
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
|
|
201
|
+
listThemes(
|
|
202
|
+
args: ListThemesCommandInput,
|
|
203
|
+
options?: __HttpHandlerOptions
|
|
204
|
+
): Promise<ListThemesCommandOutput>;
|
|
205
|
+
listThemes(
|
|
206
|
+
args: ListThemesCommandInput,
|
|
207
|
+
cb: (err: any, data?: ListThemesCommandOutput) => void
|
|
208
|
+
): void;
|
|
209
|
+
listThemes(
|
|
210
|
+
args: ListThemesCommandInput,
|
|
211
|
+
options: __HttpHandlerOptions,
|
|
212
|
+
cb: (err: any, data?: ListThemesCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
|
|
215
|
+
refreshToken(
|
|
216
|
+
args: RefreshTokenCommandInput,
|
|
217
|
+
options?: __HttpHandlerOptions
|
|
218
|
+
): Promise<RefreshTokenCommandOutput>;
|
|
219
|
+
refreshToken(
|
|
220
|
+
args: RefreshTokenCommandInput,
|
|
221
|
+
cb: (err: any, data?: RefreshTokenCommandOutput) => void
|
|
222
|
+
): void;
|
|
223
|
+
refreshToken(
|
|
224
|
+
args: RefreshTokenCommandInput,
|
|
225
|
+
options: __HttpHandlerOptions,
|
|
226
|
+
cb: (err: any, data?: RefreshTokenCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
|
|
229
|
+
updateComponent(
|
|
230
|
+
args: UpdateComponentCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<UpdateComponentCommandOutput>;
|
|
233
|
+
updateComponent(
|
|
234
|
+
args: UpdateComponentCommandInput,
|
|
235
|
+
cb: (err: any, data?: UpdateComponentCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
updateComponent(
|
|
238
|
+
args: UpdateComponentCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: UpdateComponentCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
|
|
243
|
+
updateTheme(
|
|
244
|
+
args: UpdateThemeCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<UpdateThemeCommandOutput>;
|
|
247
|
+
updateTheme(
|
|
248
|
+
args: UpdateThemeCommandInput,
|
|
249
|
+
cb: (err: any, data?: UpdateThemeCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
updateTheme(
|
|
252
|
+
args: UpdateThemeCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: UpdateThemeCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
}
|
|
@@ -1,87 +1,214 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateComponentCommandInput,
|
|
47
|
+
CreateComponentCommandOutput,
|
|
48
|
+
} from "./commands/CreateComponentCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateThemeCommandInput,
|
|
51
|
+
CreateThemeCommandOutput,
|
|
52
|
+
} from "./commands/CreateThemeCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteComponentCommandInput,
|
|
55
|
+
DeleteComponentCommandOutput,
|
|
56
|
+
} from "./commands/DeleteComponentCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteThemeCommandInput,
|
|
59
|
+
DeleteThemeCommandOutput,
|
|
60
|
+
} from "./commands/DeleteThemeCommand";
|
|
61
|
+
import {
|
|
62
|
+
ExchangeCodeForTokenCommandInput,
|
|
63
|
+
ExchangeCodeForTokenCommandOutput,
|
|
64
|
+
} from "./commands/ExchangeCodeForTokenCommand";
|
|
65
|
+
import {
|
|
66
|
+
ExportComponentsCommandInput,
|
|
67
|
+
ExportComponentsCommandOutput,
|
|
68
|
+
} from "./commands/ExportComponentsCommand";
|
|
69
|
+
import {
|
|
70
|
+
ExportThemesCommandInput,
|
|
71
|
+
ExportThemesCommandOutput,
|
|
72
|
+
} from "./commands/ExportThemesCommand";
|
|
73
|
+
import {
|
|
74
|
+
GetComponentCommandInput,
|
|
75
|
+
GetComponentCommandOutput,
|
|
76
|
+
} from "./commands/GetComponentCommand";
|
|
77
|
+
import {
|
|
78
|
+
GetThemeCommandInput,
|
|
79
|
+
GetThemeCommandOutput,
|
|
80
|
+
} from "./commands/GetThemeCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListComponentsCommandInput,
|
|
83
|
+
ListComponentsCommandOutput,
|
|
84
|
+
} from "./commands/ListComponentsCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListThemesCommandInput,
|
|
87
|
+
ListThemesCommandOutput,
|
|
88
|
+
} from "./commands/ListThemesCommand";
|
|
89
|
+
import {
|
|
90
|
+
RefreshTokenCommandInput,
|
|
91
|
+
RefreshTokenCommandOutput,
|
|
92
|
+
} from "./commands/RefreshTokenCommand";
|
|
93
|
+
import {
|
|
94
|
+
UpdateComponentCommandInput,
|
|
95
|
+
UpdateComponentCommandOutput,
|
|
96
|
+
} from "./commands/UpdateComponentCommand";
|
|
97
|
+
import {
|
|
98
|
+
UpdateThemeCommandInput,
|
|
99
|
+
UpdateThemeCommandOutput,
|
|
100
|
+
} from "./commands/UpdateThemeCommand";
|
|
101
|
+
export declare type ServiceInputTypes =
|
|
102
|
+
| CreateComponentCommandInput
|
|
103
|
+
| CreateThemeCommandInput
|
|
104
|
+
| DeleteComponentCommandInput
|
|
105
|
+
| DeleteThemeCommandInput
|
|
106
|
+
| ExchangeCodeForTokenCommandInput
|
|
107
|
+
| ExportComponentsCommandInput
|
|
108
|
+
| ExportThemesCommandInput
|
|
109
|
+
| GetComponentCommandInput
|
|
110
|
+
| GetThemeCommandInput
|
|
111
|
+
| ListComponentsCommandInput
|
|
112
|
+
| ListThemesCommandInput
|
|
113
|
+
| RefreshTokenCommandInput
|
|
114
|
+
| UpdateComponentCommandInput
|
|
115
|
+
| UpdateThemeCommandInput;
|
|
116
|
+
export declare type ServiceOutputTypes =
|
|
117
|
+
| CreateComponentCommandOutput
|
|
118
|
+
| CreateThemeCommandOutput
|
|
119
|
+
| DeleteComponentCommandOutput
|
|
120
|
+
| DeleteThemeCommandOutput
|
|
121
|
+
| ExchangeCodeForTokenCommandOutput
|
|
122
|
+
| ExportComponentsCommandOutput
|
|
123
|
+
| ExportThemesCommandOutput
|
|
124
|
+
| GetComponentCommandOutput
|
|
125
|
+
| GetThemeCommandOutput
|
|
126
|
+
| ListComponentsCommandOutput
|
|
127
|
+
| ListThemesCommandOutput
|
|
128
|
+
| RefreshTokenCommandOutput
|
|
129
|
+
| UpdateComponentCommandOutput
|
|
130
|
+
| UpdateThemeCommandOutput;
|
|
131
|
+
export interface ClientDefaults
|
|
132
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
133
|
+
requestHandler?: __HttpHandler;
|
|
134
|
+
|
|
135
|
+
sha256?: __HashConstructor;
|
|
136
|
+
|
|
137
|
+
urlParser?: __UrlParser;
|
|
138
|
+
|
|
139
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
140
|
+
|
|
141
|
+
streamCollector?: __StreamCollector;
|
|
142
|
+
|
|
143
|
+
base64Decoder?: __Decoder;
|
|
144
|
+
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
|
|
147
|
+
utf8Decoder?: __Decoder;
|
|
148
|
+
|
|
149
|
+
utf8Encoder?: __Encoder;
|
|
150
|
+
|
|
151
|
+
runtime?: string;
|
|
152
|
+
|
|
153
|
+
disableHostPrefix?: boolean;
|
|
154
|
+
|
|
155
|
+
maxAttempts?: number | __Provider<number>;
|
|
156
|
+
|
|
157
|
+
retryMode?: string | __Provider<string>;
|
|
158
|
+
|
|
159
|
+
logger?: __Logger;
|
|
160
|
+
|
|
161
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
162
|
+
|
|
163
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
164
|
+
|
|
165
|
+
serviceId?: string;
|
|
166
|
+
|
|
167
|
+
region?: string | __Provider<string>;
|
|
168
|
+
|
|
169
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
170
|
+
|
|
171
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
172
|
+
|
|
173
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
174
|
+
|
|
175
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
176
|
+
}
|
|
177
|
+
declare type AmplifyUIBuilderClientConfigType = Partial<
|
|
178
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
179
|
+
> &
|
|
180
|
+
ClientDefaults &
|
|
181
|
+
RegionInputConfig &
|
|
182
|
+
EndpointsInputConfig &
|
|
183
|
+
RetryInputConfig &
|
|
184
|
+
HostHeaderInputConfig &
|
|
185
|
+
AwsAuthInputConfig &
|
|
186
|
+
UserAgentInputConfig;
|
|
187
|
+
|
|
188
|
+
export interface AmplifyUIBuilderClientConfig
|
|
189
|
+
extends AmplifyUIBuilderClientConfigType {}
|
|
190
|
+
declare type AmplifyUIBuilderClientResolvedConfigType =
|
|
191
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
192
|
+
Required<ClientDefaults> &
|
|
193
|
+
RegionResolvedConfig &
|
|
194
|
+
EndpointsResolvedConfig &
|
|
195
|
+
RetryResolvedConfig &
|
|
196
|
+
HostHeaderResolvedConfig &
|
|
197
|
+
AwsAuthResolvedConfig &
|
|
198
|
+
UserAgentResolvedConfig;
|
|
199
|
+
|
|
200
|
+
export interface AmplifyUIBuilderClientResolvedConfig
|
|
201
|
+
extends AmplifyUIBuilderClientResolvedConfigType {}
|
|
202
|
+
|
|
203
|
+
export declare class AmplifyUIBuilderClient extends __Client<
|
|
204
|
+
__HttpHandlerOptions,
|
|
205
|
+
ServiceInputTypes,
|
|
206
|
+
ServiceOutputTypes,
|
|
207
|
+
AmplifyUIBuilderClientResolvedConfig
|
|
208
|
+
> {
|
|
209
|
+
readonly config: AmplifyUIBuilderClientResolvedConfig;
|
|
210
|
+
constructor(configuration: AmplifyUIBuilderClientConfig);
|
|
211
|
+
|
|
212
|
+
destroy(): void;
|
|
213
|
+
}
|
|
214
|
+
export {};
|