@@ -48,6 +48,12 @@ export const backendOutputStackMetadataSchema: z.ZodRecord<z.ZodString, z.ZodObj
4848 stackOutputs: string [];
4949}>>;
5050
51+ // @public (undocumented)
52+ export type CustomOutput = z .infer <typeof versionedCustomOutputSchema >;
53+
54+ // @public
55+ export const customOutputKey = " AWS::Amplify::Custom" ;
56+
5157// @public (undocumented)
5258export type GraphqlOutput = z .infer <typeof versionedGraphqlOutputSchema >;
5359
@@ -114,9 +120,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
114120 verificationMechanisms: z .ZodOptional <z .ZodString >;
115121 socialProviders: z .ZodOptional <z .ZodString >;
116122 oauthDomain: z .ZodOptional <z .ZodString >;
117- oauthScope: z .ZodOptional <z .ZodString >; /**
118- * re-export the storage output schema
119- */
123+ oauthScope: z .ZodOptional <z .ZodString >;
120124 oauthRedirectSignIn: z .ZodOptional <z .ZodString >;
121125 oauthRedirectSignOut: z .ZodOptional <z .ZodString >;
122126 oauthClientId: z .ZodOptional <z .ZodString >;
@@ -305,6 +309,26 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
305309 storageRegion: string ;
306310 };
307311 }>]>>;
312+ " AWS::Amplify::Custom" : z .ZodOptional <z .ZodDiscriminatedUnion <" version" , [z .ZodObject <{
313+ version: z .ZodLiteral <" 1" >;
314+ payload: z .ZodObject <{
315+ customOutputs: z .ZodString ;
316+ }, " strip" , z .ZodTypeAny , {
317+ customOutputs: string ;
318+ }, {
319+ customOutputs: string ;
320+ }>;
321+ }, " strip" , z .ZodTypeAny , {
322+ version: " 1" ;
323+ payload: {
324+ customOutputs: string ;
325+ };
326+ }, {
327+ version: " 1" ;
328+ payload: {
329+ customOutputs: string ;
330+ };
331+ }>]>>;
308332}, " strip" , z .ZodTypeAny , {
309333 " AWS::Amplify::Platform" ? : {
310334 version: " 1" ;
@@ -361,6 +385,12 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
361385 storageRegion: string ;
362386 };
363387 } | undefined ;
388+ " AWS::Amplify::Custom" ? : {
389+ version: " 1" ;
390+ payload: {
391+ customOutputs: string ;
392+ };
393+ } | undefined ;
364394}, {
365395 " AWS::Amplify::Platform" ? : {
366396 version: " 1" ;
@@ -417,6 +447,12 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
417447 storageRegion: string ;
418448 };
419449 } | undefined ;
450+ " AWS::Amplify::Custom" ? : {
451+ version: " 1" ;
452+ payload: {
453+ customOutputs: string ;
454+ };
455+ } | undefined ;
420456}>;
421457
422458// @public (undocumented)
@@ -551,6 +587,28 @@ export const versionedAuthOutputSchema: z.ZodDiscriminatedUnion<"version", [z.Zo
551587 };
552588}>]>;
553589
590+ // @public (undocumented)
591+ export const versionedCustomOutputSchema: z .ZodDiscriminatedUnion <" version" , [z .ZodObject <{
592+ version: z .ZodLiteral <" 1" >;
593+ payload: z .ZodObject <{
594+ customOutputs: z .ZodString ;
595+ }, " strip" , z .ZodTypeAny , {
596+ customOutputs: string ;
597+ }, {
598+ customOutputs: string ;
599+ }>;
600+ }, " strip" , z .ZodTypeAny , {
601+ version: " 1" ;
602+ payload: {
603+ customOutputs: string ;
604+ };
605+ }, {
606+ version: " 1" ;
607+ payload: {
608+ customOutputs: string ;
609+ };
610+ }>]>;
611+
554612// @public (undocumented)
555613export const versionedGraphqlOutputSchema: z .ZodDiscriminatedUnion <" version" , [z .ZodObject <{
556614 version: z .ZodLiteral <" 1" >;
0 commit comments