@bookmypuja-tech/bmp-pdf 0.3.34 → 0.3.35

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.
package/dist/index.d.ts CHANGED
@@ -239,6 +239,7 @@ interface IInvoiceData {
239
239
  repeatStartDate?: string;
240
240
  repeatEndDate?: string;
241
241
  pujaDate?: string;
242
+ timing: string;
242
243
  }[];
243
244
  platformCharges?: string;
244
245
  gst?: string;
package/dist/index.js CHANGED
@@ -3348,7 +3348,9 @@ var A4Invoice = ({ data }) => {
3348
3348
  color: "#333333"
3349
3349
  }
3350
3350
  },
3351
- item.pujaDate
3351
+ item.pujaDate,
3352
+ " ",
3353
+ item.timing ? `- ${item.timing}` : null
3352
3354
  ) : null,
3353
3355
  item.repeatEndDate && item.repeatStartDate ? /* @__PURE__ */ React17.createElement(
3354
3356
  Text_default,
@@ -3360,7 +3362,9 @@ var A4Invoice = ({ data }) => {
3360
3362
  },
3361
3363
  item.repeatStartDate,
3362
3364
  " to ",
3363
- item.repeatEndDate
3365
+ item.repeatEndDate,
3366
+ " ",
3367
+ item.timing ? `- ${item.timing}` : null
3364
3368
  ) : null
3365
3369
  ),
3366
3370
  /* @__PURE__ */ React17.createElement(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bookmypuja-tech/bmp-pdf",
3
3
  "description": "PDF Report Generation for Temple360 and T-360 by BookMyPuja",
4
- "version": "0.3.34",
4
+ "version": "0.3.35",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",