• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-client-gateway / 16268128265

14 Jul 2025 01:25PM UTC coverage: 89.574% (-0.1%) from 89.688%
16268128265

Pull #2627

github

web-flow
Merge 749ddcc69 into e22deb33b
Pull Request #2627: feat: add datasource for export api

3471 of 4246 branches covered (81.75%)

Branch coverage included in aggregate %.

40 of 63 new or added lines in 7 files covered. (63.49%)

1 existing line in 1 file now uncovered.

12019 of 13047 relevant lines covered (92.12%)

545.47 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/modules/csv-export/v1/datasources/export-api.interface.ts
1
import type { Page } from '@/domain/entities/page.entity';
2
import type { TransactionExport } from '@/modules/csv-export/v1/entities/transaction-export.entity';
3
import type { Raw } from '@/validation/entities/raw.entity';
4

NEW
5
export const IExportApi = Symbol('IExportApi');
×
6

7
export interface IExportApi {
8
  export(args: {
9
    safeAddress: `0x${string}`;
10
    executionDateGte: string; //todo Date?
11
    executionDateLte: string; //todo Date?
12
    limit?: number;
13
    offset?: number;
14
  }): Promise<Raw<Page<TransactionExport>>>;
15
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc