Alokai

Config

interface Config<T = any> extends ClientConfig {
	client?: ApolloClient<T>;
	cookieOptions?: Record<string, CookieOptions>;
	customApolloHttpLinkOptions?: HttpOptions;
	customOptions?: Partial<ApolloClientOptions<any>>;
	imageProvider: string;
	magentoApiEndpoint: string;
	magentoBaseUrl: string;
	overrides: Endpoints;
	recaptcha: RecaptchaConfig;
	storage: Storage;
}

Properties

NameRequiredTypeDescription
clientOptionalApolloClient<T>
cookieOptionsOptionalRecord<string, CookieOptions>
customApolloHttpLinkOptionsOptionalHttpOptions
customOptionsOptionalPartial<ApolloClientOptions<any>>
imageProviderRequiredstring
magentoApiEndpointRequiredstring
magentoBaseUrlRequiredstring
overridesRequiredEndpoints
recaptchaRequiredRecaptchaConfig
storageRequiredStorage

Referenced Types

On this page