@react-pakistan/util-functions 1.22.90 → 1.22.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { PaymentBE } from '../type';
|
|
2
|
-
interface
|
|
2
|
+
interface PostPaymentsReportArgs {
|
|
3
3
|
prisma: any;
|
|
4
4
|
queryWhere: {
|
|
5
5
|
[key: string]: any;
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
-
export declare const postPaymentsReport: ({ prisma, queryWhere, }:
|
|
8
|
+
export declare const postPaymentsReport: ({ prisma, queryWhere, }: PostPaymentsReportArgs) => Promise<Array<PaymentBE>>;
|
|
9
9
|
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { QuoteInvoiceBE } from '../type';
|
|
2
|
-
interface
|
|
2
|
+
interface PostQuotesInvoicesReportArgs {
|
|
3
3
|
prisma: any;
|
|
4
4
|
queryWhere: {
|
|
5
5
|
[key: string]: any;
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
-
export declare const postQuotesInvoicesReport: ({ prisma, queryWhere, }:
|
|
8
|
+
export declare const postQuotesInvoicesReport: ({ prisma, queryWhere, }: PostQuotesInvoicesReportArgs) => Promise<Array<QuoteInvoiceBE>>;
|
|
9
9
|
export {};
|