@react-pakistan/util-functions 1.23.11 → 1.23.13

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.
@@ -8,6 +8,12 @@ interface GetPaymentByIdArgs {
8
8
  }
9
9
  interface PostPaymentsArgs {
10
10
  currentPage: number;
11
+ include: {
12
+ [key: string]: any;
13
+ };
14
+ orderBy: {
15
+ [key: string]: any;
16
+ };
11
17
  pageLimit: number;
12
18
  prisma: any;
13
19
  queryWhere: {
@@ -34,7 +40,7 @@ interface DeletePaymentArgs {
34
40
  }
35
41
  export declare const getPayments: ({ prisma, }: GetPaymentsArgs) => Promise<Array<PaymentBE>>;
36
42
  export declare const getPaymentById: ({ id, prisma, }: GetPaymentByIdArgs) => Promise<PaymentBE>;
37
- export declare const postPayments: ({ currentPage, pageLimit, prisma, queryWhere, }: PostPaymentsArgs) => Promise<Array<PaymentBE>>;
43
+ export declare const postPayments: ({ currentPage, include, orderBy, pageLimit, prisma, queryWhere, }: PostPaymentsArgs) => Promise<Array<PaymentBE>>;
38
44
  export declare const postPayment: ({ amount, attachment, createdAt, currency, date, description, id, mode, paymentType, prisma, quoteInvoiceId, ref, }: PostPaymentArgs) => Promise<Array<PaymentBE>>;
39
45
  export declare const deletePayment: ({ id, prisma, }: DeletePaymentArgs) => Promise<PaymentBE>;
40
46
  export {};
@@ -29,18 +29,14 @@ const getPaymentById = (_b) => __awaiter(void 0, [_b], void 0, function* ({ id,
29
29
  return payment;
30
30
  });
31
31
  exports.getPaymentById = getPaymentById;
32
- const postPayments = (_c) => __awaiter(void 0, [_c], void 0, function* ({ currentPage, pageLimit, prisma, queryWhere, }) {
32
+ const postPayments = (_c) => __awaiter(void 0, [_c], void 0, function* ({ currentPage, include, orderBy, pageLimit, prisma, queryWhere, }) {
33
33
  const payments = yield prisma.$transaction([
34
34
  prisma.payment.count({
35
35
  where: queryWhere,
36
36
  }),
37
37
  prisma.payment.findMany({
38
- orderBy: {
39
- createdAt: 'desc',
40
- },
41
- include: {
42
- quoteInvoice: true,
43
- },
38
+ orderBy,
39
+ include,
44
40
  where: queryWhere,
45
41
  take: pageLimit,
46
42
  skip: (currentPage - 1) * pageLimit,
@@ -8,6 +8,12 @@ interface GetProductByIdArgs {
8
8
  }
9
9
  interface PostProductsArgs {
10
10
  currentPage: number;
11
+ include: {
12
+ [key: string]: any;
13
+ };
14
+ orderBy: {
15
+ [key: string]: any;
16
+ };
11
17
  pageLimit: number;
12
18
  prisma: any;
13
19
  queryWhere: {
@@ -35,7 +41,7 @@ interface DeleteProductArgs {
35
41
  }
36
42
  export declare const getProducts: ({ prisma, }: GetProductsArgs) => Promise<Array<ProductBE>>;
37
43
  export declare const getProductById: ({ prisma, id, }: GetProductByIdArgs) => Promise<ProductBE>;
38
- export declare const postProducts: ({ currentPage, pageLimit, prisma, queryWhere, }: PostProductsArgs) => Promise<Array<ProductBE>>;
44
+ export declare const postProducts: ({ currentPage, include, orderBy, pageLimit, prisma, queryWhere, }: PostProductsArgs) => Promise<Array<ProductBE>>;
39
45
  export declare const postProduct: ({ prisma, id, authorName, buyPrice, currency, description, image, isbn, name, productCategoryId, quantity, ref, salePrice, }: PostProductArgs) => Promise<Array<ProductBE>>;
40
46
  export declare const deleteProduct: ({ prisma, id, }: DeleteProductArgs) => Promise<ProductBE>;
41
47
  export {};
@@ -37,22 +37,17 @@ const getProductById = (_b) => __awaiter(void 0, [_b], void 0, function* ({ pris
37
37
  return product;
38
38
  });
39
39
  exports.getProductById = getProductById;
40
- const postProducts = (_c) => __awaiter(void 0, [_c], void 0, function* ({ currentPage, pageLimit, prisma, queryWhere, }) {
40
+ const postProducts = (_c) => __awaiter(void 0, [_c], void 0, function* ({ currentPage, include, orderBy, pageLimit, prisma, queryWhere, }) {
41
41
  const products = yield prisma.$transaction([
42
42
  prisma.product.count({
43
43
  where: queryWhere,
44
44
  }),
45
45
  prisma.product.findMany({
46
- orderBy: {
47
- createdAt: 'desc',
48
- },
49
- include: {
50
- productCategory: true,
51
- quotesInvoices: true,
52
- },
53
- where: queryWhere,
54
- take: pageLimit,
46
+ include,
47
+ orderBy,
55
48
  skip: (currentPage - 1) * pageLimit,
49
+ take: pageLimit,
50
+ where: queryWhere,
56
51
  }),
57
52
  ]);
58
53
  return products;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-pakistan/util-functions",
3
- "version": "1.23.11",
3
+ "version": "1.23.13",
4
4
  "description": "A library of all util functions",
5
5
  "main": "index.js",
6
6
  "scripts": {