Axinom Mosaic Libraries
    Preparing search index...

    Variable managedIdProviderDefaultsConst

    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 }[];
      }
    • 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 }[];
      }