UNPKG

@amirmarmul/waba-common

Version:

![GitHub release](https://img.shields.io/github/v/release/amirmarmul/waba-common?style=flat-square)

34 lines (33 loc) 739 B
export interface Report { accountId: string; params: ReportParams; status: string; file?: string; } export interface ReportParams { transactionDate?: ParamsDate; createdDate?: ParamsDate; sentDate?: ParamsDate; deliveryReportDate?: ParamsDate; area?: string; customerId?: string; senderId?: string; creatorId?: string; senderName?: string; vendor?: string; operator?: string; productName?: string; category?: string; status?: string; type?: string; } export declare class ParamsDate { dateSince: Date; dateUntil: Date; } export declare enum ReportStatus { Created = "created", Completed = "completed", Empty = "empty", Failed = "failed" }