@aws-sdk/client-amplifyuibuilder 3.131.0 → 3.137.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 +11 -0
- package/dist-cjs/commands/CreateComponentCommand.js +2 -2
- package/dist-cjs/commands/CreateThemeCommand.js +2 -2
- package/dist-cjs/commands/DeleteComponentCommand.js +1 -1
- package/dist-cjs/commands/DeleteThemeCommand.js +1 -1
- package/dist-cjs/commands/ExchangeCodeForTokenCommand.js +2 -2
- package/dist-cjs/commands/ExportComponentsCommand.js +2 -2
- package/dist-cjs/commands/ExportThemesCommand.js +2 -2
- package/dist-cjs/commands/GetComponentCommand.js +2 -2
- package/dist-cjs/commands/GetThemeCommand.js +2 -2
- package/dist-cjs/commands/ListComponentsCommand.js +2 -2
- package/dist-cjs/commands/ListThemesCommand.js +2 -2
- package/dist-cjs/commands/RefreshTokenCommand.js +2 -2
- package/dist-cjs/commands/UpdateComponentCommand.js +2 -2
- package/dist-cjs/commands/UpdateThemeCommand.js +2 -2
- package/dist-cjs/models/models_0.js +217 -321
- package/dist-es/commands/CreateComponentCommand.js +3 -3
- package/dist-es/commands/CreateThemeCommand.js +3 -3
- package/dist-es/commands/DeleteComponentCommand.js +2 -2
- package/dist-es/commands/DeleteThemeCommand.js +2 -2
- package/dist-es/commands/ExchangeCodeForTokenCommand.js +3 -3
- package/dist-es/commands/ExportComponentsCommand.js +3 -3
- package/dist-es/commands/ExportThemesCommand.js +3 -3
- package/dist-es/commands/GetComponentCommand.js +3 -3
- package/dist-es/commands/GetThemeCommand.js +3 -3
- package/dist-es/commands/ListComponentsCommand.js +3 -3
- package/dist-es/commands/ListThemesCommand.js +3 -3
- package/dist-es/commands/RefreshTokenCommand.js +3 -3
- package/dist-es/commands/UpdateComponentCommand.js +3 -3
- package/dist-es/commands/UpdateThemeCommand.js +3 -3
- package/dist-es/models/models_0.js +52 -208
- package/dist-types/models/models_0.d.ts +208 -312
- package/dist-types/ts3.4/models/models_0.d.ts +104 -208
- package/package.json +6 -6
|
@@ -14,12 +14,6 @@ export interface ComponentPropertyBindingProperties {
|
|
|
14
14
|
*/
|
|
15
15
|
field?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace ComponentPropertyBindingProperties {
|
|
18
|
-
/**
|
|
19
|
-
* @internal
|
|
20
|
-
*/
|
|
21
|
-
const filterSensitiveLog: (obj: ComponentPropertyBindingProperties) => any;
|
|
22
|
-
}
|
|
23
17
|
/**
|
|
24
18
|
* <p>Describes how to bind a component property to form data.</p>
|
|
25
19
|
*/
|
|
@@ -33,12 +27,6 @@ export interface FormBindingElement {
|
|
|
33
27
|
*/
|
|
34
28
|
property: string | undefined;
|
|
35
29
|
}
|
|
36
|
-
export declare namespace FormBindingElement {
|
|
37
|
-
/**
|
|
38
|
-
* @internal
|
|
39
|
-
*/
|
|
40
|
-
const filterSensitiveLog: (obj: FormBindingElement) => any;
|
|
41
|
-
}
|
|
42
30
|
export declare type SortDirection = "ASC" | "DESC";
|
|
43
31
|
/**
|
|
44
32
|
* <p>Describes how to sort the data that you bind to a component.</p>
|
|
@@ -53,12 +41,6 @@ export interface SortProperty {
|
|
|
53
41
|
*/
|
|
54
42
|
direction: SortDirection | string | undefined;
|
|
55
43
|
}
|
|
56
|
-
export declare namespace SortProperty {
|
|
57
|
-
/**
|
|
58
|
-
* @internal
|
|
59
|
-
*/
|
|
60
|
-
const filterSensitiveLog: (obj: SortProperty) => any;
|
|
61
|
-
}
|
|
62
44
|
/**
|
|
63
45
|
* <p>Describes the style configuration of a unique variation of a main component.</p>
|
|
64
46
|
*/
|
|
@@ -75,12 +57,6 @@ export interface ComponentVariant {
|
|
|
75
57
|
*/
|
|
76
58
|
overrides?: Record<string, Record<string, string>>;
|
|
77
59
|
}
|
|
78
|
-
export declare namespace ComponentVariant {
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
const filterSensitiveLog: (obj: ComponentVariant) => any;
|
|
83
|
-
}
|
|
84
60
|
/**
|
|
85
61
|
* <p>An internal error has occurred. Please retry your request.</p>
|
|
86
62
|
*/
|
|
@@ -142,12 +118,6 @@ export interface DeleteComponentRequest {
|
|
|
142
118
|
*/
|
|
143
119
|
id: string | undefined;
|
|
144
120
|
}
|
|
145
|
-
export declare namespace DeleteComponentRequest {
|
|
146
|
-
/**
|
|
147
|
-
* @internal
|
|
148
|
-
*/
|
|
149
|
-
const filterSensitiveLog: (obj: DeleteComponentRequest) => any;
|
|
150
|
-
}
|
|
151
121
|
/**
|
|
152
122
|
* <p>The requested resource does not exist, or access was denied.</p>
|
|
153
123
|
*/
|
|
@@ -174,12 +144,6 @@ export interface ExportComponentsRequest {
|
|
|
174
144
|
*/
|
|
175
145
|
nextToken?: string;
|
|
176
146
|
}
|
|
177
|
-
export declare namespace ExportComponentsRequest {
|
|
178
|
-
/**
|
|
179
|
-
* @internal
|
|
180
|
-
*/
|
|
181
|
-
const filterSensitiveLog: (obj: ExportComponentsRequest) => any;
|
|
182
|
-
}
|
|
183
147
|
export interface GetComponentRequest {
|
|
184
148
|
/**
|
|
185
149
|
* <p>The unique ID of the Amplify app.</p>
|
|
@@ -194,12 +158,6 @@ export interface GetComponentRequest {
|
|
|
194
158
|
*/
|
|
195
159
|
id: string | undefined;
|
|
196
160
|
}
|
|
197
|
-
export declare namespace GetComponentRequest {
|
|
198
|
-
/**
|
|
199
|
-
* @internal
|
|
200
|
-
*/
|
|
201
|
-
const filterSensitiveLog: (obj: GetComponentRequest) => any;
|
|
202
|
-
}
|
|
203
161
|
export interface ListComponentsRequest {
|
|
204
162
|
/**
|
|
205
163
|
* <p>The unique ID for the Amplify app.</p>
|
|
@@ -219,12 +177,6 @@ export interface ListComponentsRequest {
|
|
|
219
177
|
*/
|
|
220
178
|
maxResults?: number;
|
|
221
179
|
}
|
|
222
|
-
export declare namespace ListComponentsRequest {
|
|
223
|
-
/**
|
|
224
|
-
* @internal
|
|
225
|
-
*/
|
|
226
|
-
const filterSensitiveLog: (obj: ListComponentsRequest) => any;
|
|
227
|
-
}
|
|
228
180
|
/**
|
|
229
181
|
* <p>Contains a summary of a component. This is a read-only data type that is returned by
|
|
230
182
|
* <code>ListComponents</code>.</p>
|
|
@@ -252,12 +204,6 @@ export interface ComponentSummary {
|
|
|
252
204
|
*/
|
|
253
205
|
componentType: string | undefined;
|
|
254
206
|
}
|
|
255
|
-
export declare namespace ComponentSummary {
|
|
256
|
-
/**
|
|
257
|
-
* @internal
|
|
258
|
-
*/
|
|
259
|
-
const filterSensitiveLog: (obj: ComponentSummary) => any;
|
|
260
|
-
}
|
|
261
207
|
export interface ListComponentsResponse {
|
|
262
208
|
/**
|
|
263
209
|
* <p>The list of components for the Amplify app.</p>
|
|
@@ -268,12 +214,6 @@ export interface ListComponentsResponse {
|
|
|
268
214
|
*/
|
|
269
215
|
nextToken?: string;
|
|
270
216
|
}
|
|
271
|
-
export declare namespace ListComponentsResponse {
|
|
272
|
-
/**
|
|
273
|
-
* @internal
|
|
274
|
-
*/
|
|
275
|
-
const filterSensitiveLog: (obj: ListComponentsResponse) => any;
|
|
276
|
-
}
|
|
277
217
|
export declare enum TokenProviders {
|
|
278
218
|
/**
|
|
279
219
|
* The figma token provider.
|
|
@@ -293,12 +233,6 @@ export interface ExchangeCodeForTokenRequestBody {
|
|
|
293
233
|
*/
|
|
294
234
|
redirectUri: string | undefined;
|
|
295
235
|
}
|
|
296
|
-
export declare namespace ExchangeCodeForTokenRequestBody {
|
|
297
|
-
/**
|
|
298
|
-
* @internal
|
|
299
|
-
*/
|
|
300
|
-
const filterSensitiveLog: (obj: ExchangeCodeForTokenRequestBody) => any;
|
|
301
|
-
}
|
|
302
236
|
export interface ExchangeCodeForTokenRequest {
|
|
303
237
|
/**
|
|
304
238
|
* <p>The third-party provider for the token. The only valid value is <code>figma</code>.</p>
|
|
@@ -309,12 +243,6 @@ export interface ExchangeCodeForTokenRequest {
|
|
|
309
243
|
*/
|
|
310
244
|
request: ExchangeCodeForTokenRequestBody | undefined;
|
|
311
245
|
}
|
|
312
|
-
export declare namespace ExchangeCodeForTokenRequest {
|
|
313
|
-
/**
|
|
314
|
-
* @internal
|
|
315
|
-
*/
|
|
316
|
-
const filterSensitiveLog: (obj: ExchangeCodeForTokenRequest) => any;
|
|
317
|
-
}
|
|
318
246
|
export interface ExchangeCodeForTokenResponse {
|
|
319
247
|
/**
|
|
320
248
|
* <p>The access token.</p>
|
|
@@ -330,12 +258,6 @@ export interface ExchangeCodeForTokenResponse {
|
|
|
330
258
|
*/
|
|
331
259
|
refreshToken: string | undefined;
|
|
332
260
|
}
|
|
333
|
-
export declare namespace ExchangeCodeForTokenResponse {
|
|
334
|
-
/**
|
|
335
|
-
* @internal
|
|
336
|
-
*/
|
|
337
|
-
const filterSensitiveLog: (obj: ExchangeCodeForTokenResponse) => any;
|
|
338
|
-
}
|
|
339
261
|
/**
|
|
340
262
|
* <p>Describes a refresh token.</p>
|
|
341
263
|
*/
|
|
@@ -346,12 +268,6 @@ export interface RefreshTokenRequestBody {
|
|
|
346
268
|
*/
|
|
347
269
|
token: string | undefined;
|
|
348
270
|
}
|
|
349
|
-
export declare namespace RefreshTokenRequestBody {
|
|
350
|
-
/**
|
|
351
|
-
* @internal
|
|
352
|
-
*/
|
|
353
|
-
const filterSensitiveLog: (obj: RefreshTokenRequestBody) => any;
|
|
354
|
-
}
|
|
355
271
|
export interface RefreshTokenRequest {
|
|
356
272
|
/**
|
|
357
273
|
* <p>The third-party provider for the token. The only valid value is <code>figma</code>.</p>
|
|
@@ -362,12 +278,6 @@ export interface RefreshTokenRequest {
|
|
|
362
278
|
*/
|
|
363
279
|
refreshTokenBody: RefreshTokenRequestBody | undefined;
|
|
364
280
|
}
|
|
365
|
-
export declare namespace RefreshTokenRequest {
|
|
366
|
-
/**
|
|
367
|
-
* @internal
|
|
368
|
-
*/
|
|
369
|
-
const filterSensitiveLog: (obj: RefreshTokenRequest) => any;
|
|
370
|
-
}
|
|
371
281
|
export interface RefreshTokenResponse {
|
|
372
282
|
/**
|
|
373
283
|
* <p>The access token.</p>
|
|
@@ -378,12 +288,6 @@ export interface RefreshTokenResponse {
|
|
|
378
288
|
*/
|
|
379
289
|
expiresIn: number | undefined;
|
|
380
290
|
}
|
|
381
|
-
export declare namespace RefreshTokenResponse {
|
|
382
|
-
/**
|
|
383
|
-
* @internal
|
|
384
|
-
*/
|
|
385
|
-
const filterSensitiveLog: (obj: RefreshTokenResponse) => any;
|
|
386
|
-
}
|
|
387
291
|
export interface DeleteThemeRequest {
|
|
388
292
|
/**
|
|
389
293
|
* <p>The unique ID of the Amplify app associated with the theme to
|
|
@@ -400,12 +304,6 @@ export interface DeleteThemeRequest {
|
|
|
400
304
|
*/
|
|
401
305
|
id: string | undefined;
|
|
402
306
|
}
|
|
403
|
-
export declare namespace DeleteThemeRequest {
|
|
404
|
-
/**
|
|
405
|
-
* @internal
|
|
406
|
-
*/
|
|
407
|
-
const filterSensitiveLog: (obj: DeleteThemeRequest) => any;
|
|
408
|
-
}
|
|
409
307
|
export interface ExportThemesRequest {
|
|
410
308
|
/**
|
|
411
309
|
* <p>The unique ID of the Amplify app to export the themes to.</p>
|
|
@@ -420,12 +318,6 @@ export interface ExportThemesRequest {
|
|
|
420
318
|
*/
|
|
421
319
|
nextToken?: string;
|
|
422
320
|
}
|
|
423
|
-
export declare namespace ExportThemesRequest {
|
|
424
|
-
/**
|
|
425
|
-
* @internal
|
|
426
|
-
*/
|
|
427
|
-
const filterSensitiveLog: (obj: ExportThemesRequest) => any;
|
|
428
|
-
}
|
|
429
321
|
export interface GetThemeRequest {
|
|
430
322
|
/**
|
|
431
323
|
* <p>The unique ID of the Amplify app.</p>
|
|
@@ -440,12 +332,6 @@ export interface GetThemeRequest {
|
|
|
440
332
|
*/
|
|
441
333
|
id: string | undefined;
|
|
442
334
|
}
|
|
443
|
-
export declare namespace GetThemeRequest {
|
|
444
|
-
/**
|
|
445
|
-
* @internal
|
|
446
|
-
*/
|
|
447
|
-
const filterSensitiveLog: (obj: GetThemeRequest) => any;
|
|
448
|
-
}
|
|
449
335
|
export interface ListThemesRequest {
|
|
450
336
|
/**
|
|
451
337
|
* <p>The unique ID for the Amplify app.</p>
|
|
@@ -465,12 +351,6 @@ export interface ListThemesRequest {
|
|
|
465
351
|
*/
|
|
466
352
|
maxResults?: number;
|
|
467
353
|
}
|
|
468
|
-
export declare namespace ListThemesRequest {
|
|
469
|
-
/**
|
|
470
|
-
* @internal
|
|
471
|
-
*/
|
|
472
|
-
const filterSensitiveLog: (obj: ListThemesRequest) => any;
|
|
473
|
-
}
|
|
474
354
|
/**
|
|
475
355
|
* <p>Describes the basic information about a theme.</p>
|
|
476
356
|
*/
|
|
@@ -492,12 +372,6 @@ export interface ThemeSummary {
|
|
|
492
372
|
*/
|
|
493
373
|
name: string | undefined;
|
|
494
374
|
}
|
|
495
|
-
export declare namespace ThemeSummary {
|
|
496
|
-
/**
|
|
497
|
-
* @internal
|
|
498
|
-
*/
|
|
499
|
-
const filterSensitiveLog: (obj: ThemeSummary) => any;
|
|
500
|
-
}
|
|
501
375
|
export interface ListThemesResponse {
|
|
502
376
|
/**
|
|
503
377
|
* <p>The list of themes for the Amplify app.</p>
|
|
@@ -508,12 +382,6 @@ export interface ListThemesResponse {
|
|
|
508
382
|
*/
|
|
509
383
|
nextToken?: string;
|
|
510
384
|
}
|
|
511
|
-
export declare namespace ListThemesResponse {
|
|
512
|
-
/**
|
|
513
|
-
* @internal
|
|
514
|
-
*/
|
|
515
|
-
const filterSensitiveLog: (obj: ListThemesResponse) => any;
|
|
516
|
-
}
|
|
517
385
|
/**
|
|
518
386
|
* <p>Describes the configuration of a theme's properties.</p>
|
|
519
387
|
*/
|
|
@@ -527,12 +395,6 @@ export interface ThemeValue {
|
|
|
527
395
|
*/
|
|
528
396
|
children?: ThemeValues[];
|
|
529
397
|
}
|
|
530
|
-
export declare namespace ThemeValue {
|
|
531
|
-
/**
|
|
532
|
-
* @internal
|
|
533
|
-
*/
|
|
534
|
-
const filterSensitiveLog: (obj: ThemeValue) => any;
|
|
535
|
-
}
|
|
536
398
|
/**
|
|
537
399
|
* <p>A key-value pair that defines a property of a theme.</p>
|
|
538
400
|
*/
|
|
@@ -546,12 +408,6 @@ export interface ThemeValues {
|
|
|
546
408
|
*/
|
|
547
409
|
value?: ThemeValue;
|
|
548
410
|
}
|
|
549
|
-
export declare namespace ThemeValues {
|
|
550
|
-
/**
|
|
551
|
-
* @internal
|
|
552
|
-
*/
|
|
553
|
-
const filterSensitiveLog: (obj: ThemeValues) => any;
|
|
554
|
-
}
|
|
555
411
|
/**
|
|
556
412
|
* <p>Stores information for generating Amplify DataStore queries. Use a
|
|
557
413
|
* <code>Predicate</code> to retrieve a subset of the data in a collection.</p>
|
|
@@ -578,12 +434,6 @@ export interface Predicate {
|
|
|
578
434
|
*/
|
|
579
435
|
operand?: string;
|
|
580
436
|
}
|
|
581
|
-
export declare namespace Predicate {
|
|
582
|
-
/**
|
|
583
|
-
* @internal
|
|
584
|
-
*/
|
|
585
|
-
const filterSensitiveLog: (obj: Predicate) => any;
|
|
586
|
-
}
|
|
587
437
|
/**
|
|
588
438
|
* <p>Represents the data binding configuration for a specific property using data stored in
|
|
589
439
|
* Amazon Web Services. For Amazon Web Services connected properties, you can bind a property to
|
|
@@ -620,12 +470,6 @@ export interface ComponentBindingPropertiesValueProperties {
|
|
|
620
470
|
*/
|
|
621
471
|
defaultValue?: string;
|
|
622
472
|
}
|
|
623
|
-
export declare namespace ComponentBindingPropertiesValueProperties {
|
|
624
|
-
/**
|
|
625
|
-
* @internal
|
|
626
|
-
*/
|
|
627
|
-
const filterSensitiveLog: (obj: ComponentBindingPropertiesValueProperties) => any;
|
|
628
|
-
}
|
|
629
473
|
/**
|
|
630
474
|
* <p>Describes the configuration for binding a component's properties to data.</p>
|
|
631
475
|
*/
|
|
@@ -649,12 +493,6 @@ export interface ComponentDataConfiguration {
|
|
|
649
493
|
*/
|
|
650
494
|
identifiers?: string[];
|
|
651
495
|
}
|
|
652
|
-
export declare namespace ComponentDataConfiguration {
|
|
653
|
-
/**
|
|
654
|
-
* @internal
|
|
655
|
-
*/
|
|
656
|
-
const filterSensitiveLog: (obj: ComponentDataConfiguration) => any;
|
|
657
|
-
}
|
|
658
496
|
/**
|
|
659
497
|
* <p>Describes the configuration for all of a component's properties. Use
|
|
660
498
|
* <code>ComponentProperty</code> to specify the values to render or bind by default.</p>
|
|
@@ -725,12 +563,6 @@ export interface ComponentProperty {
|
|
|
725
563
|
*/
|
|
726
564
|
property?: string;
|
|
727
565
|
}
|
|
728
|
-
export declare namespace ComponentProperty {
|
|
729
|
-
/**
|
|
730
|
-
* @internal
|
|
731
|
-
*/
|
|
732
|
-
const filterSensitiveLog: (obj: ComponentProperty) => any;
|
|
733
|
-
}
|
|
734
566
|
/**
|
|
735
567
|
* <p>Represents the data binding configuration for a component at runtime. You can use
|
|
736
568
|
* <code>ComponentBindingPropertiesValue</code> to add exposed properties to a component to
|
|
@@ -751,12 +583,6 @@ export interface ComponentBindingPropertiesValue {
|
|
|
751
583
|
*/
|
|
752
584
|
defaultValue?: string;
|
|
753
585
|
}
|
|
754
|
-
export declare namespace ComponentBindingPropertiesValue {
|
|
755
|
-
/**
|
|
756
|
-
* @internal
|
|
757
|
-
*/
|
|
758
|
-
const filterSensitiveLog: (obj: ComponentBindingPropertiesValue) => any;
|
|
759
|
-
}
|
|
760
586
|
/**
|
|
761
587
|
* <p>Represents all of the information that is required to create a theme.</p>
|
|
762
588
|
*/
|
|
@@ -779,12 +605,6 @@ export interface CreateThemeData {
|
|
|
779
605
|
*/
|
|
780
606
|
tags?: Record<string, string>;
|
|
781
607
|
}
|
|
782
|
-
export declare namespace CreateThemeData {
|
|
783
|
-
/**
|
|
784
|
-
* @internal
|
|
785
|
-
*/
|
|
786
|
-
const filterSensitiveLog: (obj: CreateThemeData) => any;
|
|
787
|
-
}
|
|
788
608
|
/**
|
|
789
609
|
* <p>A theme is a collection of style settings that apply globally to the components associated
|
|
790
610
|
* with an Amplify application.</p>
|
|
@@ -828,12 +648,6 @@ export interface Theme {
|
|
|
828
648
|
*/
|
|
829
649
|
tags?: Record<string, string>;
|
|
830
650
|
}
|
|
831
|
-
export declare namespace Theme {
|
|
832
|
-
/**
|
|
833
|
-
* @internal
|
|
834
|
-
*/
|
|
835
|
-
const filterSensitiveLog: (obj: Theme) => any;
|
|
836
|
-
}
|
|
837
651
|
/**
|
|
838
652
|
* <p>Saves the data binding information for a theme.</p>
|
|
839
653
|
*/
|
|
@@ -855,12 +669,6 @@ export interface UpdateThemeData {
|
|
|
855
669
|
*/
|
|
856
670
|
overrides?: ThemeValues[];
|
|
857
671
|
}
|
|
858
|
-
export declare namespace UpdateThemeData {
|
|
859
|
-
/**
|
|
860
|
-
* @internal
|
|
861
|
-
*/
|
|
862
|
-
const filterSensitiveLog: (obj: UpdateThemeData) => any;
|
|
863
|
-
}
|
|
864
672
|
/**
|
|
865
673
|
* <p>Represents the state configuration when an action modifies a property of another element
|
|
866
674
|
* within the same component.</p>
|
|
@@ -879,12 +687,6 @@ export interface MutationActionSetStateParameter {
|
|
|
879
687
|
*/
|
|
880
688
|
set: ComponentProperty | undefined;
|
|
881
689
|
}
|
|
882
|
-
export declare namespace MutationActionSetStateParameter {
|
|
883
|
-
/**
|
|
884
|
-
* @internal
|
|
885
|
-
*/
|
|
886
|
-
const filterSensitiveLog: (obj: MutationActionSetStateParameter) => any;
|
|
887
|
-
}
|
|
888
690
|
/**
|
|
889
691
|
* <p>Represents a conditional expression to set a component property. Use
|
|
890
692
|
* <code>ComponentConditionProperty</code> to set a property to different values conditionally,
|
|
@@ -921,12 +723,6 @@ export interface ComponentConditionProperty {
|
|
|
921
723
|
*/
|
|
922
724
|
operandType?: string;
|
|
923
725
|
}
|
|
924
|
-
export declare namespace ComponentConditionProperty {
|
|
925
|
-
/**
|
|
926
|
-
* @internal
|
|
927
|
-
*/
|
|
928
|
-
const filterSensitiveLog: (obj: ComponentConditionProperty) => any;
|
|
929
|
-
}
|
|
930
726
|
export interface CreateThemeRequest {
|
|
931
727
|
/**
|
|
932
728
|
* <p>The unique ID of the Amplify app associated with the theme.</p>
|
|
@@ -946,36 +742,18 @@ export interface CreateThemeRequest {
|
|
|
946
742
|
*/
|
|
947
743
|
themeToCreate: CreateThemeData | undefined;
|
|
948
744
|
}
|
|
949
|
-
export declare namespace CreateThemeRequest {
|
|
950
|
-
/**
|
|
951
|
-
* @internal
|
|
952
|
-
*/
|
|
953
|
-
const filterSensitiveLog: (obj: CreateThemeRequest) => any;
|
|
954
|
-
}
|
|
955
745
|
export interface CreateThemeResponse {
|
|
956
746
|
/**
|
|
957
747
|
* <p>Describes the configuration of the new theme.</p>
|
|
958
748
|
*/
|
|
959
749
|
entity?: Theme;
|
|
960
750
|
}
|
|
961
|
-
export declare namespace CreateThemeResponse {
|
|
962
|
-
/**
|
|
963
|
-
* @internal
|
|
964
|
-
*/
|
|
965
|
-
const filterSensitiveLog: (obj: CreateThemeResponse) => any;
|
|
966
|
-
}
|
|
967
751
|
export interface GetThemeResponse {
|
|
968
752
|
/**
|
|
969
753
|
* <p>Represents the configuration settings for the theme.</p>
|
|
970
754
|
*/
|
|
971
755
|
theme?: Theme;
|
|
972
756
|
}
|
|
973
|
-
export declare namespace GetThemeResponse {
|
|
974
|
-
/**
|
|
975
|
-
* @internal
|
|
976
|
-
*/
|
|
977
|
-
const filterSensitiveLog: (obj: GetThemeResponse) => any;
|
|
978
|
-
}
|
|
979
757
|
export interface UpdateThemeRequest {
|
|
980
758
|
/**
|
|
981
759
|
* <p>The unique ID for the Amplify app.</p>
|
|
@@ -998,24 +776,12 @@ export interface UpdateThemeRequest {
|
|
|
998
776
|
*/
|
|
999
777
|
updatedTheme: UpdateThemeData | undefined;
|
|
1000
778
|
}
|
|
1001
|
-
export declare namespace UpdateThemeRequest {
|
|
1002
|
-
/**
|
|
1003
|
-
* @internal
|
|
1004
|
-
*/
|
|
1005
|
-
const filterSensitiveLog: (obj: UpdateThemeRequest) => any;
|
|
1006
|
-
}
|
|
1007
779
|
export interface UpdateThemeResponse {
|
|
1008
780
|
/**
|
|
1009
781
|
* <p>Describes the configuration of the updated theme.</p>
|
|
1010
782
|
*/
|
|
1011
783
|
entity?: Theme;
|
|
1012
784
|
}
|
|
1013
|
-
export declare namespace UpdateThemeResponse {
|
|
1014
|
-
/**
|
|
1015
|
-
* @internal
|
|
1016
|
-
*/
|
|
1017
|
-
const filterSensitiveLog: (obj: UpdateThemeResponse) => any;
|
|
1018
|
-
}
|
|
1019
785
|
export interface ExportThemesResponse {
|
|
1020
786
|
/**
|
|
1021
787
|
* <p>Represents the configuration of the exported themes.</p>
|
|
@@ -1026,12 +792,6 @@ export interface ExportThemesResponse {
|
|
|
1026
792
|
*/
|
|
1027
793
|
nextToken?: string;
|
|
1028
794
|
}
|
|
1029
|
-
export declare namespace ExportThemesResponse {
|
|
1030
|
-
/**
|
|
1031
|
-
* @internal
|
|
1032
|
-
*/
|
|
1033
|
-
const filterSensitiveLog: (obj: ExportThemesResponse) => any;
|
|
1034
|
-
}
|
|
1035
795
|
/**
|
|
1036
796
|
* <p>Represents the event action configuration for an element of a <code>Component</code> or
|
|
1037
797
|
* <code>ComponentChild</code>. Use for the workflow feature in Amplify Studio
|
|
@@ -1081,12 +841,6 @@ export interface ActionParameters {
|
|
|
1081
841
|
*/
|
|
1082
842
|
state?: MutationActionSetStateParameter;
|
|
1083
843
|
}
|
|
1084
|
-
export declare namespace ActionParameters {
|
|
1085
|
-
/**
|
|
1086
|
-
* @internal
|
|
1087
|
-
*/
|
|
1088
|
-
const filterSensitiveLog: (obj: ActionParameters) => any;
|
|
1089
|
-
}
|
|
1090
844
|
/**
|
|
1091
845
|
* <p>Describes the configuration of an event. You can bind an event and a corresponding action
|
|
1092
846
|
* to a <code>Component</code> or a <code>ComponentChild</code>. A button click is an example of
|
|
@@ -1106,12 +860,6 @@ export interface ComponentEvent {
|
|
|
1106
860
|
*/
|
|
1107
861
|
bindingEvent?: string;
|
|
1108
862
|
}
|
|
1109
|
-
export declare namespace ComponentEvent {
|
|
1110
|
-
/**
|
|
1111
|
-
* @internal
|
|
1112
|
-
*/
|
|
1113
|
-
const filterSensitiveLog: (obj: ComponentEvent) => any;
|
|
1114
|
-
}
|
|
1115
863
|
/**
|
|
1116
864
|
* <p>A nested UI configuration within a parent <code>Component</code>.</p>
|
|
1117
865
|
*/
|
|
@@ -1144,12 +892,6 @@ export interface ComponentChild {
|
|
|
1144
892
|
*/
|
|
1145
893
|
sourceId?: string;
|
|
1146
894
|
}
|
|
1147
|
-
export declare namespace ComponentChild {
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
const filterSensitiveLog: (obj: ComponentChild) => any;
|
|
1152
|
-
}
|
|
1153
895
|
/**
|
|
1154
896
|
* <p>Contains the configuration settings for a user interface (UI) element for an Amplify app. A component is configured as a primary, stand-alone UI element. Use
|
|
1155
897
|
* <code>ComponentChild</code> to configure an instance of a <code>Component</code>. A
|
|
@@ -1238,12 +980,6 @@ export interface Component {
|
|
|
1238
980
|
*/
|
|
1239
981
|
schemaVersion?: string;
|
|
1240
982
|
}
|
|
1241
|
-
export declare namespace Component {
|
|
1242
|
-
/**
|
|
1243
|
-
* @internal
|
|
1244
|
-
*/
|
|
1245
|
-
const filterSensitiveLog: (obj: Component) => any;
|
|
1246
|
-
}
|
|
1247
983
|
/**
|
|
1248
984
|
* <p>Represents all of the information that is required to create a component.</p>
|
|
1249
985
|
*/
|
|
@@ -1300,12 +1036,6 @@ export interface CreateComponentData {
|
|
|
1300
1036
|
*/
|
|
1301
1037
|
schemaVersion?: string;
|
|
1302
1038
|
}
|
|
1303
|
-
export declare namespace CreateComponentData {
|
|
1304
|
-
/**
|
|
1305
|
-
* @internal
|
|
1306
|
-
*/
|
|
1307
|
-
const filterSensitiveLog: (obj: CreateComponentData) => any;
|
|
1308
|
-
}
|
|
1309
1039
|
/**
|
|
1310
1040
|
* <p>Updates and saves all of the information about a component, based on component ID.</p>
|
|
1311
1041
|
*/
|
|
@@ -1361,12 +1091,6 @@ export interface UpdateComponentData {
|
|
|
1361
1091
|
*/
|
|
1362
1092
|
schemaVersion?: string;
|
|
1363
1093
|
}
|
|
1364
|
-
export declare namespace UpdateComponentData {
|
|
1365
|
-
/**
|
|
1366
|
-
* @internal
|
|
1367
|
-
*/
|
|
1368
|
-
const filterSensitiveLog: (obj: UpdateComponentData) => any;
|
|
1369
|
-
}
|
|
1370
1094
|
export interface CreateComponentRequest {
|
|
1371
1095
|
/**
|
|
1372
1096
|
* <p>The unique ID of the Amplify app to associate with the component.</p>
|
|
@@ -1386,36 +1110,18 @@ export interface CreateComponentRequest {
|
|
|
1386
1110
|
*/
|
|
1387
1111
|
componentToCreate: CreateComponentData | undefined;
|
|
1388
1112
|
}
|
|
1389
|
-
export declare namespace CreateComponentRequest {
|
|
1390
|
-
/**
|
|
1391
|
-
* @internal
|
|
1392
|
-
*/
|
|
1393
|
-
const filterSensitiveLog: (obj: CreateComponentRequest) => any;
|
|
1394
|
-
}
|
|
1395
1113
|
export interface CreateComponentResponse {
|
|
1396
1114
|
/**
|
|
1397
1115
|
* <p>Describes the configuration of the new component.</p>
|
|
1398
1116
|
*/
|
|
1399
1117
|
entity?: Component;
|
|
1400
1118
|
}
|
|
1401
|
-
export declare namespace CreateComponentResponse {
|
|
1402
|
-
/**
|
|
1403
|
-
* @internal
|
|
1404
|
-
*/
|
|
1405
|
-
const filterSensitiveLog: (obj: CreateComponentResponse) => any;
|
|
1406
|
-
}
|
|
1407
1119
|
export interface GetComponentResponse {
|
|
1408
1120
|
/**
|
|
1409
1121
|
* <p>Represents the configuration settings for the component.</p>
|
|
1410
1122
|
*/
|
|
1411
1123
|
component?: Component;
|
|
1412
1124
|
}
|
|
1413
|
-
export declare namespace GetComponentResponse {
|
|
1414
|
-
/**
|
|
1415
|
-
* @internal
|
|
1416
|
-
*/
|
|
1417
|
-
const filterSensitiveLog: (obj: GetComponentResponse) => any;
|
|
1418
|
-
}
|
|
1419
1125
|
export interface UpdateComponentRequest {
|
|
1420
1126
|
/**
|
|
1421
1127
|
* <p>The unique ID for the Amplify app.</p>
|
|
@@ -1438,24 +1144,12 @@ export interface UpdateComponentRequest {
|
|
|
1438
1144
|
*/
|
|
1439
1145
|
updatedComponent: UpdateComponentData | undefined;
|
|
1440
1146
|
}
|
|
1441
|
-
export declare namespace UpdateComponentRequest {
|
|
1442
|
-
/**
|
|
1443
|
-
* @internal
|
|
1444
|
-
*/
|
|
1445
|
-
const filterSensitiveLog: (obj: UpdateComponentRequest) => any;
|
|
1446
|
-
}
|
|
1447
1147
|
export interface UpdateComponentResponse {
|
|
1448
1148
|
/**
|
|
1449
1149
|
* <p>Describes the configuration of the updated component.</p>
|
|
1450
1150
|
*/
|
|
1451
1151
|
entity?: Component;
|
|
1452
1152
|
}
|
|
1453
|
-
export declare namespace UpdateComponentResponse {
|
|
1454
|
-
/**
|
|
1455
|
-
* @internal
|
|
1456
|
-
*/
|
|
1457
|
-
const filterSensitiveLog: (obj: UpdateComponentResponse) => any;
|
|
1458
|
-
}
|
|
1459
1153
|
export interface ExportComponentsResponse {
|
|
1460
1154
|
/**
|
|
1461
1155
|
* <p>Represents the configuration of the exported components.</p>
|
|
@@ -1466,9 +1160,211 @@ export interface ExportComponentsResponse {
|
|
|
1466
1160
|
*/
|
|
1467
1161
|
nextToken?: string;
|
|
1468
1162
|
}
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1163
|
+
/**
|
|
1164
|
+
* @internal
|
|
1165
|
+
*/
|
|
1166
|
+
export declare const ComponentPropertyBindingPropertiesFilterSensitiveLog: (obj: ComponentPropertyBindingProperties) => any;
|
|
1167
|
+
/**
|
|
1168
|
+
* @internal
|
|
1169
|
+
*/
|
|
1170
|
+
export declare const FormBindingElementFilterSensitiveLog: (obj: FormBindingElement) => any;
|
|
1171
|
+
/**
|
|
1172
|
+
* @internal
|
|
1173
|
+
*/
|
|
1174
|
+
export declare const SortPropertyFilterSensitiveLog: (obj: SortProperty) => any;
|
|
1175
|
+
/**
|
|
1176
|
+
* @internal
|
|
1177
|
+
*/
|
|
1178
|
+
export declare const ComponentVariantFilterSensitiveLog: (obj: ComponentVariant) => any;
|
|
1179
|
+
/**
|
|
1180
|
+
* @internal
|
|
1181
|
+
*/
|
|
1182
|
+
export declare const DeleteComponentRequestFilterSensitiveLog: (obj: DeleteComponentRequest) => any;
|
|
1183
|
+
/**
|
|
1184
|
+
* @internal
|
|
1185
|
+
*/
|
|
1186
|
+
export declare const ExportComponentsRequestFilterSensitiveLog: (obj: ExportComponentsRequest) => any;
|
|
1187
|
+
/**
|
|
1188
|
+
* @internal
|
|
1189
|
+
*/
|
|
1190
|
+
export declare const GetComponentRequestFilterSensitiveLog: (obj: GetComponentRequest) => any;
|
|
1191
|
+
/**
|
|
1192
|
+
* @internal
|
|
1193
|
+
*/
|
|
1194
|
+
export declare const ListComponentsRequestFilterSensitiveLog: (obj: ListComponentsRequest) => any;
|
|
1195
|
+
/**
|
|
1196
|
+
* @internal
|
|
1197
|
+
*/
|
|
1198
|
+
export declare const ComponentSummaryFilterSensitiveLog: (obj: ComponentSummary) => any;
|
|
1199
|
+
/**
|
|
1200
|
+
* @internal
|
|
1201
|
+
*/
|
|
1202
|
+
export declare const ListComponentsResponseFilterSensitiveLog: (obj: ListComponentsResponse) => any;
|
|
1203
|
+
/**
|
|
1204
|
+
* @internal
|
|
1205
|
+
*/
|
|
1206
|
+
export declare const ExchangeCodeForTokenRequestBodyFilterSensitiveLog: (obj: ExchangeCodeForTokenRequestBody) => any;
|
|
1207
|
+
/**
|
|
1208
|
+
* @internal
|
|
1209
|
+
*/
|
|
1210
|
+
export declare const ExchangeCodeForTokenRequestFilterSensitiveLog: (obj: ExchangeCodeForTokenRequest) => any;
|
|
1211
|
+
/**
|
|
1212
|
+
* @internal
|
|
1213
|
+
*/
|
|
1214
|
+
export declare const ExchangeCodeForTokenResponseFilterSensitiveLog: (obj: ExchangeCodeForTokenResponse) => any;
|
|
1215
|
+
/**
|
|
1216
|
+
* @internal
|
|
1217
|
+
*/
|
|
1218
|
+
export declare const RefreshTokenRequestBodyFilterSensitiveLog: (obj: RefreshTokenRequestBody) => any;
|
|
1219
|
+
/**
|
|
1220
|
+
* @internal
|
|
1221
|
+
*/
|
|
1222
|
+
export declare const RefreshTokenRequestFilterSensitiveLog: (obj: RefreshTokenRequest) => any;
|
|
1223
|
+
/**
|
|
1224
|
+
* @internal
|
|
1225
|
+
*/
|
|
1226
|
+
export declare const RefreshTokenResponseFilterSensitiveLog: (obj: RefreshTokenResponse) => any;
|
|
1227
|
+
/**
|
|
1228
|
+
* @internal
|
|
1229
|
+
*/
|
|
1230
|
+
export declare const DeleteThemeRequestFilterSensitiveLog: (obj: DeleteThemeRequest) => any;
|
|
1231
|
+
/**
|
|
1232
|
+
* @internal
|
|
1233
|
+
*/
|
|
1234
|
+
export declare const ExportThemesRequestFilterSensitiveLog: (obj: ExportThemesRequest) => any;
|
|
1235
|
+
/**
|
|
1236
|
+
* @internal
|
|
1237
|
+
*/
|
|
1238
|
+
export declare const GetThemeRequestFilterSensitiveLog: (obj: GetThemeRequest) => any;
|
|
1239
|
+
/**
|
|
1240
|
+
* @internal
|
|
1241
|
+
*/
|
|
1242
|
+
export declare const ListThemesRequestFilterSensitiveLog: (obj: ListThemesRequest) => any;
|
|
1243
|
+
/**
|
|
1244
|
+
* @internal
|
|
1245
|
+
*/
|
|
1246
|
+
export declare const ThemeSummaryFilterSensitiveLog: (obj: ThemeSummary) => any;
|
|
1247
|
+
/**
|
|
1248
|
+
* @internal
|
|
1249
|
+
*/
|
|
1250
|
+
export declare const ListThemesResponseFilterSensitiveLog: (obj: ListThemesResponse) => any;
|
|
1251
|
+
/**
|
|
1252
|
+
* @internal
|
|
1253
|
+
*/
|
|
1254
|
+
export declare const ThemeValueFilterSensitiveLog: (obj: ThemeValue) => any;
|
|
1255
|
+
/**
|
|
1256
|
+
* @internal
|
|
1257
|
+
*/
|
|
1258
|
+
export declare const ThemeValuesFilterSensitiveLog: (obj: ThemeValues) => any;
|
|
1259
|
+
/**
|
|
1260
|
+
* @internal
|
|
1261
|
+
*/
|
|
1262
|
+
export declare const PredicateFilterSensitiveLog: (obj: Predicate) => any;
|
|
1263
|
+
/**
|
|
1264
|
+
* @internal
|
|
1265
|
+
*/
|
|
1266
|
+
export declare const ComponentBindingPropertiesValuePropertiesFilterSensitiveLog: (obj: ComponentBindingPropertiesValueProperties) => any;
|
|
1267
|
+
/**
|
|
1268
|
+
* @internal
|
|
1269
|
+
*/
|
|
1270
|
+
export declare const ComponentDataConfigurationFilterSensitiveLog: (obj: ComponentDataConfiguration) => any;
|
|
1271
|
+
/**
|
|
1272
|
+
* @internal
|
|
1273
|
+
*/
|
|
1274
|
+
export declare const ComponentPropertyFilterSensitiveLog: (obj: ComponentProperty) => any;
|
|
1275
|
+
/**
|
|
1276
|
+
* @internal
|
|
1277
|
+
*/
|
|
1278
|
+
export declare const ComponentBindingPropertiesValueFilterSensitiveLog: (obj: ComponentBindingPropertiesValue) => any;
|
|
1279
|
+
/**
|
|
1280
|
+
* @internal
|
|
1281
|
+
*/
|
|
1282
|
+
export declare const CreateThemeDataFilterSensitiveLog: (obj: CreateThemeData) => any;
|
|
1283
|
+
/**
|
|
1284
|
+
* @internal
|
|
1285
|
+
*/
|
|
1286
|
+
export declare const ThemeFilterSensitiveLog: (obj: Theme) => any;
|
|
1287
|
+
/**
|
|
1288
|
+
* @internal
|
|
1289
|
+
*/
|
|
1290
|
+
export declare const UpdateThemeDataFilterSensitiveLog: (obj: UpdateThemeData) => any;
|
|
1291
|
+
/**
|
|
1292
|
+
* @internal
|
|
1293
|
+
*/
|
|
1294
|
+
export declare const MutationActionSetStateParameterFilterSensitiveLog: (obj: MutationActionSetStateParameter) => any;
|
|
1295
|
+
/**
|
|
1296
|
+
* @internal
|
|
1297
|
+
*/
|
|
1298
|
+
export declare const ComponentConditionPropertyFilterSensitiveLog: (obj: ComponentConditionProperty) => any;
|
|
1299
|
+
/**
|
|
1300
|
+
* @internal
|
|
1301
|
+
*/
|
|
1302
|
+
export declare const CreateThemeRequestFilterSensitiveLog: (obj: CreateThemeRequest) => any;
|
|
1303
|
+
/**
|
|
1304
|
+
* @internal
|
|
1305
|
+
*/
|
|
1306
|
+
export declare const CreateThemeResponseFilterSensitiveLog: (obj: CreateThemeResponse) => any;
|
|
1307
|
+
/**
|
|
1308
|
+
* @internal
|
|
1309
|
+
*/
|
|
1310
|
+
export declare const GetThemeResponseFilterSensitiveLog: (obj: GetThemeResponse) => any;
|
|
1311
|
+
/**
|
|
1312
|
+
* @internal
|
|
1313
|
+
*/
|
|
1314
|
+
export declare const UpdateThemeRequestFilterSensitiveLog: (obj: UpdateThemeRequest) => any;
|
|
1315
|
+
/**
|
|
1316
|
+
* @internal
|
|
1317
|
+
*/
|
|
1318
|
+
export declare const UpdateThemeResponseFilterSensitiveLog: (obj: UpdateThemeResponse) => any;
|
|
1319
|
+
/**
|
|
1320
|
+
* @internal
|
|
1321
|
+
*/
|
|
1322
|
+
export declare const ExportThemesResponseFilterSensitiveLog: (obj: ExportThemesResponse) => any;
|
|
1323
|
+
/**
|
|
1324
|
+
* @internal
|
|
1325
|
+
*/
|
|
1326
|
+
export declare const ActionParametersFilterSensitiveLog: (obj: ActionParameters) => any;
|
|
1327
|
+
/**
|
|
1328
|
+
* @internal
|
|
1329
|
+
*/
|
|
1330
|
+
export declare const ComponentEventFilterSensitiveLog: (obj: ComponentEvent) => any;
|
|
1331
|
+
/**
|
|
1332
|
+
* @internal
|
|
1333
|
+
*/
|
|
1334
|
+
export declare const ComponentChildFilterSensitiveLog: (obj: ComponentChild) => any;
|
|
1335
|
+
/**
|
|
1336
|
+
* @internal
|
|
1337
|
+
*/
|
|
1338
|
+
export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
|
|
1339
|
+
/**
|
|
1340
|
+
* @internal
|
|
1341
|
+
*/
|
|
1342
|
+
export declare const CreateComponentDataFilterSensitiveLog: (obj: CreateComponentData) => any;
|
|
1343
|
+
/**
|
|
1344
|
+
* @internal
|
|
1345
|
+
*/
|
|
1346
|
+
export declare const UpdateComponentDataFilterSensitiveLog: (obj: UpdateComponentData) => any;
|
|
1347
|
+
/**
|
|
1348
|
+
* @internal
|
|
1349
|
+
*/
|
|
1350
|
+
export declare const CreateComponentRequestFilterSensitiveLog: (obj: CreateComponentRequest) => any;
|
|
1351
|
+
/**
|
|
1352
|
+
* @internal
|
|
1353
|
+
*/
|
|
1354
|
+
export declare const CreateComponentResponseFilterSensitiveLog: (obj: CreateComponentResponse) => any;
|
|
1355
|
+
/**
|
|
1356
|
+
* @internal
|
|
1357
|
+
*/
|
|
1358
|
+
export declare const GetComponentResponseFilterSensitiveLog: (obj: GetComponentResponse) => any;
|
|
1359
|
+
/**
|
|
1360
|
+
* @internal
|
|
1361
|
+
*/
|
|
1362
|
+
export declare const UpdateComponentRequestFilterSensitiveLog: (obj: UpdateComponentRequest) => any;
|
|
1363
|
+
/**
|
|
1364
|
+
* @internal
|
|
1365
|
+
*/
|
|
1366
|
+
export declare const UpdateComponentResponseFilterSensitiveLog: (obj: UpdateComponentResponse) => any;
|
|
1367
|
+
/**
|
|
1368
|
+
* @internal
|
|
1369
|
+
*/
|
|
1370
|
+
export declare const ExportComponentsResponseFilterSensitiveLog: (obj: ExportComponentsResponse) => any;
|