@bookmypuja-tech/bmp-pdf 0.3.34 → 0.3.36

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
@@ -1864,7 +1864,8 @@ var A4PujaList = ({
1864
1864
  marginBottom: 10,
1865
1865
  fontSize: 18,
1866
1866
  padding: 10,
1867
- border: "1px dotted black"
1867
+ border: "1px dotted black",
1868
+ position: "relative"
1868
1869
  },
1869
1870
  wrap: false
1870
1871
  },
@@ -1906,7 +1907,19 @@ var A4PujaList = ({
1906
1907
  },
1907
1908
  /* @__PURE__ */ React12.createElement(Text_default, null, `${booking.devoteeName} ----- ${booking.nakshatra} ----- ${booking.pujaName}`)
1908
1909
  )
1909
- )
1910
+ ),
1911
+ /* @__PURE__ */ React12.createElement(View7, null, /* @__PURE__ */ React12.createElement(
1912
+ Text_default,
1913
+ {
1914
+ style: {
1915
+ textAlign: "center",
1916
+ marginTop: 10,
1917
+ fontSize: 10,
1918
+ opacity: 0.5
1919
+ }
1920
+ },
1921
+ `~~~ bookmypuja.app - Your Puja, Our Commitment ~~~`
1922
+ ))
1910
1923
  );
1911
1924
  }
1912
1925
  );
@@ -3348,7 +3361,9 @@ var A4Invoice = ({ data }) => {
3348
3361
  color: "#333333"
3349
3362
  }
3350
3363
  },
3351
- item.pujaDate
3364
+ item.pujaDate,
3365
+ " ",
3366
+ item.timing ? `- ${item.timing}` : null
3352
3367
  ) : null,
3353
3368
  item.repeatEndDate && item.repeatStartDate ? /* @__PURE__ */ React17.createElement(
3354
3369
  Text_default,
@@ -3360,7 +3375,9 @@ var A4Invoice = ({ data }) => {
3360
3375
  },
3361
3376
  item.repeatStartDate,
3362
3377
  " to ",
3363
- item.repeatEndDate
3378
+ item.repeatEndDate,
3379
+ " ",
3380
+ item.timing ? `- ${item.timing}` : null
3364
3381
  ) : null
3365
3382
  ),
3366
3383
  /* @__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.36",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",