webhookDeliveries function
Implementation
@riverpod
Future<List<WebhookDelivery>> webhookDeliveries(
Ref ref,
String webhookId,
) async {
final ds = ref.watch(orgDatasourceProvider);
final models = await ds.getWebhookDeliveries(webhookId);
return models.map((m) => m.toEntity()).toList();
}