@bookmypuja-tech/bmp-pdf 0.2.21 → 0.2.23
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 +3 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ interface IPrasadReport {
|
|
|
120
120
|
|
|
121
121
|
interface IPuja {
|
|
122
122
|
name: string;
|
|
123
|
+
price: string;
|
|
123
124
|
bookings: {
|
|
124
125
|
invoiceNumber: string;
|
|
125
126
|
devoteeName: string;
|
|
@@ -169,14 +170,14 @@ declare const printDevoteeReceipt2Inch: (data: IPujaReceipt) => Promise<void>;
|
|
|
169
170
|
declare const printTotalReceipt2Inch: (data: ITotalReceipt) => Promise<void>;
|
|
170
171
|
declare const printePujaReport2Inch: (data: IPujaReport) => Promise<void>;
|
|
171
172
|
declare const printQuickPrintReceipt2Inch: (data: IQuickReport) => Promise<void>;
|
|
172
|
-
type IReportOptions = "kitchen" | "transaction" | "prasad-delivery" | "prasad" | "puja" | "puja-summary" | "combined-report";
|
|
173
|
+
type IReportOptions = "kitchen" | "transaction" | "prasad-delivery" | "prasad" | "puja-detailed" | "puja-summary" | "combined-report";
|
|
173
174
|
type IReportSize = "A4";
|
|
174
175
|
type ReportDataTypes = {
|
|
175
176
|
kitchen: KitchenReportProps;
|
|
176
177
|
transaction: ITransactionReport;
|
|
177
178
|
"prasad-delivery": IPrasadDelivery;
|
|
178
179
|
prasad: IPrasadReport;
|
|
179
|
-
puja: IPujaList;
|
|
180
|
+
"puja-detailed": IPujaList;
|
|
180
181
|
"puja-summary": ISummaryPujaList;
|
|
181
182
|
"combined-report": CombinedReportData;
|
|
182
183
|
};
|
package/dist/index.js
CHANGED
package/package.json
CHANGED