umwd-components 0.1.712 → 0.1.713

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.
@@ -2,8 +2,7 @@
2
2
  * INFO Fetch all Invoices
3
3
  * used by the Invoices table in the admin panel
4
4
  */
5
- declare function getAllInvoices(currentPage: number, rowsPerPage: number, order: "asc" | "desc", orderBy: string, is_archive?: boolean[], // default to only non-archived OPOs
6
- filters?: {
5
+ declare function getAllInvoices(currentPage: number, rowsPerPage: number, order: "asc" | "desc", orderBy: string, filters?: {
7
6
  [key: string]: string;
8
7
  }): Promise<any>;
9
8
  export { getAllInvoices };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umwd-components",
3
- "version": "0.1.712",
3
+ "version": "0.1.713",
4
4
  "description": "UMWD Component library",
5
5
  "main": "dist/src/index.js",
6
6
  "module": "dist/src/index.js",
@@ -17,7 +17,7 @@ async function getAllInvoices(
17
17
  rowsPerPage: number,
18
18
  order: "asc" | "desc",
19
19
  orderBy: string,
20
- is_archive: boolean[] = [false], // default to only non-archived OPOs
20
+ // is_archive: boolean[] = [false], // default to only non-archived OPOs
21
21
  filters: { [key: string]: string } = {}
22
22
  ) {
23
23
  noStore();