@aws-sdk/client-amplifyuibuilder 3.650.0 → 3.654.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 (57) hide show
  1. package/dist-types/commands/CreateComponentCommand.d.ts +11 -0
  2. package/dist-types/commands/CreateFormCommand.d.ts +11 -0
  3. package/dist-types/commands/CreateThemeCommand.d.ts +11 -0
  4. package/dist-types/commands/DeleteComponentCommand.d.ts +11 -0
  5. package/dist-types/commands/DeleteFormCommand.d.ts +11 -0
  6. package/dist-types/commands/DeleteThemeCommand.d.ts +11 -0
  7. package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +11 -0
  8. package/dist-types/commands/ExportComponentsCommand.d.ts +11 -0
  9. package/dist-types/commands/ExportFormsCommand.d.ts +11 -0
  10. package/dist-types/commands/ExportThemesCommand.d.ts +11 -0
  11. package/dist-types/commands/GetCodegenJobCommand.d.ts +11 -0
  12. package/dist-types/commands/GetComponentCommand.d.ts +11 -0
  13. package/dist-types/commands/GetFormCommand.d.ts +11 -0
  14. package/dist-types/commands/GetMetadataCommand.d.ts +11 -0
  15. package/dist-types/commands/GetThemeCommand.d.ts +11 -0
  16. package/dist-types/commands/ListCodegenJobsCommand.d.ts +11 -0
  17. package/dist-types/commands/ListComponentsCommand.d.ts +11 -0
  18. package/dist-types/commands/ListFormsCommand.d.ts +11 -0
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  20. package/dist-types/commands/ListThemesCommand.d.ts +11 -0
  21. package/dist-types/commands/PutMetadataFlagCommand.d.ts +11 -0
  22. package/dist-types/commands/RefreshTokenCommand.d.ts +11 -0
  23. package/dist-types/commands/StartCodegenJobCommand.d.ts +11 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +11 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
  26. package/dist-types/commands/UpdateComponentCommand.d.ts +11 -0
  27. package/dist-types/commands/UpdateFormCommand.d.ts +11 -0
  28. package/dist-types/commands/UpdateThemeCommand.d.ts +11 -0
  29. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +12 -1
  30. package/dist-types/ts3.4/commands/CreateFormCommand.d.ts +12 -1
  31. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +12 -1
  32. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +12 -1
  33. package/dist-types/ts3.4/commands/DeleteFormCommand.d.ts +12 -1
  34. package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +12 -1
  35. package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +12 -1
  36. package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +12 -1
  37. package/dist-types/ts3.4/commands/ExportFormsCommand.d.ts +12 -1
  38. package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +12 -1
  39. package/dist-types/ts3.4/commands/GetCodegenJobCommand.d.ts +12 -1
  40. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +12 -1
  41. package/dist-types/ts3.4/commands/GetFormCommand.d.ts +12 -1
  42. package/dist-types/ts3.4/commands/GetMetadataCommand.d.ts +12 -1
  43. package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +12 -1
  44. package/dist-types/ts3.4/commands/ListCodegenJobsCommand.d.ts +12 -1
  45. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +12 -1
  46. package/dist-types/ts3.4/commands/ListFormsCommand.d.ts +12 -1
  47. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +12 -1
  48. package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +12 -1
  49. package/dist-types/ts3.4/commands/PutMetadataFlagCommand.d.ts +12 -1
  50. package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +12 -1
  51. package/dist-types/ts3.4/commands/StartCodegenJobCommand.d.ts +12 -1
  52. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +12 -1
  53. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +12 -1
  54. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +12 -1
  55. package/dist-types/ts3.4/commands/UpdateFormCommand.d.ts +12 -1
  56. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +12 -1
  57. package/package.json +35 -35
@@ -504,4 +504,15 @@ declare const CreateComponentCommand_base: {
504
504
  * @public
505
505
  */
506
506
  export declare class CreateComponentCommand extends CreateComponentCommand_base {
507
+ /** @internal type navigation helper, not in runtime. */
508
+ protected static __types: {
509
+ api: {
510
+ input: CreateComponentRequest;
511
+ output: CreateComponentResponse;
512
+ };
513
+ sdk: {
514
+ input: CreateComponentCommandInput;
515
+ output: CreateComponentCommandOutput;
516
+ };
517
+ };
507
518
  }
@@ -382,4 +382,15 @@ declare const CreateFormCommand_base: {
382
382
  * @public
383
383
  */
384
384
  export declare class CreateFormCommand extends CreateFormCommand_base {
385
+ /** @internal type navigation helper, not in runtime. */
386
+ protected static __types: {
387
+ api: {
388
+ input: CreateFormRequest;
389
+ output: CreateFormResponse;
390
+ };
391
+ sdk: {
392
+ input: CreateFormCommandInput;
393
+ output: CreateFormCommandOutput;
394
+ };
395
+ };
385
396
  }
@@ -124,4 +124,15 @@ declare const CreateThemeCommand_base: {
124
124
  * @public
125
125
  */
126
126
  export declare class CreateThemeCommand extends CreateThemeCommand_base {
127
+ /** @internal type navigation helper, not in runtime. */
128
+ protected static __types: {
129
+ api: {
130
+ input: CreateThemeRequest;
131
+ output: CreateThemeResponse;
132
+ };
133
+ sdk: {
134
+ input: CreateThemeCommandInput;
135
+ output: CreateThemeCommandOutput;
136
+ };
137
+ };
127
138
  }
@@ -66,4 +66,15 @@ declare const DeleteComponentCommand_base: {
66
66
  * @public
67
67
  */
68
68
  export declare class DeleteComponentCommand extends DeleteComponentCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: DeleteComponentRequest;
73
+ output: {};
74
+ };
75
+ sdk: {
76
+ input: DeleteComponentCommandInput;
77
+ output: DeleteComponentCommandOutput;
78
+ };
79
+ };
69
80
  }
@@ -66,4 +66,15 @@ declare const DeleteFormCommand_base: {
66
66
  * @public
67
67
  */
68
68
  export declare class DeleteFormCommand extends DeleteFormCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: DeleteFormRequest;
73
+ output: {};
74
+ };
75
+ sdk: {
76
+ input: DeleteFormCommandInput;
77
+ output: DeleteFormCommandOutput;
78
+ };
79
+ };
69
80
  }
@@ -66,4 +66,15 @@ declare const DeleteThemeCommand_base: {
66
66
  * @public
67
67
  */
68
68
  export declare class DeleteThemeCommand extends DeleteThemeCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: DeleteThemeRequest;
73
+ output: {};
74
+ };
75
+ sdk: {
76
+ input: DeleteThemeCommandInput;
77
+ output: DeleteThemeCommandOutput;
78
+ };
79
+ };
69
80
  }
