Skip to main content

Interface: AllegroSDK

Defined in: types.ts:77

The top-level Allegro SDK instance, available as window.allegro.

Example

window.allegro.push((allegro) => {
console.log(allegro.member.isAuthenticated());
});

Methods

debug()?

optional debug(): void

Defined in: types.ts:149

Enable SDK debug mode from the console: window.allegro.debug()

Returns

void


push()

push(callback): void

Defined in: types.ts:95

Enqueue a callback to run once the SDK is ready.

If the SDK has already initialised, the callback is invoked synchronously. This mirrors the window.allegro.push(fn) usage pattern.

Parameters

ParameterTypeDescription
callbackAllegroCallbackFunction that receives the fully initialised SDK instance.

Returns

void

Example

window.allegro.push((allegro) => {
if (allegro.member.isAuthenticated()) {
console.log('Logged in!');
}
});

renderComponentsIn()

renderComponentsIn(root): void

Defined in: types.ts:162

Render all registered Allegro components found within the given root. Use this to render components inside a shadow DOM or other non-document root.

Parameters

ParameterType
rootElement | Document | ShadowRoot

Returns

void

Example

window.allegro.push((allegro) => {
allegro.renderComponentsIn(myShadowRoot);
});

track()

track(eventName, data?): Promise<TrackResponse>

Defined in: types.ts:116

Track a named event with optional metadata.

Page context (URL, title, referer) is collected automatically. Pass additional fields via data to enrich the event.

Parameters

ParameterTypeDescription
eventNamestringDescriptive snake_case event name, e.g. "article_read".
data?TrackEventDataOptional event metadata.

Returns

Promise<TrackResponse>

Resolves with the recorded event ID.

Example

await allegro.track('article_read', {
content_id: '12345',
content_type: 'article',
publisher: 'newsroom',
});

Properties

PropertyTypeDescriptionDefined in
componentsRecord<string, typeof HTMLElement>Registered custom web components.types.ts:143
httpHttpClientHTTP client pre-configured with the session JWT and base URL. Use this to make authenticated API calls to the Allegro backend from outside the SDK, the same way internal modules do. Example window.allegro.push(async (allegro) => { const data = await allegro.http.get('/api/some-endpoint'); });types.ts:131
interactionInteractionNamespaceInteraction trigger and management methods.types.ts:137
magicLinkValidation?"authenticated" | "failed" | nullThe result of magic link token validation, if one was attempted on this page load. Set synchronously before the corresponding window event is dispatched, so components that load after the event fires can still read the outcome.types.ts:170
memberMemberNamespaceMember authentication and identity methods.types.ts:134
purchasePurchaseNamespacePurchase initiation and token exchange methods.types.ts:140
tenantTenantConfigTenant-specific configuration (login providers, cookie domain, etc.).types.ts:146