Toggle to reveal the summary of milestones and objectives for the Aurora redesign.
Objective: Deliver a cohesive multi-platform experience with accessibility at its core.
Key Milestones:
Quickly review the capabilities enabled in the latest sprint build.
The following features shipped with sprint 18:
Inspect the JavaScript API integration example when needed.
import { Client } from "@aurora/sdk";
const client = new Client({ token: process.env.AURORA_TOKEN });
async function getRecentActivities(userId) {
const activities = await client.activities.list({ userId, limit: 12 });
return activities.map(activity => ({
occurredAt: activity.timestamp,
description: activity.summary,
}));
}
getRecentActivities("user-205").then(console.table);