@@ -70,4 +70,15 @@ declare const ExchangeCodeForTokenCommand_base: {
70
70
  * @public
71
71
  */
72
72
  export declare class ExchangeCodeForTokenCommand extends ExchangeCodeForTokenCommand_base {
73
+ /** @internal type navigation helper, not in runtime. */
74
+ protected static __types: {
75
+ api: {
76
+ input: ExchangeCodeForTokenRequest;
77
+ output: ExchangeCodeForTokenResponse;
78
+ };
79
+ sdk: {
80
+ input: ExchangeCodeForTokenCommandInput;
81
+ output: ExchangeCodeForTokenCommandOutput;
82
+ };
83
+ };
73
84
  }
@@ -286,4 +286,15 @@ declare const ExportComponentsCommand_base: {
286
286
  * @public
287
287
  */
288
288
  export declare class ExportComponentsCommand extends ExportComponentsCommand_base {
289
+ /** @internal type navigation helper, not in runtime. */
290
+ protected static __types: {
291
+ api: {
292
+ input: ExportComponentsRequest;
293
+ output: ExportComponentsResponse;
294
+ };
295
+ sdk: {
296
+ input: ExportComponentsCommandInput;
297
+ output: ExportComponentsCommandOutput;
298
+ };
299
+ };
289
300
  }
@@ -224,4 +224,15 @@ declare const ExportFormsCommand_base: {
224
224
  * @public
225
225
  */
226
226
  export declare class ExportFormsCommand extends ExportFormsCommand_base {
227
+ /** @internal type navigation helper, not in runtime. */
228
+ protected static __types: {
229
+ api: {
230
+ input: ExportFormsRequest;
231
+ output: ExportFormsResponse;
232
+ };
233
+ sdk: {
234
+ input: ExportFormsCommandInput;
235
+ output: ExportFormsCommandOutput;
236
+ };
237
+ };
227
238
  }
@@ -96,4 +96,15 @@ declare const ExportThemesCommand_base: {
96
96
  * @public
97
97
  */
98
98
  export declare class ExportThemesCommand extends ExportThemesCommand_base {
99
+ /** @internal type navigation helper, not in runtime. */
100
+ protected static __types: {
101
+ api: {
102
+ input: ExportThemesRequest;
103
+ output: ExportThemesResponse;
104
+ };
105
+ sdk: {
106
+ input: ExportThemesCommandInput;
107
+ output: ExportThemesCommandOutput;
108
+ };
109
+ };
99
110
  }
@@ -191,4 +191,15 @@ declare const GetCodegenJobCommand_base: {
191
191
  * @public
192
192
  */
193
193
  export declare class GetCodegenJobCommand extends GetCodegenJobCommand_base {
194
+ /** @internal type navigation helper, not in runtime. */
195
+ protected static __types: {
196
+ api: {
197
+ input: GetCodegenJobRequest;
198
+ output: GetCodegenJobResponse;
199
+ };
200
+ sdk: {
201
+ input: GetCodegenJobCommandInput;
202
+ output: GetCodegenJobCommandOutput;
203
+ };
204
+ };
194
205
  }
@@ -286,4 +286,15 @@ declare const GetComponentCommand_base: {
286
286
  * @public
287
287
  */
288
288
  export declare class GetComponentCommand extends GetComponentCommand_base {
289
+ /** @internal type navigation helper, not in runtime. */
290
+ protected static __types: {
291
+ api: {
292
+ input: GetComponentRequest;
293
+ output: GetComponentResponse;
294
+ };
295
+ sdk: {
296
+ input: GetComponentCommandInput;
297
+ output: GetComponentCommandOutput;
298
+ };
299
+ };
289
300
  }
@@ -224,4 +224,15 @@ declare const GetFormCommand_base: {
224
224
  * @public
225
225
  */
226
226
  export declare class GetFormCommand extends GetFormCommand_base {
227
+ /** @internal type navigation helper, not in runtime. */
228
+ protected static __types: {
229
+ api: {
230
+ input: GetFormRequest;
231
+ output: GetFormResponse;
232
+ };
233
+ sdk: {
234
+ input: GetFormCommandInput;
235
+ output: GetFormCommandOutput;
236
+ };
237
+ };
227
238
  }
@@ -66,4 +66,15 @@ declare const GetMetadataCommand_base: {
66
66
  * @public
67
67
  */
68
68
  export declare class GetMetadataCommand extends GetMetadataCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: GetMetadataRequest;
73
+ output: GetMetadataResponse;
74
+ };
75
+ sdk: {
76
+ input: GetMetadataCommandInput;
77
+ output: GetMetadataCommandOutput;
78
+ };
79
+ };
69
80
  }
@@ -96,4 +96,15 @@ declare const GetThemeCommand_base: {
96
96
  * @public
97
97
  */
98
98
  export declare class GetThemeCommand extends GetThemeCommand_base {
99
+ /** @internal type navigation helper, not in runtime. */
100
+ protected static __types: {
101
+ api: {
102
+ input: GetThemeRequest;
103
+ output: GetThemeResponse;
104
+ };
105
+ sdk: {
106
+ input: GetThemeCommandInput;
107
+ output: GetThemeCommandOutput;
108
+ };
109
+ };
99
110
  }
@@ -78,4 +78,15 @@ declare const ListCodegenJobsCommand_base: {
78
78
  * @public
79
79
  */
80
80
  export declare class ListCodegenJobsCommand extends ListCodegenJobsCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: ListCodegenJobsRequest;
85
+ output: ListCodegenJobsResponse;
86
+ };
87
+ sdk: {
88
+ input: ListCodegenJobsCommandInput;
89
+ output: ListCodegenJobsCommandOutput;
90
+ };
91
+ };
81
92
  }
@@ -76,4 +76,15 @@ declare const ListComponentsCommand_base: {
76
76
  * @public
77
77
  */
78
78
  export declare class ListComponentsCommand extends ListComponentsCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: ListComponentsRequest;
83
+ output: ListComponentsResponse;
84
+ };
85
+ sdk: {
86
+ input: ListComponentsCommandInput;
87
+ output: ListComponentsCommandOutput;
88
+ };
89
+ };
79
90
  }
@@ -79,4 +79,15 @@ declare const ListFormsCommand_base: {
79
79
  * @public
80
80
  */
81
81
  export declare class ListFormsCommand extends ListFormsCommand_base {
82
+ /** @internal type navigation helper, not in runtime. */
83
+ protected static __types: {
84
+ api: {
85
+ input: ListFormsRequest;
86
+ output: ListFormsResponse;
87
+ };
88
+ sdk: {
89
+ input: ListFormsCommandInput;
90
+ output: ListFormsCommandOutput;
91
+ };
92
+ };
82
93
  }
@@ -74,4 +74,15 @@ declare const ListTagsForResourceCommand_base: {
74
74
  * @public
75
75
  */
76
76
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
77
+ /** @internal type navigation helper, not in runtime. */
78
+ protected static __types: {
79
+ api: {
80
+ input: ListTagsForResourceRequest;
81
+ output: ListTagsForResourceResponse;
82
+ };
83
+ sdk: {
84
+ input: ListTagsForResourceCommandInput;
85
+ output: ListTagsForResourceCommandOutput;
86
+ };
87
+ };
77
88
  }
@@ -75,4 +75,15 @@ declare const ListThemesCommand_base: {
75
75
  * @public
76
76
  */
77
77
  export declare class ListThemesCommand extends ListThemesCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: ListThemesRequest;
82
+ output: ListThemesResponse;
83
+ };
84
+ sdk: {
85
+ input: ListThemesCommandInput;
86
+ output: ListThemesCommandOutput;
87
+ };
88
+ };
78
89
  }
@@ -66,4 +66,15 @@ declare const PutMetadataFlagCommand_base: {
66
66
  * @public
67
67
  */
68
68
  export declare class PutMetadataFlagCommand extends PutMetadataFlagCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: PutMetadataFlagRequest;
73
+ output: {};
74
+ };
75
+ sdk: {
76
+ input: PutMetadataFlagCommandInput;
77
+ output: PutMetadataFlagCommandOutput;
78
+ };
79
+ };
69
80
  }
@@ -68,4 +68,15 @@ declare const RefreshTokenCommand_base: {
68
68
  * @public
69
69
  */
70
70
  export declare class RefreshTokenCommand extends RefreshTokenCommand_base {
71
+ /** @internal type navigation helper, not in runtime. */
72
+ protected static __types: {
73
+ api: {
74
+ input: RefreshTokenRequest;
75
+ output: RefreshTokenResponse;
76
+ };
77
+ sdk: {
78
+ input: RefreshTokenCommandInput;
79
+ output: RefreshTokenCommandOutput;
80
+ };
81
+ };
71
82
  }
@@ -291,4 +291,15 @@ declare const StartCodegenJobCommand_base: {
291
291
  * @public
292
292
  */
293
293
  export declare class StartCodegenJobCommand extends StartCodegenJobCommand_base {
294
+ /** @internal type navigation helper, not in runtime. */
295
+ protected static __types: {
296
+ api: {
297
+ input: StartCodegenJobRequest;
298
+ output: StartCodegenJobResponse;
299
+ };
300
+ sdk: {
301
+ input: StartCodegenJobCommandInput;
302
+ output: StartCodegenJobCommandOutput;
303
+ };
304
+ };
294
305
  }
@@ -73,4 +73,15 @@ declare const TagResourceCommand_base: {
73
73
  * @public
74
74
  */
75
75
  export declare class TagResourceCommand extends TagResourceCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: TagResourceRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: TagResourceCommandInput;
84
+ output: TagResourceCommandOutput;
85
+ };
86
+ };
76
87
  }
