MCPcopy Create free account
hub / github.com/astercloud/aster / getRecentEvents

Method getRecentEvents

studio/src/api/client.ts:113–115  ·  view source on GitHub ↗
(limit: number = 100)

Source from the content-addressed store, hash-verified

111
112 // Events
113 async getRecentEvents(limit: number = 100): Promise<EventsResult> {
114 return this.fetch<EventsResult>(`/dashboard/events?limit=${limit}`);
115 }
116
117 async getEventsSince(cursor: number): Promise<EventsResult> {
118 return this.fetch<EventsResult>(`/dashboard/events/since/${cursor}`);

Callers 1

useRecentEventsFunction · 0.80

Calls 1

fetchMethod · 0.95

Tested by

no test coverage detected