export const endpointDescriptions = { admin: { events: { description: 'Returns **the last 100** from the Unleash instance when called without a query parameter. When called with a `project` parameter, returns **all events** for the specified project.\n\nIf the provided project does not exist, the list of events will be empty.', summary: 'Get the most recent events from the Unleash instance or all events related to a project.', }, eventsPerFeature: { description: 'Returns all events related to the specified feature toggle. If the feature toggle does not exist, the list of events will be empty.', summary: 'Get all events related to a specific feature toggle.', }, }, } as const;