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

safe-global / safe-client-gateway / 16565880199

28 Jul 2025 09:52AM UTC coverage: 89.606% (-0.04%) from 89.65%
16565880199

push

github

web-flow
feat: add datasource for export api (#2627)

3491 of 4263 branches covered (81.89%)

Branch coverage included in aggregate %.

48 of 64 new or added lines in 7 files covered. (75.0%)

12069 of 13102 relevant lines covered (92.12%)

543.73 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;
11
    executionDateLte: string;
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