@@ -73,4 +73,15 @@ declare const UntagResourceCommand_base: {
73
73
  * @public
74
74
  */
75
75
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: UntagResourceRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: UntagResourceCommandInput;
84
+ output: UntagResourceCommandOutput;
85
+ };
86
+ };
76
87
  }
@@ -499,4 +499,15 @@ declare const UpdateComponentCommand_base: {
499
499
  * @public
500
500
  */
501
501
  export declare class UpdateComponentCommand extends UpdateComponentCommand_base {
502
+ /** @internal type navigation helper, not in runtime. */
503
+ protected static __types: {
504
+ api: {
505
+ input: UpdateComponentRequest;
506
+ output: UpdateComponentResponse;
507
+ };
508
+ sdk: {
509
+ input: UpdateComponentCommandInput;
510
+ output: UpdateComponentCommandOutput;
511
+ };
512
+ };
502
513
  }
@@ -376,4 +376,15 @@ declare const UpdateFormCommand_base: {
376
376
  * @public
377
377
  */
378
378
  export declare class UpdateFormCommand extends UpdateFormCommand_base {
379
+ /** @internal type navigation helper, not in runtime. */
380
+ protected static __types: {
381
+ api: {
382
+ input: UpdateFormRequest;
383
+ output: UpdateFormResponse;
384
+ };
385
+ sdk: {
386
+ input: UpdateFormCommandInput;
387
+ output: UpdateFormCommandOutput;
388
+ };
389
+ };
379
390
  }
@@ -119,4 +119,15 @@ declare const UpdateThemeCommand_base: {
119
119
  * @public
120
120
  */
121
121
  export declare class UpdateThemeCommand extends UpdateThemeCommand_base {
122
+ /** @internal type navigation helper, not in runtime. */
123
+ protected static __types: {
124
+ api: {
125
+ input: UpdateThemeRequest;
126
+ output: UpdateThemeResponse;
127
+ };
128
+ sdk: {
129
+ input: UpdateThemeCommandInput;
130
+ output: UpdateThemeCommandOutput;
131
+ };
132
+ };
122
133
  }
@@ -36,4 +36,15 @@ declare const CreateComponentCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class CreateComponentCommand extends CreateComponentCommand_base {}
39
+ export declare class CreateComponentCommand extends CreateComponentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateComponentRequest;
43
+ output: CreateComponentResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateComponentCommandInput;
47
+ output: CreateComponentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const CreateFormCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class CreateFormCommand extends CreateFormCommand_base {}
36
+ export declare class CreateFormCommand extends CreateFormCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateFormRequest;
40
+ output: CreateFormResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateFormCommandInput;
44
+ output: CreateFormCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const CreateThemeCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class CreateThemeCommand extends CreateThemeCommand_base {}
36
+ export declare class CreateThemeCommand extends CreateThemeCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateThemeRequest;
40
+ output: CreateThemeResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateThemeCommandInput;
44
+ output: CreateThemeCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -31,4 +31,15 @@ declare const DeleteComponentCommand_base: {
31
31
  >;
32
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
33
  };
34
- export declare class DeleteComponentCommand extends DeleteComponentCommand_base {}
34
+ export declare class DeleteComponentCommand extends DeleteComponentCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeleteComponentRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeleteComponentCommandInput;
42
+ output: DeleteComponentCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -31,4 +31,15 @@ declare const DeleteFormCommand_base: {
31
31
  >;
32
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
33
  };
34
- export declare class DeleteFormCommand extends DeleteFormCommand_base {}
34
+ export declare class DeleteFormCommand extends DeleteFormCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeleteFormRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeleteFormCommandInput;
42
+ output: DeleteFormCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -31,4 +31,15 @@ declare const DeleteThemeCommand_base: {
31
31
  >;
32
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
33
  };
34
- export declare class DeleteThemeCommand extends DeleteThemeCommand_base {}
34
+ export declare class DeleteThemeCommand extends DeleteThemeCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeleteThemeRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeleteThemeCommandInput;
42
+ output: DeleteThemeCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -37,4 +37,15 @@ declare const ExchangeCodeForTokenCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ExchangeCodeForTokenCommand extends ExchangeCodeForTokenCommand_base {}
40
+ export declare class ExchangeCodeForTokenCommand extends ExchangeCodeForTokenCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ExchangeCodeForTokenRequest;
44
+ output: ExchangeCodeForTokenResponse;
45
+ };
46
+ sdk: {
47
+ input: ExchangeCodeForTokenCommandInput;
48
+ output: ExchangeCodeForTokenCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -36,4 +36,15 @@ declare const ExportComponentsCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class ExportComponentsCommand extends ExportComponentsCommand_base {}
39
+ export declare class ExportComponentsCommand extends ExportComponentsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ExportComponentsRequest;
43
+ output: ExportComponentsResponse;
44
+ };
45
+ sdk: {
46
+ input: ExportComponentsCommandInput;
47
+ output: ExportComponentsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const ExportFormsCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ExportFormsCommand extends ExportFormsCommand_base {}
36
+ export declare class ExportFormsCommand extends ExportFormsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ExportFormsRequest;
40
+ output: ExportFormsResponse;
41
+ };
42
+ sdk: {
43
+ input: ExportFormsCommandInput;
44
+ output: ExportFormsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const ExportThemesCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ExportThemesCommand extends ExportThemesCommand_base {}
36
+ export declare class ExportThemesCommand extends ExportThemesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ExportThemesRequest;
40
+ output: ExportThemesResponse;
41
+ };
42
+ sdk: {
43
+ input: ExportThemesCommandInput;
44
+ output: ExportThemesCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const GetCodegenJobCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class GetCodegenJobCommand extends GetCodegenJobCommand_base {}
39
+ export declare class GetCodegenJobCommand extends GetCodegenJobCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetCodegenJobRequest;
43
+ output: GetCodegenJobResponse;
44
+ };
45
+ sdk: {
46
+ input: GetCodegenJobCommandInput;
47
+ output: GetCodegenJobCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const GetComponentCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class GetComponentCommand extends GetComponentCommand_base {}
36
+ export declare class GetComponentCommand extends GetComponentCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetComponentRequest;
40
+ output: GetComponentResponse;
41
+ };
42
+ sdk: {
43
+ input: GetComponentCommandInput;
44
+ output: GetComponentCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -29,4 +29,15 @@ declare const GetFormCommand_base: {
29
29
  >;
30
30
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
31
31
  };
32
- export declare class GetFormCommand extends GetFormCommand_base {}
32
+ export declare class GetFormCommand extends GetFormCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: GetFormRequest;
36
+ output: GetFormResponse;
37
+ };
38
+ sdk: {
39
+ input: GetFormCommandInput;
40
+ output: GetFormCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -33,4 +33,15 @@ declare const GetMetadataCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class GetMetadataCommand extends GetMetadataCommand_base {}
36
+ export declare class GetMetadataCommand extends GetMetadataCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetMetadataRequest;
40
+ output: GetMetadataResponse;
41
+ };
42
+ sdk: {
43
+ input: GetMetadataCommandInput;
44
+ output: GetMetadataCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const GetThemeCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class GetThemeCommand extends GetThemeCommand_base {}
36
+ export declare class GetThemeCommand extends GetThemeCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetThemeRequest;
40
+ output: GetThemeResponse;
41
+ };
42
+ sdk: {
43
+ input: GetThemeCommandInput;
44
+ output: GetThemeCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const ListCodegenJobsCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class ListCodegenJobsCommand extends ListCodegenJobsCommand_base {}
39
+ export declare class ListCodegenJobsCommand extends ListCodegenJobsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListCodegenJobsRequest;
43
+ output: ListCodegenJobsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListCodegenJobsCommandInput;
47
+ output: ListCodegenJobsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -36,4 +36,15 @@ declare const ListComponentsCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class ListComponentsCommand extends ListComponentsCommand_base {}
39
+ export declare class ListComponentsCommand extends ListComponentsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListComponentsRequest;
43
+ output: ListComponentsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListComponentsCommandInput;
47
+ output: ListComponentsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const ListFormsCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListFormsCommand extends ListFormsCommand_base {}
36
+ export declare class ListFormsCommand extends ListFormsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListFormsRequest;
40
+ output: ListFormsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListFormsCommandInput;
44
+ output: ListFormsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -37,4 +37,15 @@ declare const ListTagsForResourceCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const ListThemesCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListThemesCommand extends ListThemesCommand_base {}
36
+ export declare class ListThemesCommand extends ListThemesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListThemesRequest;
40
+ output: ListThemesResponse;
41
+ };
42
+ sdk: {
43
+ input: ListThemesCommandInput;
44
+ output: ListThemesCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -31,4 +31,15 @@ declare const PutMetadataFlagCommand_base: {
31
31
  >;
32
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
33
  };
34
- export declare class PutMetadataFlagCommand extends PutMetadataFlagCommand_base {}
34
+ export declare class PutMetadataFlagCommand extends PutMetadataFlagCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: PutMetadataFlagRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: PutMetadataFlagCommandInput;
42
+ output: PutMetadataFlagCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -33,4 +33,15 @@ declare const RefreshTokenCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class RefreshTokenCommand extends RefreshTokenCommand_base {}
36
+ export declare class RefreshTokenCommand extends RefreshTokenCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: RefreshTokenRequest;
40
+ output: RefreshTokenResponse;
41
+ };
42
+ sdk: {
43
+ input: RefreshTokenCommandInput;
44
+ output: RefreshTokenCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const StartCodegenJobCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class StartCodegenJobCommand extends StartCodegenJobCommand_base {}
39
+ export declare class StartCodegenJobCommand extends StartCodegenJobCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: StartCodegenJobRequest;
43
+ output: StartCodegenJobResponse;
44
+ };
45
+ sdk: {
46
+ input: StartCodegenJobCommandInput;
47
+ output: StartCodegenJobCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const TagResourceCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class TagResourceCommand extends TagResourceCommand_base {}
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const UntagResourceCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UntagResourceCommand extends UntagResourceCommand_base {}
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -36,4 +36,15 @@ declare const UpdateComponentCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UpdateComponentCommand extends UpdateComponentCommand_base {}
39
+ export declare class UpdateComponentCommand extends UpdateComponentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateComponentRequest;
43
+ output: UpdateComponentResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateComponentCommandInput;
47
+ output: UpdateComponentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const UpdateFormCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class UpdateFormCommand extends UpdateFormCommand_base {}
36
+ export declare class UpdateFormCommand extends UpdateFormCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateFormRequest;
40
+ output: UpdateFormResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateFormCommandInput;
44
+ output: UpdateFormCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const UpdateThemeCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class UpdateThemeCommand extends UpdateThemeCommand_base {}
36
+ export declare class UpdateThemeCommand extends UpdateThemeCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateThemeRequest;
40
+ output: UpdateThemeResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateThemeCommandInput;
44
+ output: UpdateThemeCommandOutput;
45
+ };
46
+ };
47
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplifyuibuilder",
3
3
  "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
4
- "version": "3.650.0",
4
+ "version": "3.654.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-amplifyuibuilder",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.650.0",
24
- "@aws-sdk/client-sts": "3.650.0",
25
- "@aws-sdk/core": "3.649.0",
26
- "@aws-sdk/credential-provider-node": "3.650.0",
27
- "@aws-sdk/middleware-host-header": "3.649.0",
28
- "@aws-sdk/middleware-logger": "3.649.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.649.0",
30
- "@aws-sdk/middleware-user-agent": "3.649.0",
31
- "@aws-sdk/region-config-resolver": "3.649.0",
32
- "@aws-sdk/types": "3.649.0",
33
- "@aws-sdk/util-endpoints": "3.649.0",
34
- "@aws-sdk/util-user-agent-browser": "3.649.0",
35
- "@aws-sdk/util-user-agent-node": "3.649.0",
36
- "@smithy/config-resolver": "^3.0.6",
37
- "@smithy/core": "^2.4.1",
38
- "@smithy/fetch-http-handler": "^3.2.5",
39
- "@smithy/hash-node": "^3.0.4",
40
- "@smithy/invalid-dependency": "^3.0.4",
41
- "@smithy/middleware-content-length": "^3.0.6",
42
- "@smithy/middleware-endpoint": "^3.1.1",
43
- "@smithy/middleware-retry": "^3.0.16",
44
- "@smithy/middleware-serde": "^3.0.4",
45
- "@smithy/middleware-stack": "^3.0.4",
46
- "@smithy/node-config-provider": "^3.1.5",
47
- "@smithy/node-http-handler": "^3.2.0",
48
- "@smithy/protocol-http": "^4.1.1",
49
- "@smithy/smithy-client": "^3.3.0",
50
- "@smithy/types": "^3.4.0",
51
- "@smithy/url-parser": "^3.0.4",
23
+ "@aws-sdk/client-sso-oidc": "3.654.0",
24
+ "@aws-sdk/client-sts": "3.654.0",
25
+ "@aws-sdk/core": "3.654.0",
26
+ "@aws-sdk/credential-provider-node": "3.654.0",
27
+ "@aws-sdk/middleware-host-header": "3.654.0",
28
+ "@aws-sdk/middleware-logger": "3.654.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.654.0",
30
+ "@aws-sdk/middleware-user-agent": "3.654.0",
31
+ "@aws-sdk/region-config-resolver": "3.654.0",
32
+ "@aws-sdk/types": "3.654.0",
33
+ "@aws-sdk/util-endpoints": "3.654.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.654.0",
35
+ "@aws-sdk/util-user-agent-node": "3.654.0",
36
+ "@smithy/config-resolver": "^3.0.8",
37
+ "@smithy/core": "^2.4.3",
38
+ "@smithy/fetch-http-handler": "^3.2.7",
39
+ "@smithy/hash-node": "^3.0.6",
40
+ "@smithy/invalid-dependency": "^3.0.6",
41
+ "@smithy/middleware-content-length": "^3.0.8",
42
+ "@smithy/middleware-endpoint": "^3.1.3",
43
+ "@smithy/middleware-retry": "^3.0.18",
44
+ "@smithy/middleware-serde": "^3.0.6",
45
+ "@smithy/middleware-stack": "^3.0.6",
46
+ "@smithy/node-config-provider": "^3.1.7",
47
+ "@smithy/node-http-handler": "^3.2.2",
48
+ "@smithy/protocol-http": "^4.1.3",
49
+ "@smithy/smithy-client": "^3.3.2",
50
+ "@smithy/types": "^3.4.2",
51
+ "@smithy/url-parser": "^3.0.6",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.16",
56
- "@smithy/util-defaults-mode-node": "^3.0.16",
57
- "@smithy/util-endpoints": "^2.1.0",
58
- "@smithy/util-middleware": "^3.0.4",
59
- "@smithy/util-retry": "^3.0.4",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.18",
56
+ "@smithy/util-defaults-mode-node": "^3.0.18",
57
+ "@smithy/util-endpoints": "^2.1.2",
58
+ "@smithy/util-middleware": "^3.0.6",
59
+ "@smithy/util-retry": "^3.0.6",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2",
62
62
  "uuid": "^9.0.1"