managedIdProviderDefaults: {
    AX_APPLE: {
        additionalParams: {
            response_mode: string;
        };
        discoveryDocumentUrl: string;
        protocol: IdpProtocol;
        scopes: {
            default: boolean;
            name: string;
        }[];
    };
    AX_AUTH: {
        protocol: IdpProtocol;
        scopes: {
            default: boolean;
            name: string;
        }[];
    };
    AX_FACEBOOK: {
        authorizationEndpointUrl: string;
        protocol: IdpProtocol;
        scopes: {
            default: boolean;
            name: string;
        }[];
        tokenEndpointUrl: string;
        userInfoEndpointUrl: string;
    };
    AX_GOOGLE: {
        additionalParams: {
            access_type: string;
        };
        discoveryDocumentUrl: string;
        protocol: IdpProtocol;
        providerIconUrl: string;
        scopes: {
            default: boolean;
            name: string;
        }[];
    };
} = ...

Type declaration

  • AX_APPLE: {
        additionalParams: {
            response_mode: string;
        };
        discoveryDocumentUrl: string;
        protocol: IdpProtocol;
        scopes: {
            default: boolean;
            name: string;
        }[];
    }
    • additionalParams: {
          response_mode: string;
      }
      • response_mode: string
    • discoveryDocumentUrl: string
    • protocol: IdpProtocol
    • scopes: {
          default: boolean;
          name: string;
      }[]
  • AX_AUTH: {
        protocol: IdpProtocol;
        scopes: {
            default: boolean;
            name: string;
        }[];
    }
    • protocol: IdpProtocol
    • scopes: {
          default: boolean;
          name: string;
      }[]
  • AX_FACEBOOK: {
        authorizationEndpointUrl: string;
        protocol: IdpProtocol;
        scopes: {
            default: boolean;
            name: string;
        }[];
        tokenEndpointUrl: string;
        userInfoEndpointUrl: string;
    }
    • authorizationEndpointUrl: string
    • protocol: IdpProtocol
    • scopes: {
          default: boolean;
          name: string;
      }[]
    • tokenEndpointUrl: string
    • userInfoEndpointUrl: string
  • AX_GOOGLE: {
        additionalParams: {
            access_type: string;
        };
        discoveryDocumentUrl: string;
        protocol: IdpProtocol;
        providerIconUrl: string;
        scopes: {
            default: boolean;
            name: string;
        }[];
    }
    • additionalParams: {
          access_type: string;
      }
      • access_type: string
    • discoveryDocumentUrl: string
    • protocol: IdpProtocol
    • providerIconUrl: string
    • scopes: {
          default: boolean;
          name: string;
      }[]

Generated using TypeDoc