@hed-hog/finance 0.0.276 → 0.0.278
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 +4 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -133,6 +133,10 @@ O módulo financeiro gerencia o ciclo completo da gestão financeira corporativa
|
|
|
133
133
|
|--------|-------------------------------|------|-------------------------------|-------------------------------------------------------------------------------------------------------|------------------------|----------------------|
|
|
134
134
|
| GET | /finance/statements | Sim | Lista extratos bancários | Query: `bank_account_id`, `search` | Lista de extratos | 400 BadRequest, 401 |
|
|
135
135
|
| GET | /finance/bank-reconciliation/summary | Sim | Resumo da conciliação bancária | Query: `bank_account_id` (obrigatório) | Resumo da conciliação | 400 BadRequest, 401 |
|
|
136
|
+
<<<<<<< HEAD
|
|
137
|
+
=======
|
|
138
|
+
| POST | /finance/bank-reconciliations | Sim | Cria conciliação bancária | Body: `{ title_id: number; installment_id: number; bank_statement_line_id: number; payment_channel?: string; description?: string }` | Conciliação criada | 400 Validação, 401 |
|
|
139
|
+
>>>>>>> d51b9b5865563d7f3890f049742d5c20ae326ff9
|
|
136
140
|
| GET | /finance/statements/export | Sim | Exporta extratos em CSV | Query: `bank_account_id` (obrigatório), `search` | CSV para download | 400 BadRequest, 401 |
|
|
137
141
|
| POST | /finance/statements/import | Sim | Importa extrato bancário | Multipart file + Body: `bank_account_id` (obrigatório) | Importação realizada | 400 BadRequest, 401 |
|
|
138
142
|
| POST | /finance/statements/adjustments | Sim | Cria ajuste em extrato bancário | Body: `{ bank_account_id: number; amount: number; date?: string; type: string; description?: string }` | Ajuste criado | 400 Validação, 401 |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/finance",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.278",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
"@nestjs/core": "^11",
|
|
10
10
|
"@nestjs/jwt": "^11",
|
|
11
11
|
"@nestjs/mapped-types": "*",
|
|
12
|
-
"@hed-hog/
|
|
12
|
+
"@hed-hog/tag": "0.0.278",
|
|
13
|
+
"@hed-hog/contact": "0.0.278",
|
|
13
14
|
"@hed-hog/api": "0.0.4",
|
|
14
15
|
"@hed-hog/api-prisma": "0.0.5",
|
|
15
|
-
"@hed-hog/tag": "0.0.276",
|
|
16
16
|
"@hed-hog/api-locale": "0.0.13",
|
|
17
17
|
"@hed-hog/api-types": "0.0.1",
|
|
18
|
-
"@hed-hog/
|
|
19
|
-
"@hed-hog/
|
|
18
|
+
"@hed-hog/core": "0.0.278",
|
|
19
|
+
"@hed-hog/api-pagination": "0.0.6"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|