@classytic/ledger-bd 0.2.0 → 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/CHANGELOG.md +38 -0
- package/dist/index.mjs +9 -0
- package/package.json +14 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
4
|
+
adhering to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
|
|
6
|
+
## [0.2.1]
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- Chart of accounts: new expense code **`6423 — Courier COD Commission`**
|
|
11
|
+
under `SELLING_DISTRIBUTION`. Captures commission deductions from
|
|
12
|
+
cash-on-delivery collections by BD courier partners (Pathao, RedX,
|
|
13
|
+
Steadfast, Sundarban).
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Packaging hygiene — added `README.md` and `CHANGELOG.md` to the `files`
|
|
18
|
+
array, added `repository` / `bugs` / `homepage` / `publishConfig.access`
|
|
19
|
+
to `package.json`, expanded `.gitignore` to cover `.env`, `.env.*`,
|
|
20
|
+
`/.claude`, `.mcp.json`, and the other standard safety patterns.
|
|
21
|
+
|
|
22
|
+
## [0.2.0]
|
|
23
|
+
|
|
24
|
+
Initial public release. Bangladesh country pack for `@classytic/ledger`.
|
|
25
|
+
|
|
26
|
+
### Ships
|
|
27
|
+
|
|
28
|
+
- **BFRS chart of accounts** — full post-0.8 tree (assets 1xxx, liabilities
|
|
29
|
+
2xxx, equity 3xxx, revenue 4xxx, cost-of-sales 5xxx, expenses 6xxx).
|
|
30
|
+
- **NBR VAT / TDS tax codes** — standard 15% VAT + supplementary-duty
|
|
31
|
+
brackets + withholding rates per §52/§53 tables.
|
|
32
|
+
- **Mushak 9.1 monthly return** scaffolding.
|
|
33
|
+
- **Default journal templates** — sales, purchase, VDS, TDS, cash, bank.
|
|
34
|
+
|
|
35
|
+
### Peer
|
|
36
|
+
|
|
37
|
+
- `@classytic/ledger >= 0.7.0` — ledger 0.7 introduced the
|
|
38
|
+
`journalTemplates` contract this pack relies on.
|
package/dist/index.mjs
CHANGED
|
@@ -5036,6 +5036,15 @@ const SELLING_DISTRIBUTION = [
|
|
|
5036
5036
|
parentCode: "Operating Expenses",
|
|
5037
5037
|
isTotal: false,
|
|
5038
5038
|
cashFlowCategory: null
|
|
5039
|
+
},
|
|
5040
|
+
{
|
|
5041
|
+
code: "6423",
|
|
5042
|
+
name: "Courier COD Commission",
|
|
5043
|
+
category: X$1,
|
|
5044
|
+
description: "Commission deducted by courier partners on cash-on-delivery collections (Pathao, RedX, Steadfast, Sundarban)",
|
|
5045
|
+
parentCode: "Operating Expenses",
|
|
5046
|
+
isTotal: false,
|
|
5047
|
+
cashFlowCategory: null
|
|
5039
5048
|
}
|
|
5040
5049
|
];
|
|
5041
5050
|
const FINANCIAL_EXPENSES = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@classytic/ledger-bd",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Bangladesh country pack for @classytic/ledger — BFRS chart of accounts, NBR VAT/TDS tax codes, Mushak 9.1 return",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -16,8 +16,21 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"CHANGELOG.md",
|
|
19
21
|
"LICENSE"
|
|
20
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/classytic/ledger-bd.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/classytic/ledger-bd/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/classytic/ledger-bd#readme",
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
21
34
|
"keywords": [
|
|
22
35
|
"accounting",
|
|
23
36
|
"bangladesh",
|