@classytic/commerce-sdk 0.1.2 → 0.2.1
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 +277 -146
- package/dist/accounting/api/account.d.ts +49 -0
- package/dist/accounting/api/account.js +45 -0
- package/dist/accounting/api/budget.d.ts +76 -0
- package/dist/accounting/api/budget.js +82 -0
- package/dist/accounting/api/constants.d.ts +58 -0
- package/dist/accounting/api/constants.js +79 -0
- package/dist/accounting/api/fiscal-period.d.ts +31 -0
- package/dist/accounting/api/fiscal-period.js +30 -0
- package/dist/accounting/api/index.d.ts +7 -0
- package/dist/accounting/api/journal-entry.d.ts +66 -0
- package/dist/accounting/api/journal-entry.js +72 -0
- package/dist/accounting/api/posting.d.ts +55 -0
- package/dist/accounting/api/posting.js +70 -0
- package/dist/accounting/api/reports.d.ts +63 -0
- package/dist/accounting/api/reports.js +81 -0
- package/dist/accounting/hooks/account.d.ts +29 -0
- package/dist/accounting/hooks/account.js +102 -0
- package/dist/accounting/hooks/budget.d.ts +39 -0
- package/dist/accounting/hooks/budget.js +106 -0
- package/dist/accounting/hooks/fiscal-period.d.ts +22 -0
- package/dist/accounting/hooks/fiscal-period.js +52 -0
- package/dist/accounting/hooks/index.d.ts +6 -0
- package/dist/accounting/hooks/journal-entry.d.ts +37 -0
- package/dist/accounting/hooks/journal-entry.js +89 -0
- package/dist/accounting/hooks/posting.d.ts +128 -0
- package/dist/accounting/hooks/posting.js +119 -0
- package/dist/accounting/hooks/reports.d.ts +32 -0
- package/dist/accounting/hooks/reports.js +131 -0
- package/dist/accounting/index.d.ts +15 -0
- package/dist/accounting/index.js +15 -0
- package/dist/accounting/types/index.d.ts +375 -0
- package/dist/analytics/api/analytics.d.ts +16 -0
- package/dist/analytics/api/analytics.js +27 -0
- package/dist/analytics/api/index.d.ts +1 -0
- package/dist/analytics/hooks/analytics.d.ts +12 -0
- package/dist/analytics/hooks/analytics.js +33 -0
- package/dist/analytics/hooks/index.d.ts +1 -0
- package/dist/analytics/index.d.ts +4 -27
- package/dist/analytics/index.js +4 -6
- package/dist/analytics/types.d.ts +46 -0
- package/dist/audit/api/audit.d.ts +17 -0
- package/dist/audit/api/audit.js +21 -0
- package/dist/audit/hooks/audit.d.ts +17 -0
- package/dist/audit/hooks/audit.js +38 -0
- package/dist/audit/index.d.ts +4 -0
- package/dist/audit/index.js +4 -0
- package/dist/audit/types/index.d.ts +32 -0
- package/dist/auth/api/user-data.d.ts +30 -0
- package/dist/auth/api/user-data.js +70 -0
- package/dist/auth/hooks/user-search.d.ts +32 -0
- package/dist/auth/hooks/user-search.js +51 -0
- package/dist/auth/index.d.ts +4 -39
- package/dist/auth/index.js +5 -5
- package/dist/auth/types.d.ts +46 -0
- package/dist/auth/types.js +27 -0
- package/dist/catalog/api/category.d.ts +97 -0
- package/dist/catalog/api/category.js +109 -0
- package/dist/catalog/api/index.d.ts +4 -0
- package/dist/catalog/api/product.d.ts +136 -0
- package/dist/catalog/api/product.js +142 -0
- package/dist/catalog/api/review.d.ts +32 -0
- package/dist/catalog/api/review.js +41 -0
- package/dist/catalog/api/size-guide.d.ts +46 -0
- package/dist/catalog/api/size-guide.js +58 -0
- package/dist/catalog/hooks/category.d.ts +201 -0
- package/dist/catalog/hooks/category.js +295 -0
- package/dist/catalog/hooks/index.d.ts +4 -0
- package/dist/catalog/hooks/product.d.ts +165 -0
- package/dist/catalog/hooks/product.js +267 -0
- package/dist/catalog/hooks/review.d.ts +18 -0
- package/dist/catalog/hooks/review.js +38 -0
- package/dist/catalog/hooks/size-guide.d.ts +136 -0
- package/dist/catalog/hooks/size-guide.js +173 -0
- package/dist/catalog/index.d.ts +13 -571
- package/dist/catalog/index.js +10 -9
- package/dist/catalog/prefetch.d.ts +29 -0
- package/dist/catalog/prefetch.js +32 -0
- package/dist/catalog/types/category.d.ts +168 -0
- package/dist/catalog/types/index.d.ts +4 -0
- package/dist/catalog/types/product.d.ts +261 -0
- package/dist/catalog/types/review.d.ts +48 -0
- package/dist/catalog/types/size-guide.d.ts +118 -0
- package/dist/client.d.ts +138 -0
- package/dist/client.js +129 -0
- package/dist/content/api/cms.d.ts +27 -0
- package/dist/content/api/cms.js +43 -0
- package/dist/content/api/index.d.ts +2 -0
- package/dist/content/api/media.d.ts +74 -0
- package/dist/content/api/media.js +77 -0
- package/dist/content/hooks/cms.d.ts +31 -0
- package/dist/content/hooks/cms.js +62 -0
- package/dist/content/hooks/index.d.ts +2 -0
- package/dist/content/hooks/media.d.ts +74 -0
- package/dist/content/hooks/media.js +153 -0
- package/dist/content/index.d.ts +7 -309
- package/dist/content/index.js +6 -6
- package/dist/content/types/cms.d.ts +390 -0
- package/dist/content/types/media.d.ts +110 -0
- package/dist/core/api-factory.d.ts +17 -0
- package/dist/core/api-factory.js +39 -0
- package/dist/core/api-handler.d.ts +53 -0
- package/dist/core/api-handler.js +89 -0
- package/dist/core/index.d.ts +4 -166
- package/dist/core/index.js +4 -5
- package/dist/core/prefetch.d.ts +2 -0
- package/dist/core/prefetch.js +3 -0
- package/dist/core/react/crud.factory.d.ts +3 -0
- package/dist/core/react/crud.factory.js +5 -0
- package/dist/core/react/index.d.ts +4 -0
- package/dist/core/react/index.js +7 -0
- package/dist/core/react/mutation.factory.d.ts +9 -0
- package/dist/core/react/mutation.factory.js +21 -0
- package/dist/core/react/query.factory.d.ts +12 -0
- package/dist/core/react/query.factory.js +5 -0
- package/dist/core/server-context.d.ts +6 -0
- package/dist/core/server-context.js +12 -0
- package/dist/core/types/shared.d.ts +29 -0
- package/dist/finance/api/finance.d.ts +22 -0
- package/dist/finance/api/finance.js +29 -0
- package/dist/finance/api/index.d.ts +1 -0
- package/dist/finance/hooks/finance.d.ts +32 -0
- package/dist/finance/hooks/finance.js +66 -0
- package/dist/finance/hooks/index.d.ts +1 -0
- package/dist/finance/index.d.ts +4 -81
- package/dist/finance/index.js +4 -5
- package/dist/finance/types/finance.d.ts +82 -0
- package/dist/index.d.ts +139 -32
- package/dist/index.js +113 -29
- package/dist/inventory/api/adjustment.d.ts +123 -0
- package/dist/inventory/api/adjustment.js +120 -0
- package/dist/inventory/api/availability.d.ts +70 -0
- package/dist/inventory/api/availability.js +47 -0
- package/dist/inventory/api/cost.d.ts +58 -0
- package/dist/inventory/api/cost.js +34 -0
- package/dist/inventory/api/index.d.ts +18 -0
- package/dist/inventory/api/lot.d.ts +82 -0
- package/dist/inventory/api/lot.js +46 -0
- package/dist/inventory/api/movement.d.ts +71 -0
- package/dist/inventory/api/movement.js +75 -0
- package/dist/inventory/api/package.d.ts +97 -0
- package/dist/inventory/api/package.js +56 -0
- package/dist/inventory/api/procurement.d.ts +110 -0
- package/dist/inventory/api/procurement.js +59 -0
- package/dist/inventory/api/purchase.d.ts +106 -0
- package/dist/inventory/api/purchase.js +115 -0
- package/dist/inventory/api/replenishment.d.ts +145 -0
- package/dist/inventory/api/replenishment.js +63 -0
- package/dist/inventory/api/report.d.ts +102 -0
- package/dist/inventory/api/report.js +54 -0
- package/dist/inventory/api/request.d.ts +157 -0
- package/dist/inventory/api/request.js +140 -0
- package/dist/inventory/api/reservation.d.ts +77 -0
- package/dist/inventory/api/reservation.js +51 -0
- package/dist/inventory/api/scan.d.ts +29 -0
- package/dist/inventory/api/scan.js +30 -0
- package/dist/inventory/api/supplier.d.ts +9 -0
- package/dist/inventory/api/supplier.js +24 -0
- package/dist/inventory/api/trace.d.ts +71 -0
- package/dist/inventory/api/trace.js +39 -0
- package/dist/inventory/api/transfer.d.ts +162 -0
- package/dist/inventory/api/transfer.js +155 -0
- package/dist/inventory/api/warehouse.d.ts +199 -0
- package/dist/inventory/api/warehouse.js +155 -0
- package/dist/inventory/hooks/adjustment.d.ts +24 -0
- package/dist/inventory/hooks/adjustment.js +30 -0
- package/dist/inventory/hooks/availability.d.ts +16 -0
- package/dist/inventory/hooks/availability.js +35 -0
- package/dist/inventory/hooks/cost.d.ts +21 -0
- package/dist/inventory/hooks/cost.js +50 -0
- package/dist/inventory/hooks/index.d.ts +18 -0
- package/dist/inventory/hooks/inventory.d.ts +130 -0
- package/dist/inventory/hooks/inventory.js +267 -0
- package/dist/inventory/hooks/lot.d.ts +26 -0
- package/dist/inventory/hooks/lot.js +67 -0
- package/dist/inventory/hooks/movement.d.ts +68 -0
- package/dist/inventory/hooks/movement.js +106 -0
- package/dist/inventory/hooks/package.d.ts +32 -0
- package/dist/inventory/hooks/package.js +80 -0
- package/dist/inventory/hooks/procurement.d.ts +28 -0
- package/dist/inventory/hooks/procurement.js +87 -0
- package/dist/inventory/hooks/purchase.d.ts +63 -0
- package/dist/inventory/hooks/purchase.js +119 -0
- package/dist/inventory/hooks/replenishment.d.ts +34 -0
- package/dist/inventory/hooks/replenishment.js +87 -0
- package/dist/inventory/hooks/report.d.ts +37 -0
- package/dist/inventory/hooks/report.js +79 -0
- package/dist/inventory/hooks/request.d.ts +113 -0
- package/dist/inventory/hooks/request.js +218 -0
- package/dist/inventory/hooks/reservation.d.ts +25 -0
- package/dist/inventory/hooks/reservation.js +56 -0
- package/dist/inventory/hooks/scan.d.ts +14 -0
- package/dist/inventory/hooks/scan.js +22 -0
- package/dist/inventory/hooks/supplier.d.ts +24 -0
- package/dist/inventory/hooks/supplier.js +30 -0
- package/dist/inventory/hooks/trace.d.ts +19 -0
- package/dist/inventory/hooks/trace.js +55 -0
- package/dist/inventory/hooks/transfer.d.ts +90 -0
- package/dist/inventory/hooks/transfer.js +197 -0
- package/dist/inventory/hooks/warehouse.d.ts +87 -0
- package/dist/inventory/hooks/warehouse.js +240 -0
- package/dist/inventory/index.d.ts +39 -512
- package/dist/inventory/index.js +37 -16
- package/dist/inventory/types/index.d.ts +3 -0
- package/dist/inventory/types/inventory.d.ts +485 -0
- package/dist/inventory/types/supplier.d.ts +90 -0
- package/dist/inventory/types/warehouse.d.ts +182 -0
- package/dist/logistics/api/index.d.ts +1 -0
- package/dist/logistics/api/logistics.d.ts +260 -0
- package/dist/logistics/api/logistics.js +249 -0
- package/dist/logistics/hooks/index.d.ts +1 -0
- package/dist/logistics/hooks/logistics.d.ts +252 -0
- package/dist/logistics/hooks/logistics.js +370 -0
- package/dist/logistics/index.d.ts +4 -248
- package/dist/logistics/index.js +4 -7
- package/dist/logistics/types/logistics.d.ts +188 -0
- package/dist/node_modules/@tanstack/query-core/build/modern/hydration-C-jfQLut.d.ts +270 -0
- package/dist/notifications/api/notification.d.ts +15 -0
- package/dist/notifications/api/notification.js +43 -0
- package/dist/notifications/hooks/notification.d.ts +34 -0
- package/dist/notifications/hooks/notification.js +86 -0
- package/dist/notifications/hooks/stream.d.ts +22 -0
- package/dist/notifications/hooks/stream.js +80 -0
- package/dist/notifications/index.d.ts +5 -0
- package/dist/notifications/index.js +5 -0
- package/dist/notifications/types/index.d.ts +57 -0
- package/dist/payments/api/index.d.ts +1 -0
- package/dist/payments/api/payment.d.ts +89 -0
- package/dist/payments/api/payment.js +93 -0
- package/dist/payments/hooks/payment.d.ts +53 -0
- package/dist/payments/hooks/payment.js +93 -0
- package/dist/payments/index.d.ts +4 -55
- package/dist/payments/index.js +4 -6
- package/dist/payments/types/payment.d.ts +50 -0
- package/dist/permissions/checker.d.ts +125 -0
- package/dist/permissions/checker.js +150 -0
- package/dist/permissions/index.d.ts +3 -0
- package/dist/permissions/index.js +4 -0
- package/dist/permissions/roles.d.ts +39 -0
- package/dist/permissions/roles.js +66 -0
- package/dist/platform/api/branch.d.ts +57 -0
- package/dist/platform/api/branch.js +73 -0
- package/dist/platform/api/config.d.ts +67 -0
- package/dist/platform/api/config.js +83 -0
- package/dist/platform/api/features.d.ts +15 -0
- package/dist/platform/api/features.js +20 -0
- package/dist/platform/api/index.d.ts +6 -0
- package/dist/platform/api/promo.d.ts +286 -0
- package/dist/platform/api/promo.js +276 -0
- package/dist/platform/api/user.d.ts +10 -0
- package/dist/platform/api/user.js +29 -0
- package/dist/platform/api/webhook.d.ts +102 -0
- package/dist/platform/api/webhook.js +124 -0
- package/dist/platform/hooks/branch.d.ts +24 -0
- package/dist/platform/hooks/branch.js +31 -0
- package/dist/platform/hooks/config.d.ts +61 -0
- package/dist/platform/hooks/config.js +100 -0
- package/dist/platform/hooks/features.d.ts +22 -0
- package/dist/platform/hooks/features.js +75 -0
- package/dist/platform/hooks/index.d.ts +6 -0
- package/dist/platform/hooks/promo.d.ts +218 -0
- package/dist/platform/hooks/promo.js +451 -0
- package/dist/platform/hooks/user.d.ts +24 -0
- package/dist/platform/hooks/user.js +30 -0
- package/dist/platform/index.d.ts +18 -645
- package/dist/platform/index.js +14 -8
- package/dist/platform/prefetch.d.ts +9 -0
- package/dist/platform/prefetch.js +11 -0
- package/dist/platform/types/branch.d.ts +110 -0
- package/dist/platform/types/branch.js +16 -0
- package/dist/platform/types/config.d.ts +137 -0
- package/dist/platform/types/features.d.ts +46 -0
- package/dist/platform/types/promo.d.ts +260 -0
- package/dist/platform/types/user.d.ts +72 -0
- package/dist/platform/types/webhook.d.ts +165 -0
- package/dist/sales/api/cart.d.ts +34 -0
- package/dist/sales/api/cart.js +38 -0
- package/dist/sales/api/customer.d.ts +40 -0
- package/dist/sales/api/customer.js +52 -0
- package/dist/sales/api/earning-rules.d.ts +54 -0
- package/dist/sales/api/earning-rules.js +56 -0
- package/dist/sales/api/index.d.ts +9 -0
- package/dist/sales/api/loyalty.d.ts +54 -0
- package/dist/sales/api/loyalty.js +57 -0
- package/dist/sales/api/order.d.ts +147 -0
- package/dist/sales/api/order.js +69 -0
- package/dist/sales/api/pos.d.ts +81 -0
- package/dist/sales/api/pos.js +95 -0
- package/dist/sales/api/referrals.d.ts +63 -0
- package/dist/sales/api/referrals.js +62 -0
- package/dist/sales/api/tiers.d.ts +66 -0
- package/dist/sales/api/tiers.js +59 -0
- package/dist/sales/hooks/cart.d.ts +50 -0
- package/dist/sales/hooks/cart.js +161 -0
- package/dist/sales/hooks/customer.d.ts +100 -0
- package/dist/sales/hooks/customer.js +130 -0
- package/dist/sales/hooks/earning-rules.d.ts +31 -0
- package/dist/sales/hooks/earning-rules.js +112 -0
- package/dist/sales/hooks/index.d.ts +8 -0
- package/dist/sales/hooks/loyalty.d.ts +51 -0
- package/dist/sales/hooks/loyalty.js +122 -0
- package/dist/sales/hooks/order.d.ts +219 -0
- package/dist/sales/hooks/order.js +401 -0
- package/dist/sales/hooks/pos.d.ts +87 -0
- package/dist/sales/hooks/pos.js +222 -0
- package/dist/sales/hooks/referrals.d.ts +34 -0
- package/dist/sales/hooks/referrals.js +132 -0
- package/dist/sales/hooks/tiers.d.ts +32 -0
- package/dist/sales/hooks/tiers.js +144 -0
- package/dist/sales/index.d.ts +25 -620
- package/dist/sales/index.js +19 -9
- package/dist/sales/prefetch.d.ts +10 -0
- package/dist/sales/prefetch.js +13 -0
- package/dist/sales/types/cart.d.ts +123 -0
- package/dist/sales/types/customer.d.ts +119 -0
- package/dist/sales/types/earning-rules.d.ts +75 -0
- package/dist/sales/types/index.d.ts +8 -0
- package/dist/sales/types/loyalty.d.ts +120 -0
- package/dist/sales/types/order.d.ts +487 -0
- package/dist/sales/types/order.js +22 -0
- package/dist/sales/types/pos.d.ts +227 -0
- package/dist/sales/types/referrals.d.ts +51 -0
- package/dist/sales/types/tiers.d.ts +56 -0
- package/dist/server.d.ts +41 -23
- package/dist/server.js +41 -36
- package/dist/transaction/api/index.d.ts +1 -0
- package/dist/transaction/api/transaction.d.ts +63 -0
- package/dist/transaction/api/transaction.js +84 -0
- package/dist/transaction/hooks/index.d.ts +1 -0
- package/dist/transaction/hooks/transaction.d.ts +106 -0
- package/dist/transaction/hooks/transaction.js +156 -0
- package/dist/transaction/index.d.ts +4 -104
- package/dist/transaction/index.js +5 -8
- package/dist/transaction/types/transaction.d.ts +440 -0
- package/dist/transaction/types/transaction.js +86 -0
- package/package.json +36 -25
- package/dist/adjustment-MNH3AT6S.js +0 -5
- package/dist/adjustment-MNH3AT6S.js.map +0 -1
- package/dist/analytics/index.js.map +0 -1
- package/dist/analytics-DMcD-o8w.d.ts +0 -76
- package/dist/api-factory-B_h4RKBm.d.ts +0 -280
- package/dist/auth/index.js.map +0 -1
- package/dist/catalog/index.js.map +0 -1
- package/dist/chunk-24FDD6UR.js +0 -75
- package/dist/chunk-24FDD6UR.js.map +0 -1
- package/dist/chunk-2TF7QNYV.js +0 -159
- package/dist/chunk-2TF7QNYV.js.map +0 -1
- package/dist/chunk-2YAZ5WG6.js +0 -479
- package/dist/chunk-2YAZ5WG6.js.map +0 -1
- package/dist/chunk-36NLLAVH.js +0 -177
- package/dist/chunk-36NLLAVH.js.map +0 -1
- package/dist/chunk-3OYSJB3P.js +0 -126
- package/dist/chunk-3OYSJB3P.js.map +0 -1
- package/dist/chunk-4IYW6RF3.js +0 -862
- package/dist/chunk-4IYW6RF3.js.map +0 -1
- package/dist/chunk-5E57JODA.js +0 -135
- package/dist/chunk-5E57JODA.js.map +0 -1
- package/dist/chunk-7LZCW4VF.js +0 -13
- package/dist/chunk-7LZCW4VF.js.map +0 -1
- package/dist/chunk-AQAISI4F.js +0 -183
- package/dist/chunk-AQAISI4F.js.map +0 -1
- package/dist/chunk-B6MPVOV7.js +0 -328
- package/dist/chunk-B6MPVOV7.js.map +0 -1
- package/dist/chunk-CILP56G2.js +0 -94
- package/dist/chunk-CILP56G2.js.map +0 -1
- package/dist/chunk-ERQ52WHY.js +0 -534
- package/dist/chunk-ERQ52WHY.js.map +0 -1
- package/dist/chunk-FOTUJPM4.js +0 -640
- package/dist/chunk-FOTUJPM4.js.map +0 -1
- package/dist/chunk-IHCBBLLW.js +0 -198
- package/dist/chunk-IHCBBLLW.js.map +0 -1
- package/dist/chunk-L4OEI4VZ.js +0 -123
- package/dist/chunk-L4OEI4VZ.js.map +0 -1
- package/dist/chunk-LRV7MWWX.js +0 -616
- package/dist/chunk-LRV7MWWX.js.map +0 -1
- package/dist/chunk-M3B4DFTT.js +0 -76
- package/dist/chunk-M3B4DFTT.js.map +0 -1
- package/dist/chunk-N43VE355.js +0 -126
- package/dist/chunk-N43VE355.js.map +0 -1
- package/dist/chunk-PYYLHUV6.js +0 -3
- package/dist/chunk-PYYLHUV6.js.map +0 -1
- package/dist/chunk-QCTXAMLA.js +0 -261
- package/dist/chunk-QCTXAMLA.js.map +0 -1
- package/dist/chunk-RIKAPJNG.js +0 -40
- package/dist/chunk-RIKAPJNG.js.map +0 -1
- package/dist/chunk-U3XT35GZ.js +0 -202
- package/dist/chunk-U3XT35GZ.js.map +0 -1
- package/dist/chunk-W22WB3WZ.js +0 -148
- package/dist/chunk-W22WB3WZ.js.map +0 -1
- package/dist/chunk-WTIJMKML.js +0 -27
- package/dist/chunk-WTIJMKML.js.map +0 -1
- package/dist/chunk-X2CQFJPR.js +0 -75
- package/dist/chunk-X2CQFJPR.js.map +0 -1
- package/dist/chunk-YYFKLOKO.js +0 -769
- package/dist/chunk-YYFKLOKO.js.map +0 -1
- package/dist/client-BPG8fbae.d.ts +0 -113
- package/dist/content/index.js.map +0 -1
- package/dist/core/index.js.map +0 -1
- package/dist/core/react.d.ts +0 -107
- package/dist/core/react.js +0 -5
- package/dist/core/react.js.map +0 -1
- package/dist/coupon-BZSZ0y3n.d.ts +0 -129
- package/dist/coupon-CDzL4bJG.d.ts +0 -655
- package/dist/crud.factory-DyKaPHcU.d.ts +0 -181
- package/dist/finance/index.js.map +0 -1
- package/dist/finance-BJdfKRw0.d.ts +0 -135
- package/dist/index.js.map +0 -1
- package/dist/inventory/index.js.map +0 -1
- package/dist/inventory-B5pssqRx.d.ts +0 -748
- package/dist/logistics/index.js.map +0 -1
- package/dist/logistics-REVDorcc.d.ts +0 -410
- package/dist/media-CNLJK93J.d.ts +0 -721
- package/dist/movement-R3CERFAM.js +0 -5
- package/dist/movement-R3CERFAM.js.map +0 -1
- package/dist/order-BfdPxZiA.d.ts +0 -412
- package/dist/payment-BRboLqvU.d.ts +0 -127
- package/dist/payments/index.js.map +0 -1
- package/dist/platform/index.js.map +0 -1
- package/dist/pos-C-sBzevg.d.ts +0 -538
- package/dist/product-p09zXkXB.d.ts +0 -260
- package/dist/purchase-54PER2PY.js +0 -5
- package/dist/purchase-54PER2PY.js.map +0 -1
- package/dist/request-MP6NV5ZE.js +0 -5
- package/dist/request-MP6NV5ZE.js.map +0 -1
- package/dist/sales/index.js.map +0 -1
- package/dist/server.js.map +0 -1
- package/dist/size-guide-DgjzjM5P.d.ts +0 -554
- package/dist/stock-2LP4HJSB.js +0 -5
- package/dist/stock-2LP4HJSB.js.map +0 -1
- package/dist/stock-CfrU5_Wr.d.ts +0 -632
- package/dist/supplier-BWJTRZ5Z.js +0 -5
- package/dist/supplier-BWJTRZ5Z.js.map +0 -1
- package/dist/transaction/index.js.map +0 -1
- package/dist/transaction-Bf6WjYCh.d.ts +0 -84
- package/dist/transaction-dL3WW-er.d.ts +0 -442
- package/dist/transfer-4XSS6HWT.js +0 -5
- package/dist/transfer-4XSS6HWT.js.map +0 -1
- package/dist/user-data-DdLjAGwO.d.ts +0 -132
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import { B as BaseApi } from './api-factory-B_h4RKBm.js';
|
|
2
|
-
import { o as Transaction, C as CreateTransactionPayload, U as UpdateTransactionPayload, F as FinancialReport, q as CashFlowReport, r as CategoryReport, s as StatementResponse } from './transaction-dL3WW-er.js';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Transaction API Client
|
|
6
|
-
*
|
|
7
|
-
* Transactions track cashflow events (money in/out) across the system.
|
|
8
|
-
* Used by: Orders, POS, Inventory, CRM, HRM, and manual entries.
|
|
9
|
-
*
|
|
10
|
-
* CRUD (via BaseApi):
|
|
11
|
-
* - getAll(params) - List transactions
|
|
12
|
-
* - getById(id) - Get transaction
|
|
13
|
-
* - create(payload) - Create manual transaction (staff only)
|
|
14
|
-
* - update(id, payload) - Update transaction (limited fields)
|
|
15
|
-
* - delete(id) - Delete transaction (admin/superadmin only)
|
|
16
|
-
*
|
|
17
|
-
* Reports:
|
|
18
|
-
* - getProfitLoss(params) - P&L statement
|
|
19
|
-
* - getCashFlow(params) - Monthly trend
|
|
20
|
-
* - getCategoryReport(params) - Category breakdown
|
|
21
|
-
*
|
|
22
|
-
* Export:
|
|
23
|
-
* - getStatement(params) - CSV/JSON export for accountants
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* Statement Query Params
|
|
28
|
-
*/
|
|
29
|
-
interface StatementParams {
|
|
30
|
-
startDate?: string;
|
|
31
|
-
endDate?: string;
|
|
32
|
-
branchId?: string;
|
|
33
|
-
source?: 'web' | 'pos' | 'api';
|
|
34
|
-
status?: string;
|
|
35
|
-
format?: 'csv' | 'json';
|
|
36
|
-
[key: string]: unknown;
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Report Query Params
|
|
40
|
-
*/
|
|
41
|
-
interface ReportParams {
|
|
42
|
-
startDate?: string;
|
|
43
|
-
endDate?: string;
|
|
44
|
-
branchId?: string;
|
|
45
|
-
[key: string]: unknown;
|
|
46
|
-
}
|
|
47
|
-
interface CashFlowParams {
|
|
48
|
-
months?: number;
|
|
49
|
-
branchId?: string;
|
|
50
|
-
[key: string]: unknown;
|
|
51
|
-
}
|
|
52
|
-
interface CategoryParams extends ReportParams {
|
|
53
|
-
flow?: 'inflow' | 'outflow';
|
|
54
|
-
limit?: number;
|
|
55
|
-
}
|
|
56
|
-
declare class TransactionApi extends BaseApi<Transaction, CreateTransactionPayload, UpdateTransactionPayload> {
|
|
57
|
-
/**
|
|
58
|
-
* Get Profit & Loss Report
|
|
59
|
-
* Returns income (inflow), expenses (outflow), and net profit for a date range
|
|
60
|
-
*/
|
|
61
|
-
getProfitLoss(params?: ReportParams, options?: {}): Promise<FinancialReport>;
|
|
62
|
-
/**
|
|
63
|
-
* Get Cash Flow Report
|
|
64
|
-
* Returns monthly inflow, outflow, and net trend
|
|
65
|
-
*/
|
|
66
|
-
getCashFlow(params?: CashFlowParams, options?: {}): Promise<CashFlowReport>;
|
|
67
|
-
/**
|
|
68
|
-
* Get Category Breakdown
|
|
69
|
-
* Returns top spending/income categories for a date range
|
|
70
|
-
* Filter by flow='inflow' for income categories, flow='outflow' for expense categories
|
|
71
|
-
*/
|
|
72
|
-
getCategoryReport(params?: CategoryParams, options?: {}): Promise<CategoryReport>;
|
|
73
|
-
/**
|
|
74
|
-
* Get Statement Export
|
|
75
|
-
* Accountant-friendly export with branch + VAT invoice references
|
|
76
|
-
*
|
|
77
|
-
* @param params.format - 'csv' (default) or 'json'
|
|
78
|
-
* @returns CSV blob (format=csv) or StatementResponse (format=json)
|
|
79
|
-
*/
|
|
80
|
-
getStatement(params?: StatementParams, options?: {}): Promise<Blob | StatementResponse>;
|
|
81
|
-
}
|
|
82
|
-
declare const transactionApi: TransactionApi;
|
|
83
|
-
|
|
84
|
-
export { type CashFlowParams as C, type ReportParams as R, type StatementParams as S, TransactionApi as T, type CategoryParams as a, transactionApi as t };
|
|
@@ -1,442 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Transaction Types
|
|
3
|
-
*
|
|
4
|
-
* Transactions track cashflow events across the system.
|
|
5
|
-
* Used by: Orders, POS, Inventory, CRM, HRM, and manual entries.
|
|
6
|
-
*
|
|
7
|
-
* Sources:
|
|
8
|
-
* - modules/transaction/transaction.model.js
|
|
9
|
-
* - common/revenue/enums.js
|
|
10
|
-
* - @classytic/revenue library
|
|
11
|
-
*
|
|
12
|
-
* Key concepts:
|
|
13
|
-
* - `flow`: Direction of money ('inflow' = income, 'outflow' = expense)
|
|
14
|
-
* - `type`: Category of transaction (order_purchase, refund, rent, etc.)
|
|
15
|
-
* - Amounts in smallest unit (paisa for BDT)
|
|
16
|
-
*/
|
|
17
|
-
/**
|
|
18
|
-
* Payment methods supported by the system
|
|
19
|
-
*/
|
|
20
|
-
type PaymentMethod = 'cash' | 'bkash' | 'nagad' | 'rocket' | 'bank_transfer' | 'card' | 'online' | 'manual' | 'split';
|
|
21
|
-
type PaymentGatewayType = 'manual' | 'stripe' | 'sslcommerz' | 'bkash' | 'nagad';
|
|
22
|
-
/**
|
|
23
|
-
* Transaction Flow - Direction of money movement
|
|
24
|
-
* - inflow: Money coming in (sales, income, capital injection)
|
|
25
|
-
* - outflow: Money going out (expenses, refunds, purchases)
|
|
26
|
-
*/
|
|
27
|
-
declare enum TransactionFlow {
|
|
28
|
-
INFLOW = "inflow",
|
|
29
|
-
OUTFLOW = "outflow"
|
|
30
|
-
}
|
|
31
|
-
type TransactionFlowType = 'inflow' | 'outflow';
|
|
32
|
-
/**
|
|
33
|
-
* Transaction Status - Payment lifecycle states
|
|
34
|
-
*/
|
|
35
|
-
declare enum TransactionStatus {
|
|
36
|
-
PENDING = "pending",
|
|
37
|
-
PAYMENT_INITIATED = "payment_initiated",
|
|
38
|
-
PROCESSING = "processing",
|
|
39
|
-
REQUIRES_ACTION = "requires_action",
|
|
40
|
-
VERIFIED = "verified",
|
|
41
|
-
COMPLETED = "completed",
|
|
42
|
-
FAILED = "failed",
|
|
43
|
-
CANCELLED = "cancelled",
|
|
44
|
-
EXPIRED = "expired",
|
|
45
|
-
REFUNDED = "refunded",
|
|
46
|
-
PARTIALLY_REFUNDED = "partially_refunded"
|
|
47
|
-
}
|
|
48
|
-
type TransactionStatusType = 'pending' | 'payment_initiated' | 'processing' | 'requires_action' | 'verified' | 'completed' | 'failed' | 'cancelled' | 'expired' | 'refunded' | 'partially_refunded';
|
|
49
|
-
/**
|
|
50
|
-
* Transaction Categories
|
|
51
|
-
*
|
|
52
|
-
* The `type` field stores the category for reporting/grouping.
|
|
53
|
-
* Flow is determined by `flow` field, not by category.
|
|
54
|
-
*
|
|
55
|
-
* ┌─────────────────────────────────────────────────────────────────┐
|
|
56
|
-
* │ INFLOW (Income) │ OUTFLOW (Expense) │
|
|
57
|
-
* ├─────────────────────────────────┼───────────────────────────────┤
|
|
58
|
-
* │ order_purchase (POS/Web sales) │ inventory_purchase (stock) │
|
|
59
|
-
* │ wholesale_sale (B2B sales) │ purchase_return (refund recv) │
|
|
60
|
-
* │ capital_injection │ cogs (cost of goods sold) │
|
|
61
|
-
* │ retained_earnings │ rent, utilities, equipment... │
|
|
62
|
-
* │ other_income │ inventory_loss │
|
|
63
|
-
* │ tip_income (optional) │ marketing, maintenance... │
|
|
64
|
-
* │ │ refund (customer refunds) │
|
|
65
|
-
* └─────────────────────────────────┴───────────────────────────────┘
|
|
66
|
-
*/
|
|
67
|
-
declare enum TransactionCategory {
|
|
68
|
-
ORDER_PURCHASE = "order_purchase",
|
|
69
|
-
ORDER_SUBSCRIPTION = "order_subscription",
|
|
70
|
-
WHOLESALE_SALE = "wholesale_sale",
|
|
71
|
-
PLATFORM_SUBSCRIPTION = "platform_subscription",
|
|
72
|
-
CREATOR_SUBSCRIPTION = "creator_subscription",
|
|
73
|
-
ENROLLMENT_PURCHASE = "enrollment_purchase",
|
|
74
|
-
ENROLLMENT_SUBSCRIPTION = "enrollment_subscription",
|
|
75
|
-
INVENTORY_PURCHASE = "inventory_purchase",
|
|
76
|
-
PURCHASE_RETURN = "purchase_return",
|
|
77
|
-
INVENTORY_LOSS = "inventory_loss",
|
|
78
|
-
INVENTORY_ADJUSTMENT = "inventory_adjustment",
|
|
79
|
-
COGS = "cogs",
|
|
80
|
-
REFUND = "refund",
|
|
81
|
-
SUBSCRIPTION = "subscription",
|
|
82
|
-
PURCHASE = "purchase",
|
|
83
|
-
RENT = "rent",
|
|
84
|
-
UTILITIES = "utilities",
|
|
85
|
-
EQUIPMENT = "equipment",
|
|
86
|
-
SUPPLIES = "supplies",
|
|
87
|
-
MAINTENANCE = "maintenance",
|
|
88
|
-
MARKETING = "marketing",
|
|
89
|
-
OTHER_EXPENSE = "other_expense",
|
|
90
|
-
CAPITAL_INJECTION = "capital_injection",
|
|
91
|
-
RETAINED_EARNINGS = "retained_earnings",
|
|
92
|
-
TIP_INCOME = "tip_income",
|
|
93
|
-
OTHER_INCOME = "other_income"
|
|
94
|
-
}
|
|
95
|
-
type TransactionCategoryType = 'order_purchase' | 'order_subscription' | 'wholesale_sale' | 'platform_subscription' | 'creator_subscription' | 'enrollment_purchase' | 'enrollment_subscription' | 'refund' | 'subscription' | 'purchase' | 'inventory_purchase' | 'purchase_return' | 'inventory_loss' | 'inventory_adjustment' | 'cogs' | 'rent' | 'utilities' | 'equipment' | 'supplies' | 'maintenance' | 'marketing' | 'other_expense' | 'capital_injection' | 'retained_earnings' | 'tip_income' | 'other_income';
|
|
96
|
-
/**
|
|
97
|
-
* Transaction Split Payment - Individual payment in a split transaction
|
|
98
|
-
* Different from POS SplitPaymentEntry which has additional UI state fields
|
|
99
|
-
*/
|
|
100
|
-
interface TransactionSplitPayment {
|
|
101
|
-
method: PaymentMethod;
|
|
102
|
-
amount: number;
|
|
103
|
-
reference?: string;
|
|
104
|
-
details?: Record<string, unknown>;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* Payment Details - For manual/split payments
|
|
108
|
-
*/
|
|
109
|
-
interface TransactionPaymentDetails {
|
|
110
|
-
provider?: string;
|
|
111
|
-
walletNumber?: string;
|
|
112
|
-
walletType?: 'personal' | 'merchant';
|
|
113
|
-
trxId?: string;
|
|
114
|
-
bankName?: string;
|
|
115
|
-
accountNumber?: string;
|
|
116
|
-
accountName?: string;
|
|
117
|
-
proofUrl?: string;
|
|
118
|
-
/** Split payment entries (when method is 'split') */
|
|
119
|
-
payments?: TransactionSplitPayment[];
|
|
120
|
-
}
|
|
121
|
-
/**
|
|
122
|
-
* Tax type for transactions
|
|
123
|
-
*/
|
|
124
|
-
type TaxType = 'vat' | 'gst' | 'sales_tax' | 'income_tax' | 'withholding_tax' | 'none';
|
|
125
|
-
/**
|
|
126
|
-
* Tax Details for VAT/GST/Sales Tax tracking
|
|
127
|
-
*/
|
|
128
|
-
interface TransactionTaxDetails {
|
|
129
|
-
/** Tax type: vat, gst, sales_tax, etc. */
|
|
130
|
-
type?: TaxType;
|
|
131
|
-
/** Tax rate as decimal (0.15 = 15%) */
|
|
132
|
-
rate?: number;
|
|
133
|
-
/** Whether prices include tax (BD default: true) */
|
|
134
|
-
isInclusive?: boolean;
|
|
135
|
-
/** Tax jurisdiction code (e.g., 'BD' for Bangladesh) */
|
|
136
|
-
jurisdiction?: string;
|
|
137
|
-
}
|
|
138
|
-
/**
|
|
139
|
-
* Gateway Details - Payment provider info
|
|
140
|
-
*/
|
|
141
|
-
interface TransactionGateway {
|
|
142
|
-
type: PaymentGatewayType | string;
|
|
143
|
-
provider?: string;
|
|
144
|
-
sessionId?: string;
|
|
145
|
-
paymentIntentId?: string;
|
|
146
|
-
metadata?: Record<string, unknown>;
|
|
147
|
-
verificationData?: Record<string, unknown>;
|
|
148
|
-
}
|
|
149
|
-
/**
|
|
150
|
-
* Commission tracking for gateway/marketplace payments
|
|
151
|
-
*/
|
|
152
|
-
interface TransactionCommission {
|
|
153
|
-
/** Commission rate as decimal */
|
|
154
|
-
rate?: number;
|
|
155
|
-
/** Gross commission amount */
|
|
156
|
-
grossAmount?: number;
|
|
157
|
-
/** Gateway fee rate as decimal */
|
|
158
|
-
gatewayFeeRate?: number;
|
|
159
|
-
/** Gateway fee amount */
|
|
160
|
-
gatewayFeeAmount?: number;
|
|
161
|
-
/** Net commission amount (grossAmount - gatewayFeeAmount) */
|
|
162
|
-
netAmount?: number;
|
|
163
|
-
/** Commission status */
|
|
164
|
-
status?: 'pending' | 'paid' | 'waived' | 'reversed';
|
|
165
|
-
/** Affiliate tracking (optional) */
|
|
166
|
-
affiliate?: {
|
|
167
|
-
recipientId?: string;
|
|
168
|
-
recipientType?: 'user' | 'organization' | 'partner';
|
|
169
|
-
rate?: number;
|
|
170
|
-
grossAmount?: number;
|
|
171
|
-
netAmount?: number;
|
|
172
|
-
};
|
|
173
|
-
/** Multi-party commission splits (optional) */
|
|
174
|
-
splits?: Array<{
|
|
175
|
-
type?: string;
|
|
176
|
-
recipientId?: string;
|
|
177
|
-
rate?: number;
|
|
178
|
-
grossAmount?: number;
|
|
179
|
-
netAmount?: number;
|
|
180
|
-
}>;
|
|
181
|
-
}
|
|
182
|
-
/**
|
|
183
|
-
* Webhook tracking
|
|
184
|
-
*/
|
|
185
|
-
interface TransactionWebhook {
|
|
186
|
-
eventId?: string;
|
|
187
|
-
eventType?: string;
|
|
188
|
-
receivedAt?: string;
|
|
189
|
-
processedAt?: string;
|
|
190
|
-
payload?: Record<string, unknown>;
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
* Reconciliation tracking
|
|
194
|
-
*/
|
|
195
|
-
interface TransactionReconciliation {
|
|
196
|
-
isReconciled?: boolean;
|
|
197
|
-
reconciledAt?: string;
|
|
198
|
-
reconciledBy?: string;
|
|
199
|
-
bankStatementRef?: string;
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* Transaction Document
|
|
203
|
-
*
|
|
204
|
-
* Key fields:
|
|
205
|
-
* - flow: Direction of money (inflow/outflow)
|
|
206
|
-
* - type: Category of transaction (order_purchase, refund, etc.)
|
|
207
|
-
* - amount: Gross amount in smallest unit (paisa)
|
|
208
|
-
* - fee: Platform/gateway fees deducted
|
|
209
|
-
* - tax: VAT/tax portion (informational)
|
|
210
|
-
* - net: amount - fee - tax (derived)
|
|
211
|
-
*/
|
|
212
|
-
interface Transaction {
|
|
213
|
-
_id: string;
|
|
214
|
-
organizationId?: string;
|
|
215
|
-
/**
|
|
216
|
-
* Flow direction: 'inflow' (money in) or 'outflow' (money out)
|
|
217
|
-
* Use this for Income/Expense classification in UI
|
|
218
|
-
*/
|
|
219
|
-
flow: TransactionFlowType;
|
|
220
|
-
/**
|
|
221
|
-
* Transaction category (e.g. 'order_purchase', 'refund', 'rent', 'cogs')
|
|
222
|
-
* Note: Backend stores category in the 'type' field
|
|
223
|
-
*/
|
|
224
|
-
type: TransactionCategoryType | string;
|
|
225
|
-
/** Transaction status */
|
|
226
|
-
status: TransactionStatusType | string;
|
|
227
|
-
/** Gross money that moved (in smallest unit, e.g. paisa) */
|
|
228
|
-
amount: number;
|
|
229
|
-
/** Currency code (default: 'BDT') */
|
|
230
|
-
currency?: string;
|
|
231
|
-
/** Platform/gateway fees deducted */
|
|
232
|
-
fee?: number;
|
|
233
|
-
/** VAT/tax portion (informational, for VAT reporting) */
|
|
234
|
-
tax?: number;
|
|
235
|
-
/** Net amount: amount - fee - tax */
|
|
236
|
-
net?: number;
|
|
237
|
-
/** Tax details for VAT/GST reporting */
|
|
238
|
-
taxDetails?: TransactionTaxDetails;
|
|
239
|
-
customerId?: string | null;
|
|
240
|
-
handledBy?: string | null;
|
|
241
|
-
method: PaymentMethod | string;
|
|
242
|
-
gateway?: TransactionGateway;
|
|
243
|
-
paymentDetails?: TransactionPaymentDetails;
|
|
244
|
-
/** Source model type (Order, Purchase, Manual) - polymorphic reference */
|
|
245
|
-
sourceModel?: 'Order' | 'Purchase' | 'Manual' | string;
|
|
246
|
-
/** Source document ID */
|
|
247
|
-
sourceId?: string;
|
|
248
|
-
/** Related transaction (for refunds linking to original) */
|
|
249
|
-
relatedTransactionId?: string;
|
|
250
|
-
/** Source channel: where the transaction originated */
|
|
251
|
-
source: 'web' | 'pos' | 'api';
|
|
252
|
-
/** Branch reference ID */
|
|
253
|
-
branch?: string;
|
|
254
|
-
/** Branch code for display */
|
|
255
|
-
branchCode?: string;
|
|
256
|
-
/** Commission tracking for gateway payments */
|
|
257
|
-
commission?: TransactionCommission;
|
|
258
|
-
/** Revenue splits (for marketplace use) */
|
|
259
|
-
splits?: Array<{
|
|
260
|
-
recipientId?: string;
|
|
261
|
-
recipientType?: string;
|
|
262
|
-
type?: string;
|
|
263
|
-
amount?: number;
|
|
264
|
-
status?: string;
|
|
265
|
-
paidAt?: string;
|
|
266
|
-
}>;
|
|
267
|
-
metadata?: Record<string, unknown>;
|
|
268
|
-
description?: string;
|
|
269
|
-
notes?: string;
|
|
270
|
-
idempotencyKey?: string;
|
|
271
|
-
webhook?: TransactionWebhook;
|
|
272
|
-
/** Actual transaction date (when it occurred) */
|
|
273
|
-
date?: string;
|
|
274
|
-
verifiedBy?: string;
|
|
275
|
-
verifiedAt?: string;
|
|
276
|
-
initiatedAt?: string;
|
|
277
|
-
completedAt?: string;
|
|
278
|
-
paidAt?: string;
|
|
279
|
-
failedAt?: string;
|
|
280
|
-
failureReason?: string;
|
|
281
|
-
refundedAt?: string;
|
|
282
|
-
refundedAmount?: number;
|
|
283
|
-
refundReason?: string;
|
|
284
|
-
reconciliation?: TransactionReconciliation;
|
|
285
|
-
createdAt: string;
|
|
286
|
-
updatedAt: string;
|
|
287
|
-
isPaid?: boolean;
|
|
288
|
-
amountInUnits?: number;
|
|
289
|
-
}
|
|
290
|
-
/**
|
|
291
|
-
* Payload to create a Manual Transaction (OpEx, CapEx, etc.)
|
|
292
|
-
* Most transactions are system-managed via order/POS flows.
|
|
293
|
-
*/
|
|
294
|
-
interface CreateTransactionPayload {
|
|
295
|
-
flow: TransactionFlowType;
|
|
296
|
-
type: TransactionCategoryType | string;
|
|
297
|
-
amount: number;
|
|
298
|
-
method?: PaymentMethod | string;
|
|
299
|
-
source?: 'web' | 'pos' | 'api';
|
|
300
|
-
branch?: string;
|
|
301
|
-
branchCode?: string;
|
|
302
|
-
date?: string;
|
|
303
|
-
notes?: string;
|
|
304
|
-
description?: string;
|
|
305
|
-
paymentDetails?: TransactionPaymentDetails;
|
|
306
|
-
taxDetails?: TransactionTaxDetails;
|
|
307
|
-
metadata?: Record<string, unknown>;
|
|
308
|
-
}
|
|
309
|
-
/**
|
|
310
|
-
* Payload to update a Transaction (limited fields)
|
|
311
|
-
* Editable correction fields (permissioned)
|
|
312
|
-
*/
|
|
313
|
-
interface UpdateTransactionPayload {
|
|
314
|
-
flow?: TransactionFlowType;
|
|
315
|
-
type?: TransactionCategoryType | string;
|
|
316
|
-
amount?: number;
|
|
317
|
-
fee?: number;
|
|
318
|
-
tax?: number;
|
|
319
|
-
net?: number;
|
|
320
|
-
method?: PaymentMethod | string;
|
|
321
|
-
paymentDetails?: TransactionPaymentDetails;
|
|
322
|
-
taxDetails?: TransactionTaxDetails;
|
|
323
|
-
branch?: string;
|
|
324
|
-
branchCode?: string;
|
|
325
|
-
source?: 'web' | 'pos' | 'api';
|
|
326
|
-
notes?: string;
|
|
327
|
-
description?: string;
|
|
328
|
-
metadata?: Record<string, unknown>;
|
|
329
|
-
}
|
|
330
|
-
/**
|
|
331
|
-
* Payment Intent - Returned with order/POS transactions
|
|
332
|
-
*/
|
|
333
|
-
interface PaymentIntent {
|
|
334
|
-
id: string;
|
|
335
|
-
provider: PaymentGatewayType | string;
|
|
336
|
-
status: 'pending' | 'processing' | 'succeeded' | 'failed' | 'cancelled';
|
|
337
|
-
/** Manual payment instructions */
|
|
338
|
-
instructions?: {
|
|
339
|
-
bkash?: string;
|
|
340
|
-
nagad?: string;
|
|
341
|
-
bank?: string;
|
|
342
|
-
reference?: string;
|
|
343
|
-
note?: string;
|
|
344
|
-
};
|
|
345
|
-
/** Stripe SDK client secret */
|
|
346
|
-
clientSecret?: string | null;
|
|
347
|
-
/** Redirect URL for hosted payment pages */
|
|
348
|
-
paymentUrl?: string | null;
|
|
349
|
-
metadata?: Record<string, unknown>;
|
|
350
|
-
}
|
|
351
|
-
/**
|
|
352
|
-
* Financial Report Response (Profit & Loss)
|
|
353
|
-
* Uses flow-based totals: inflow (income) vs outflow (expense)
|
|
354
|
-
*/
|
|
355
|
-
interface FinancialReport {
|
|
356
|
-
/** Total inflow (income) */
|
|
357
|
-
income: number;
|
|
358
|
-
/** Total outflow (expense) */
|
|
359
|
-
expense: number;
|
|
360
|
-
/** Net profit (income - expense) */
|
|
361
|
-
net: number;
|
|
362
|
-
/** Breakdown by category (type field) */
|
|
363
|
-
breakdown: Record<string, number>;
|
|
364
|
-
}
|
|
365
|
-
/**
|
|
366
|
-
* Cash Flow Report Response
|
|
367
|
-
* Monthly trend of inflow vs outflow
|
|
368
|
-
*/
|
|
369
|
-
interface CashFlowReport {
|
|
370
|
-
months: Array<{
|
|
371
|
-
month: string;
|
|
372
|
-
/** Total inflow (income) for the month */
|
|
373
|
-
inflow: number;
|
|
374
|
-
/** Total outflow (expense) for the month */
|
|
375
|
-
outflow: number;
|
|
376
|
-
/** Net cash flow (inflow - outflow) */
|
|
377
|
-
net: number;
|
|
378
|
-
}>;
|
|
379
|
-
}
|
|
380
|
-
/**
|
|
381
|
-
* Category Report Response
|
|
382
|
-
*/
|
|
383
|
-
interface CategoryReport {
|
|
384
|
-
categories: Array<{
|
|
385
|
-
category: string;
|
|
386
|
-
total: number;
|
|
387
|
-
count: number;
|
|
388
|
-
}>;
|
|
389
|
-
}
|
|
390
|
-
/**
|
|
391
|
-
* Statement Row (for CSV/JSON export)
|
|
392
|
-
*/
|
|
393
|
-
interface StatementRow {
|
|
394
|
-
transactionId: string;
|
|
395
|
-
transactionDate: string | null;
|
|
396
|
-
createdAt: string | null;
|
|
397
|
-
status: string;
|
|
398
|
-
/** Flow direction: inflow/outflow */
|
|
399
|
-
flow: string;
|
|
400
|
-
/** Transaction category (type field) */
|
|
401
|
-
type: string;
|
|
402
|
-
source: string;
|
|
403
|
-
branchCode: string | null;
|
|
404
|
-
branchId: string | null;
|
|
405
|
-
method: string;
|
|
406
|
-
/** Gross amount in BDT (converted from paisa) */
|
|
407
|
-
amountBdt: number;
|
|
408
|
-
/** Fee amount in BDT */
|
|
409
|
-
feeBdt?: number;
|
|
410
|
-
/** Tax amount in BDT */
|
|
411
|
-
taxBdt?: number;
|
|
412
|
-
/** Net amount in BDT (amount - fee - tax) */
|
|
413
|
-
netBdt?: number;
|
|
414
|
-
currency: string;
|
|
415
|
-
/** Source model (Order, Purchase, Manual) */
|
|
416
|
-
sourceModel?: string;
|
|
417
|
-
/** Source document ID */
|
|
418
|
-
sourceId?: string | null;
|
|
419
|
-
orderId: string | null;
|
|
420
|
-
orderCustomerName: string | null;
|
|
421
|
-
vatInvoiceNumber: string | null;
|
|
422
|
-
vatSellerBin: string | null;
|
|
423
|
-
paymentReference: string | null;
|
|
424
|
-
narration: string | null;
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* Statement Export Response (JSON format)
|
|
428
|
-
*/
|
|
429
|
-
interface StatementResponse {
|
|
430
|
-
success: boolean;
|
|
431
|
-
count: number;
|
|
432
|
-
data: StatementRow[];
|
|
433
|
-
}
|
|
434
|
-
/**
|
|
435
|
-
* @deprecated Use TransactionFlow instead. Backend uses flow (inflow/outflow).
|
|
436
|
-
*/
|
|
437
|
-
declare enum TransactionType {
|
|
438
|
-
INCOME = "income",
|
|
439
|
-
EXPENSE = "expense"
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
export { type CreateTransactionPayload as C, type FinancialReport as F, type PaymentMethod as P, type StatementRow as S, TransactionFlow as T, type UpdateTransactionPayload as U, type PaymentGatewayType as a, type TransactionFlowType as b, TransactionStatus as c, type TransactionStatusType as d, TransactionCategory as e, type TransactionCategoryType as f, type TransactionSplitPayment as g, type TransactionPaymentDetails as h, type TaxType as i, type TransactionTaxDetails as j, type TransactionGateway as k, type TransactionCommission as l, type TransactionWebhook as m, type TransactionReconciliation as n, type Transaction as o, type PaymentIntent as p, type CashFlowReport as q, type CategoryReport as r, type StatementResponse as s, TransactionType as t };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"transfer-4XSS6HWT.js"}
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @classytic/commerce-sdk - Auth Types
|
|
3
|
-
*
|
|
4
|
-
* Type definitions for authentication and user management.
|
|
5
|
-
*/
|
|
6
|
-
declare const UserRole: {
|
|
7
|
-
readonly SUPER_ADMIN: "superadmin";
|
|
8
|
-
readonly ADMIN: "admin";
|
|
9
|
-
readonly CUSTOMER: "user";
|
|
10
|
-
readonly FINANCE_ADMIN: "finance-admin";
|
|
11
|
-
readonly FINANCE_MANAGER: "finance-manager";
|
|
12
|
-
readonly STORE_MANAGER: "store-manager";
|
|
13
|
-
readonly STORE_STAFF: "store-staff";
|
|
14
|
-
readonly WAREHOUSE_ADMIN: "warehouse-admin";
|
|
15
|
-
readonly WAREHOUSE_STAFF: "warehouse-staff";
|
|
16
|
-
};
|
|
17
|
-
type UserRoleType = (typeof UserRole)[keyof typeof UserRole];
|
|
18
|
-
interface User {
|
|
19
|
-
id: string;
|
|
20
|
-
_id?: string;
|
|
21
|
-
name: string;
|
|
22
|
-
email: string;
|
|
23
|
-
phone?: string;
|
|
24
|
-
roles: UserRoleType[];
|
|
25
|
-
image?: string;
|
|
26
|
-
organization?: string;
|
|
27
|
-
}
|
|
28
|
-
interface AuthResponse {
|
|
29
|
-
success: boolean;
|
|
30
|
-
token: string;
|
|
31
|
-
refreshToken: string;
|
|
32
|
-
user: User;
|
|
33
|
-
}
|
|
34
|
-
interface RefreshResponse {
|
|
35
|
-
success: boolean;
|
|
36
|
-
token: string;
|
|
37
|
-
refreshToken: string;
|
|
38
|
-
}
|
|
39
|
-
interface AuthApiResponse {
|
|
40
|
-
success: boolean;
|
|
41
|
-
message?: string;
|
|
42
|
-
}
|
|
43
|
-
interface LoginCredentials {
|
|
44
|
-
email: string;
|
|
45
|
-
password: string;
|
|
46
|
-
}
|
|
47
|
-
interface RegisterData {
|
|
48
|
-
name: string;
|
|
49
|
-
email: string;
|
|
50
|
-
password: string;
|
|
51
|
-
phone?: string;
|
|
52
|
-
address?: string;
|
|
53
|
-
}
|
|
54
|
-
interface OAuthLoginData {
|
|
55
|
-
email: string;
|
|
56
|
-
name: string;
|
|
57
|
-
provider: string;
|
|
58
|
-
providerAccountId: string;
|
|
59
|
-
image?: string;
|
|
60
|
-
}
|
|
61
|
-
interface ForgotPasswordData {
|
|
62
|
-
email: string;
|
|
63
|
-
}
|
|
64
|
-
interface ResetPasswordData {
|
|
65
|
-
newPassword: string;
|
|
66
|
-
token: string;
|
|
67
|
-
}
|
|
68
|
-
interface RefreshTokenData {
|
|
69
|
-
token: string;
|
|
70
|
-
}
|
|
71
|
-
interface VerifyManagerData {
|
|
72
|
-
email: string;
|
|
73
|
-
password: string;
|
|
74
|
-
allowedRoles?: UserRoleType[];
|
|
75
|
-
}
|
|
76
|
-
interface VerifyManagerResponse {
|
|
77
|
-
success: boolean;
|
|
78
|
-
user?: User;
|
|
79
|
-
message?: string;
|
|
80
|
-
}
|
|
81
|
-
/** Allowed roles for discount authorization */
|
|
82
|
-
declare const DISCOUNT_ALLOWED_ROLES: UserRoleType[];
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* @classytic/commerce-sdk - Auth API
|
|
86
|
-
*
|
|
87
|
-
* Authentication and user management APIs.
|
|
88
|
-
*/
|
|
89
|
-
|
|
90
|
-
declare const forgetPassApi: (data: ForgotPasswordData) => Promise<AuthApiResponse>;
|
|
91
|
-
declare const resetPassApi: (data: ResetPasswordData) => Promise<AuthApiResponse>;
|
|
92
|
-
declare const tokenRefreshApi: (data: RefreshTokenData) => Promise<RefreshResponse>;
|
|
93
|
-
declare const loginApi: (data: LoginCredentials) => Promise<AuthResponse>;
|
|
94
|
-
/**
|
|
95
|
-
* Verify manager credentials for discount authorization
|
|
96
|
-
* Returns the user if credentials are valid AND user has allowed roles
|
|
97
|
-
*/
|
|
98
|
-
declare const verifyManagerAuth: (data: VerifyManagerData) => Promise<VerifyManagerResponse>;
|
|
99
|
-
declare const registerApi: (data: RegisterData) => Promise<AuthApiResponse>;
|
|
100
|
-
declare const oauthLoginApi: (data: OAuthLoginData) => Promise<AuthResponse & {
|
|
101
|
-
access_token: string;
|
|
102
|
-
refresh_token: string;
|
|
103
|
-
}>;
|
|
104
|
-
interface UserSearchResponse {
|
|
105
|
-
success: boolean;
|
|
106
|
-
docs?: User[];
|
|
107
|
-
message?: string;
|
|
108
|
-
}
|
|
109
|
-
declare const getUser: (email: string, token: string) => Promise<UserSearchResponse>;
|
|
110
|
-
declare const getUserByPhone: (phone: string, token: string) => Promise<UserSearchResponse>;
|
|
111
|
-
declare function createUser(name: string, email: string, password: string, phone?: string, address?: string): Promise<unknown>;
|
|
112
|
-
declare const getProfile: (token: string) => Promise<unknown>;
|
|
113
|
-
declare const updateUser: (token: string, userId: string, data: Partial<User>) => Promise<unknown>;
|
|
114
|
-
declare const authApi: {
|
|
115
|
-
login: (data: LoginCredentials) => Promise<AuthResponse>;
|
|
116
|
-
register: (data: RegisterData) => Promise<AuthApiResponse>;
|
|
117
|
-
oauthLogin: (data: OAuthLoginData) => Promise<AuthResponse & {
|
|
118
|
-
access_token: string;
|
|
119
|
-
refresh_token: string;
|
|
120
|
-
}>;
|
|
121
|
-
forgotPassword: (data: ForgotPasswordData) => Promise<AuthApiResponse>;
|
|
122
|
-
resetPassword: (data: ResetPasswordData) => Promise<AuthApiResponse>;
|
|
123
|
-
refreshToken: (data: RefreshTokenData) => Promise<RefreshResponse>;
|
|
124
|
-
verifyManager: (data: VerifyManagerData) => Promise<VerifyManagerResponse>;
|
|
125
|
-
getUser: (email: string, token: string) => Promise<UserSearchResponse>;
|
|
126
|
-
getUserByPhone: (phone: string, token: string) => Promise<UserSearchResponse>;
|
|
127
|
-
createUser: typeof createUser;
|
|
128
|
-
getProfile: (token: string) => Promise<unknown>;
|
|
129
|
-
updateUser: (token: string, userId: string, data: Partial<User>) => Promise<unknown>;
|
|
130
|
-
};
|
|
131
|
-
|
|
132
|
-
export { type AuthResponse as A, DISCOUNT_ALLOWED_ROLES as D, type ForgotPasswordData as F, type LoginCredentials as L, type OAuthLoginData as O, type RefreshResponse as R, UserRole as U, type VerifyManagerData as V, authApi as a, resetPassApi as b, getUserByPhone as c, createUser as d, getProfile as e, forgetPassApi as f, getUser as g, type UserRoleType as h, type User as i, type AuthApiResponse as j, type RegisterData as k, loginApi as l, type ResetPasswordData as m, type RefreshTokenData as n, oauthLoginApi as o, type VerifyManagerResponse as p, registerApi as r, tokenRefreshApi as t, updateUser as u, verifyManagerAuth as v };
|