ubk.erp.webpack 1.2.3 → 1.2.5

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/README.md CHANGED
@@ -257,6 +257,7 @@ const GeneralSettingPage = ({ token }) => {
257
257
  | `LibraryAssignStudent` | Assign/remove student membership. |
258
258
  | `LibraryCategory` | Manage book categories. |
259
259
  | `LibraryReport` | Monthly report. |
260
+ | `LibraryRenewalReport` | Library Report. |
260
261
 
261
262
  # 📚 Library `IssueReturn` — Return Callback
262
263
 
@@ -294,21 +295,11 @@ const LibraryPage = ({ token }) => {
294
295
  // Example returnArray:
295
296
  const example = [
296
297
  {
297
- studentId: 8,
298
- fromDate: "2026-09-13",
299
- toDate: "2026-08-13",
300
- customField1: 21,
301
- description: "Mathematics-John Smith",
302
- amount: 100,
303
- },
304
- {
305
- studentId: 8,
306
- fromDate: "2026-09-13",
307
- toDate: "2026-08-13",
308
- customField1: 22,
309
- description: "Science-Jane Doe",
310
- amount: 50,
311
- },
298
+ amount: 0,
299
+ books: "[{id:"2",fine_amount:"20",return_date:"2026-08-01",issue_date:"2026-08-18",book_issues_id:"76",book_title:"BOOK 1",author:"R Mitra",publish:"S R Publication",day_late:"17",totalfine:"340"}]",
300
+ collection_type: "FINE_PAY_LATER",
301
+ member_id: "9"
302
+ }
312
303
  ];
313
304
  };
314
305