@@ -33,6 +33,11 @@ import {
3333 ExportThemesCommandInput ,
3434 ExportThemesCommandOutput ,
3535} from "./commands/ExportThemesCommand" ;
36+ import {
37+ GetCodegenJobCommand ,
38+ GetCodegenJobCommandInput ,
39+ GetCodegenJobCommandOutput ,
40+ } from "./commands/GetCodegenJobCommand" ;
3641import {
3742 GetComponentCommand ,
3843 GetComponentCommandInput ,
@@ -41,6 +46,11 @@ import {
4146import { GetFormCommand , GetFormCommandInput , GetFormCommandOutput } from "./commands/GetFormCommand" ;
4247import { GetMetadataCommand , GetMetadataCommandInput , GetMetadataCommandOutput } from "./commands/GetMetadataCommand" ;
4348import { GetThemeCommand , GetThemeCommandInput , GetThemeCommandOutput } from "./commands/GetThemeCommand" ;
49+ import {
50+ ListCodegenJobsCommand ,
51+ ListCodegenJobsCommandInput ,
52+ ListCodegenJobsCommandOutput ,
53+ } from "./commands/ListCodegenJobsCommand" ;
4454import {
4555 ListComponentsCommand ,
4656 ListComponentsCommandInput ,
@@ -58,6 +68,11 @@ import {
5868 RefreshTokenCommandInput ,
5969 RefreshTokenCommandOutput ,
6070} from "./commands/RefreshTokenCommand" ;
71+ import {
72+ StartCodegenJobCommand ,
73+ StartCodegenJobCommandInput ,
74+ StartCodegenJobCommandOutput ,
75+ } from "./commands/StartCodegenJobCommand" ;
6176import {
6277 UpdateComponentCommand ,
6378 UpdateComponentCommandInput ,
@@ -77,15 +92,18 @@ const commands = {
7792 ExportComponentsCommand,
7893 ExportFormsCommand,
7994 ExportThemesCommand,
95+ GetCodegenJobCommand,
8096 GetComponentCommand,
8197 GetFormCommand,
8298 GetMetadataCommand,
8399 GetThemeCommand,
100+ ListCodegenJobsCommand,
84101 ListComponentsCommand,
85102 ListFormsCommand,
86103 ListThemesCommand,
87104 PutMetadataFlagCommand,
88105 RefreshTokenCommand,
106+ StartCodegenJobCommand,
89107 UpdateComponentCommand,
90108 UpdateFormCommand,
91109 UpdateThemeCommand,
@@ -220,6 +238,17 @@ export interface AmplifyUIBuilder {
220238 cb : ( err : any , data ?: ExportThemesCommandOutput ) => void
221239 ) : void ;
222240
241+ /**
242+ * @see {@link GetCodegenJobCommand }
243+ */
244+ getCodegenJob ( args : GetCodegenJobCommandInput , options ?: __HttpHandlerOptions ) : Promise < GetCodegenJobCommandOutput > ;
245+ getCodegenJob ( args : GetCodegenJobCommandInput , cb : ( err : any , data ?: GetCodegenJobCommandOutput ) => void ) : void ;
246+ getCodegenJob (
247+ args : GetCodegenJobCommandInput ,
248+ options : __HttpHandlerOptions ,
249+ cb : ( err : any , data ?: GetCodegenJobCommandOutput ) => void
250+ ) : void ;
251+
223252 /**
224253 * @see {@link GetComponentCommand }
225254 */
@@ -264,6 +293,20 @@ export interface AmplifyUIBuilder {
264293 cb : ( err : any , data ?: GetThemeCommandOutput ) => void
265294 ) : void ;
266295
296+ /**
297+ * @see {@link ListCodegenJobsCommand }
298+ */
299+ listCodegenJobs (
300+ args : ListCodegenJobsCommandInput ,
301+ options ?: __HttpHandlerOptions
302+ ) : Promise < ListCodegenJobsCommandOutput > ;
303+ listCodegenJobs ( args : ListCodegenJobsCommandInput , cb : ( err : any , data ?: ListCodegenJobsCommandOutput ) => void ) : void ;
304+ listCodegenJobs (
305+ args : ListCodegenJobsCommandInput ,
306+ options : __HttpHandlerOptions ,
307+ cb : ( err : any , data ?: ListCodegenJobsCommandOutput ) => void
308+ ) : void ;
309+
267310 /**
268311 * @see {@link ListComponentsCommand }
269312 */
@@ -325,6 +368,20 @@ export interface AmplifyUIBuilder {
325368 cb : ( err : any , data ?: RefreshTokenCommandOutput ) => void
326369 ) : void ;
327370
371+ /**
372+ * @see {@link StartCodegenJobCommand }
373+ */
374+ startCodegenJob (
375+ args : StartCodegenJobCommandInput ,
376+ options ?: __HttpHandlerOptions
377+ ) : Promise < StartCodegenJobCommandOutput > ;
378+ startCodegenJob ( args : StartCodegenJobCommandInput , cb : ( err : any , data ?: StartCodegenJobCommandOutput ) => void ) : void ;
379+ startCodegenJob (
380+ args : StartCodegenJobCommandInput ,
381+ options : __HttpHandlerOptions ,
382+ cb : ( err : any , data ?: StartCodegenJobCommandOutput ) => void
383+ ) : void ;
384+
328385 /**
329386 * @see {@link UpdateComponentCommand }
330387 */
0 commit comments