Skip to content

Commit

Permalink
fix: resolve api extract errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanay Yogesh Shah committed Oct 24, 2024
1 parent 76f1bf8 commit 1ee4481
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/amplify-gen1-codegen-auth-adapter/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export interface AuthSynthesizerOptions {
// (undocumented)
identityGroups?: GroupType[];
// (undocumented)
identityPoolName?: string;
// (undocumented)
identityProviders?: ProviderDescription[];
// (undocumented)
identityProvidersDetails?: IdentityProviderType[];
Expand All @@ -48,7 +50,7 @@ export interface AuthTriggerConnection {
export type AuthTriggerConnectionSourceMap = Partial<Record<keyof LambdaConfigType, string>>;

// @public (undocumented)
export const getAuthDefinition: ({ userPool, identityProviders, identityProvidersDetails, identityGroups, webClient, authTriggerConnections, guestLogin, mfaConfig, totpConfig, }: AuthSynthesizerOptions) => AuthDefinition;
export const getAuthDefinition: ({ userPool, identityPoolName, identityProviders, identityProvidersDetails, identityGroups, webClient, authTriggerConnections, guestLogin, mfaConfig, totpConfig, }: AuthSynthesizerOptions) => AuthDefinition;

// (No @packageDocumentation comment for this package)

Expand Down
2 changes: 2 additions & 0 deletions packages/amplify-gen2-codegen/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export interface AuthDefinition {
// (undocumented)
guestLogin?: boolean;
// (undocumented)
identityPoolName?: string;
// (undocumented)
lambdaTriggers?: Partial<AuthLambdaTriggers>;
// (undocumented)
loginOptions?: LoginOptions;
Expand Down

0 comments on commit 1ee4481

Please sign in to comment.