@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.
Files changed (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +256 -75
  3. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +214 -87
  4. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +749 -698
  24. package/dist-types/ts3.4/pagination/ExportComponentsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ExportThemesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  35. package/package.json +34 -34
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 { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand";
4
- import { CreateThemeCommandInput, CreateThemeCommandOutput } from "./commands/CreateThemeCommand";
5
- import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "./commands/DeleteComponentCommand";
6
- import { DeleteThemeCommandInput, DeleteThemeCommandOutput } from "./commands/DeleteThemeCommand";
7
- import { ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput } from "./commands/ExchangeCodeForTokenCommand";
8
- import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "./commands/ExportComponentsCommand";
9
- import { ExportThemesCommandInput, ExportThemesCommandOutput } from "./commands/ExportThemesCommand";
10
- import { GetComponentCommandInput, GetComponentCommandOutput } from "./commands/GetComponentCommand";
11
- import { GetThemeCommandInput, GetThemeCommandOutput } from "./commands/GetThemeCommand";
12
- import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
13
- import { ListThemesCommandInput, ListThemesCommandOutput } from "./commands/ListThemesCommand";
14
- import { RefreshTokenCommandInput, RefreshTokenCommandOutput } from "./commands/RefreshTokenCommand";
15
- import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./commands/UpdateComponentCommand";
16
- import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "./commands/UpdateThemeCommand";
17
-
18
- export declare class AmplifyUIBuilder extends AmplifyUIBuilderClient {
19
-
20
- createComponent(args: CreateComponentCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentCommandOutput>;
21
- createComponent(args: CreateComponentCommandInput, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
22
- createComponent(args: CreateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
23
-
24
- createTheme(args: CreateThemeCommandInput, options?: __HttpHandlerOptions): Promise<CreateThemeCommandOutput>;
25
- createTheme(args: CreateThemeCommandInput, cb: (err: any, data?: CreateThemeCommandOutput) => void): void;
26
- createTheme(args: CreateThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateThemeCommandOutput) => void): void;
27
-
28
- deleteComponent(args: DeleteComponentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteComponentCommandOutput>;
29
- deleteComponent(args: DeleteComponentCommandInput, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
30
- deleteComponent(args: DeleteComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
31
-
32
- deleteTheme(args: DeleteThemeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteThemeCommandOutput>;
33
- deleteTheme(args: DeleteThemeCommandInput, cb: (err: any, data?: DeleteThemeCommandOutput) => void): void;
34
- deleteTheme(args: DeleteThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteThemeCommandOutput) => void): void;
35
-
36
- exchangeCodeForToken(args: ExchangeCodeForTokenCommandInput, options?: __HttpHandlerOptions): Promise<ExchangeCodeForTokenCommandOutput>;
37
- exchangeCodeForToken(args: ExchangeCodeForTokenCommandInput, cb: (err: any, data?: ExchangeCodeForTokenCommandOutput) => void): void;
38
- exchangeCodeForToken(args: ExchangeCodeForTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExchangeCodeForTokenCommandOutput) => void): void;
39
-
40
- exportComponents(args: ExportComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ExportComponentsCommandOutput>;
41
- exportComponents(args: ExportComponentsCommandInput, cb: (err: any, data?: ExportComponentsCommandOutput) => void): void;
42
- exportComponents(args: ExportComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportComponentsCommandOutput) => void): void;
43
-
44
- exportThemes(args: ExportThemesCommandInput, options?: __HttpHandlerOptions): Promise<ExportThemesCommandOutput>;
45
- exportThemes(args: ExportThemesCommandInput, cb: (err: any, data?: ExportThemesCommandOutput) => void): void;
46
- exportThemes(args: ExportThemesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportThemesCommandOutput) => void): void;
47
-
48
- getComponent(args: GetComponentCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentCommandOutput>;
49
- getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
50
- getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
51
-
52
- getTheme(args: GetThemeCommandInput, options?: __HttpHandlerOptions): Promise<GetThemeCommandOutput>;
53
- getTheme(args: GetThemeCommandInput, cb: (err: any, data?: GetThemeCommandOutput) => void): void;
54
- getTheme(args: GetThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThemeCommandOutput) => void): void;
55
-
56
- listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
57
- listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
58
- listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
59
-
60
- listThemes(args: ListThemesCommandInput, options?: __HttpHandlerOptions): Promise<ListThemesCommandOutput>;
61
- listThemes(args: ListThemesCommandInput, cb: (err: any, data?: ListThemesCommandOutput) => void): void;
62
- listThemes(args: ListThemesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListThemesCommandOutput) => void): void;
63
-
64
- refreshToken(args: RefreshTokenCommandInput, options?: __HttpHandlerOptions): Promise<RefreshTokenCommandOutput>;
65
- refreshToken(args: RefreshTokenCommandInput, cb: (err: any, data?: RefreshTokenCommandOutput) => void): void;
66
- refreshToken(args: RefreshTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RefreshTokenCommandOutput) => void): void;
67
-
68
- updateComponent(args: UpdateComponentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentCommandOutput>;
69
- updateComponent(args: UpdateComponentCommandInput, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
70
- updateComponent(args: UpdateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
71
-
72
- updateTheme(args: UpdateThemeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateThemeCommandOutput>;
73
- updateTheme(args: UpdateThemeCommandInput, cb: (err: any, data?: UpdateThemeCommandOutput) => void): void;
74
- updateTheme(args: UpdateThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateThemeCommandOutput) => void): void;
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 { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand";
10
- import { CreateThemeCommandInput, CreateThemeCommandOutput } from "./commands/CreateThemeCommand";
11
- import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "./commands/DeleteComponentCommand";
12
- import { DeleteThemeCommandInput, DeleteThemeCommandOutput } from "./commands/DeleteThemeCommand";
13
- import { ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput } from "./commands/ExchangeCodeForTokenCommand";
14
- import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "./commands/ExportComponentsCommand";
15
- import { ExportThemesCommandInput, ExportThemesCommandOutput } from "./commands/ExportThemesCommand";
16
- import { GetComponentCommandInput, GetComponentCommandOutput } from "./commands/GetComponentCommand";
17
- import { GetThemeCommandInput, GetThemeCommandOutput } from "./commands/GetThemeCommand";
18
- import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
19
- import { ListThemesCommandInput, ListThemesCommandOutput } from "./commands/ListThemesCommand";
20
- import { RefreshTokenCommandInput, RefreshTokenCommandOutput } from "./commands/RefreshTokenCommand";
21
- import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./commands/UpdateComponentCommand";
22
- import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "./commands/UpdateThemeCommand";
23
- export declare type ServiceInputTypes = CreateComponentCommandInput | CreateThemeCommandInput | DeleteComponentCommandInput | DeleteThemeCommandInput | ExchangeCodeForTokenCommandInput | ExportComponentsCommandInput | ExportThemesCommandInput | GetComponentCommandInput | GetThemeCommandInput | ListComponentsCommandInput | ListThemesCommandInput | RefreshTokenCommandInput | UpdateComponentCommandInput | UpdateThemeCommandInput;
24
- export declare type ServiceOutputTypes = CreateComponentCommandOutput | CreateThemeCommandOutput | DeleteComponentCommandOutput | DeleteThemeCommandOutput | ExchangeCodeForTokenCommandOutput | ExportComponentsCommandOutput | ExportThemesCommandOutput | GetComponentCommandOutput | GetThemeCommandOutput | ListComponentsCommandOutput | ListThemesCommandOutput | RefreshTokenCommandOutput | UpdateComponentCommandOutput | UpdateThemeCommandOutput;
25
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
26
-
27
- requestHandler?: __HttpHandler;
28
-
29
- sha256?: __HashConstructor;
30
-
31
- urlParser?: __UrlParser;
32
-
33
- bodyLengthChecker?: __BodyLengthCalculator;
34
-
35
- streamCollector?: __StreamCollector;
36
-
37
- base64Decoder?: __Decoder;
38
-
39
- base64Encoder?: __Encoder;
40
-
41
- utf8Decoder?: __Decoder;
42
-
43
- utf8Encoder?: __Encoder;
44
-
45
- runtime?: string;
46
-
47
- disableHostPrefix?: boolean;
48
-
49
- maxAttempts?: number | __Provider<number>;
50
-
51
- retryMode?: string | __Provider<string>;
52
-
53
- logger?: __Logger;
54
-
55
- useDualstackEndpoint?: boolean | __Provider<boolean>;
56
-
57
- useFipsEndpoint?: boolean | __Provider<boolean>;
58
-
59
- serviceId?: string;
60
-
61
- region?: string | __Provider<string>;
62
-
63
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
64
-
65
- regionInfoProvider?: RegionInfoProvider;
66
-
67
- defaultUserAgentProvider?: Provider<__UserAgent>;
68
-
69
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
70
- }
71
- declare type AmplifyUIBuilderClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
72
-
73
- export interface AmplifyUIBuilderClientConfig extends AmplifyUIBuilderClientConfigType {
74
- }
75
- declare type AmplifyUIBuilderClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
76
-
77
- export interface AmplifyUIBuilderClientResolvedConfig extends AmplifyUIBuilderClientResolvedConfigType {
78
- }
79
-
80
- export declare class AmplifyUIBuilderClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AmplifyUIBuilderClientResolvedConfig> {
81
-
82
- readonly config: AmplifyUIBuilderClientResolvedConfig;
83
- constructor(configuration: AmplifyUIBuilderClientConfig);
84
-
85
- destroy(): void;
86
- }
87
- export {};
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 {};