@hed-hog/finance 0.0.329 → 0.0.330

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.
Files changed (23) hide show
  1. package/hedhog/frontend/app/accounts-payable/approvals/page.tsx.ejs +18 -15
  2. package/hedhog/frontend/app/accounts-payable/installments/page.tsx.ejs +6 -14
  3. package/hedhog/frontend/app/accounts-receivable/collections-default/page.tsx.ejs +4 -8
  4. package/hedhog/frontend/app/accounts-receivable/installments/page.tsx.ejs +6 -14
  5. package/hedhog/frontend/app/administration/audit-logs/page.tsx.ejs +10 -4
  6. package/hedhog/frontend/app/administration/categories/page.tsx.ejs +3 -5
  7. package/hedhog/frontend/app/administration/cost-centers/page.tsx.ejs +3 -5
  8. package/hedhog/frontend/app/administration/currencies/page.tsx.ejs +3 -5
  9. package/hedhog/frontend/app/administration/period-close/page.tsx.ejs +3 -5
  10. package/hedhog/frontend/app/cash-and-banks/bank-accounts/page.tsx.ejs +48 -72
  11. package/hedhog/frontend/app/cash-and-banks/bank-reconciliation/page.tsx.ejs +7 -9
  12. package/hedhog/frontend/app/cash-and-banks/statements/page.tsx.ejs +91 -73
  13. package/hedhog/frontend/app/cash-and-banks/transfers/page.tsx.ejs +33 -25
  14. package/hedhog/frontend/app/planning/scenarios/page.tsx.ejs +2 -2
  15. package/hedhog/frontend/app/reports/actual-vs-forecast/page.tsx.ejs +3 -1
  16. package/hedhog/frontend/app/reports/aging-default/page.tsx.ejs +3 -1
  17. package/hedhog/frontend/app/reports/cash-position/page.tsx.ejs +3 -1
  18. package/hedhog/frontend/app/reports/overview-results/page.tsx.ejs +15 -8
  19. package/hedhog/frontend/app/reports/top-customers/page.tsx.ejs +9 -5
  20. package/hedhog/frontend/app/reports/top-operational-expenses/page.tsx.ejs +9 -5
  21. package/hedhog/frontend/messages/en.json +110 -2
  22. package/hedhog/frontend/messages/pt.json +92 -2
  23. package/package.json +6 -6
@@ -28,6 +28,7 @@ import {
28
28
  TableHeader,
29
29
  TableRow,
30
30
  } from '@/components/ui/table';
31
+ import { useApp } from '@hed-hog/next-app-provider';
31
32
  import { Building2, CircleDollarSign, TriangleAlert } from 'lucide-react';
32
33
  import { useTranslations } from 'next-intl';
33
34
  import { type FormEvent, useState } from 'react';
@@ -62,13 +63,9 @@ const rankingColors = [
62
63
  '#1D4ED8',
63
64
  ];
64
65
 
65
- const currencyFormatter = new Intl.NumberFormat('pt-BR', {
66
- style: 'currency',
67
- currency: 'BRL',
68
- });
69
-
70
66
  export default function TopOperationalExpensesReportPage() {
71
67
  const t = useTranslations('finance.TopOperationalExpensesReportPage');
68
+ const { currentLocaleCode } = useApp();
72
69
  const defaults = getDefaultDateRange();
73
70
  const [filters, setFilters] = useState({
74
71
  from: defaults.from,
@@ -77,6 +74,13 @@ export default function TopOperationalExpensesReportPage() {
77
74
  search: '',
78
75
  });
79
76
  const [appliedFilters, setAppliedFilters] = useState(filters);
77
+ const currencyFormatter = new Intl.NumberFormat(
78
+ currentLocaleCode || undefined,
79
+ {
80
+ style: 'currency',
81
+ currency: 'BRL',
82
+ }
83
+ );
80
84
  const { data: viewData, isFetching } = useTopOperationalExpensesReport({
81
85
  from: appliedFilters.from,
82
86
  to: appliedFilters.to,
@@ -8,6 +8,13 @@
8
8
  "upcoming": {
9
9
  "payable": "To Pay",
10
10
  "receivable": "To Receive",
11
+ "messages": {
12
+ "selectBankAccount": "Select a bank account",
13
+ "createAdjustmentSuccess": "Adjustment created successfully",
14
+ "createAdjustmentError": "Could not create the adjustment",
15
+ "reconcileSuccess": "Reconciliation completed successfully",
16
+ "reconcileError": "Could not reconcile the records"
17
+ },
11
18
  "nextDueDates": "Upcoming due dates"
12
19
  },
13
20
  "alerts": {
@@ -135,6 +142,13 @@
135
142
  "description": "There are no pending approvals.",
136
143
  "refresh": "Refresh"
137
144
  }
145
+ "messages": {
146
+ "invalidTitleForApproval": "Invalid title for approval",
147
+ "approveSuccess": "Title approved successfully",
148
+ "approveError": "Could not approve the title",
149
+ "invalidTitleForRejection": "Invalid title for rejection",
150
+ "rejectSuccess": "Title rejected successfully",
151
+ "rejectError": "Could not reject the title"
138
152
  },
139
153
  "FinanceEntityFieldWithCreate": {
140
154
  "validation": {
@@ -542,6 +556,7 @@
542
556
  },
543
557
  "CollectionsDefaultPage": {
544
558
  "common": { "cancel": "Cancel" },
559
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
545
560
  "actions": {
546
561
  "history": "History",
547
562
  "collect": "Collect",
@@ -908,6 +923,12 @@
908
923
  "edit": "Edit",
909
924
  "save": "Save"
910
925
  },
926
+ "validation": {
927
+ "bankRequired": "Bank is required",
928
+ "typeRequired": "Type is required",
929
+ "initialBalanceInvalid": "Invalid initial balance"
930
+ },
931
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
911
932
  "messages": {
912
933
  "createSuccess": "Bank account created successfully",
913
934
  "createError": "Failed to create bank account",
@@ -945,6 +966,18 @@
945
966
  "type": "Type",
946
967
  "description": "Description",
947
968
  "descriptionPlaceholder": "Example: Main Account",
969
+ "currency": "Currency",
970
+ "currencyPlaceholder": "Select a currency",
971
+ "currencySearchPlaceholder": "Search currency...",
972
+ "currencyEntityLabel": "currency",
973
+ "currencyCreateTitle": "New currency",
974
+ "currencyCreateDescription": "Register a new currency to use in bank accounts.",
975
+ "currencyCode": "ISO Code",
976
+ "currencyCodePlaceholder": "Ex.: BRL",
977
+ "currencyName": "Name",
978
+ "currencyNamePlaceholder": "Ex.: Brazilian Real",
979
+ "currencySymbol": "Symbol",
980
+ "currencySymbolPlaceholder": "Ex.: R$",
948
981
  "initialBalance": "Initial Balance",
949
982
  "logo": "Logo",
950
983
  "logoAction": "Upload logo",
@@ -1002,6 +1035,7 @@
1002
1035
  "select": "Select...",
1003
1036
  "cancel": "Cancel"
1004
1037
  },
1038
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1005
1039
  "adjustment": {
1006
1040
  "action": "Create Adjustment",
1007
1041
  "title": "Create Adjustment",
@@ -1071,6 +1105,43 @@
1071
1105
  },
1072
1106
  "StatementsPage": {
1073
1107
  "common": { "cancel": "Cancel" },
1108
+ "formErrors": {
1109
+ "dateRequired": "Date is required",
1110
+ "descriptionRequired": "Description is required",
1111
+ "amountMustBePositive": "Amount must be greater than zero",
1112
+ "bankAccountRequired": "Bank account is required",
1113
+ "fileRequired": "File is required",
1114
+ "fileTypeNotAllowed": "Only CSV or OFX files are allowed"
1115
+ },
1116
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1117
+ "messages": {
1118
+ "importSuccess": "Statement imported successfully",
1119
+ "importError": "Could not import the statement",
1120
+ "selectBankAccount": "Select a bank account",
1121
+ "createEntrySuccess": "Transaction added successfully",
1122
+ "createEntryError": "Could not add the transaction",
1123
+ "selectBankAccountToExport": "Select a bank account to export",
1124
+ "exportError": "Could not export the statement",
1125
+ "saveChangesSuccess": "Changes saved successfully",
1126
+ "saveChangesError": "Could not save changes",
1127
+ "deleteEntrySuccess": "Transaction deleted successfully",
1128
+ "deleteEntryError": "Could not delete the transaction"
1129
+ },
1130
+ "aria": {
1131
+ "newBankAccount": "New bank account"
1132
+ },
1133
+ "newEntry": {
1134
+ "action": "New entry",
1135
+ "title": "New entry",
1136
+ "description": "Add a manual transaction to the bank account statement.",
1137
+ "submit": "Save",
1138
+ "fields": {
1139
+ "date": "Date",
1140
+ "type": "Type",
1141
+ "description": "Description",
1142
+ "amount": "Amount"
1143
+ }
1144
+ },
1074
1145
  "importDialog": {
1075
1146
  "action": "Import",
1076
1147
  "title": "Import Statement",
@@ -1090,7 +1161,11 @@
1090
1161
  "finance": "Finance",
1091
1162
  "current": "Statements"
1092
1163
  },
1093
- "actions": { "export": "Export" },
1164
+ "actions": {
1165
+ "export": "Export",
1166
+ "saveChanges": "Save changes",
1167
+ "savingChanges": "Saving..."
1168
+ },
1094
1169
  "filters": {
1095
1170
  "selectAccount": "Select account...",
1096
1171
  "searchPlaceholder": "Search in description..."
@@ -1115,6 +1190,12 @@
1115
1190
  "title": "No transactions found",
1116
1191
  "description": "Import a statement to view account transactions."
1117
1192
  },
1193
+ "deleteDialog": {
1194
+ "title": "Delete transaction",
1195
+ "description": "This action cannot be undone. The transaction will be permanently removed from the statement.",
1196
+ "confirm": "Delete",
1197
+ "deleting": "Deleting..."
1198
+ },
1118
1199
  "types": {
1119
1200
  "inflow": "Inflow",
1120
1201
  "outflow": "Outflow"
@@ -1125,6 +1206,13 @@
1125
1206
  "select": "Select...",
1126
1207
  "cancel": "Cancel"
1127
1208
  },
1209
+ "formErrors": {
1210
+ "sourceAccountRequired": "Source account is required",
1211
+ "destinationAccountRequired": "Destination account is required",
1212
+ "dateRequired": "Date is required",
1213
+ "amountMustBePositive": "Amount must be greater than zero",
1214
+ "differentAccounts": "Source and destination accounts must be different"
1215
+ },
1128
1216
  "newTransfer": {
1129
1217
  "action": "New Transfer",
1130
1218
  "title": "New Transfer",
@@ -1154,6 +1242,11 @@
1154
1242
  "activeAccounts": "Active Accounts",
1155
1243
  "available": "available"
1156
1244
  },
1245
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1246
+ "transferCreatedSuccess": "Transfer created successfully",
1247
+ "transferCreateError": "Error creating transfer",
1248
+ "allAccounts": "All accounts",
1249
+ "searchPlaceholder": "Search in description...",
1157
1250
  "table": {
1158
1251
  "title": "Recent Transfers",
1159
1252
  "description": "Transfer history between accounts",
@@ -1161,6 +1254,7 @@
1161
1254
  "date": "Date",
1162
1255
  "source": "Source",
1163
1256
  "destination": "Destination",
1257
+ "arrow": "→",
1164
1258
  "value": "Value",
1165
1259
  "description": "Description"
1166
1260
  }
@@ -1184,6 +1278,11 @@
1184
1278
  "searchPlaceholder": "Search by action, entity, summary, id or IP",
1185
1279
  "action": "Action",
1186
1280
  "allActions": "All actions",
1281
+ "actionOptions": {
1282
+ "create": "Create",
1283
+ "update": "Update",
1284
+ "delete": "Delete"
1285
+ },
1187
1286
  "userPlaceholder": "Author (User ID)",
1188
1287
  "entity": "Entity",
1189
1288
  "allEntities": "All entities",
@@ -1196,7 +1295,8 @@
1196
1295
  "action": "Action",
1197
1296
  "entity": "Entity",
1198
1297
  "record": "Record",
1199
- "summary": "Summary"
1298
+ "summary": "Summary",
1299
+ "ip": "IP"
1200
1300
  },
1201
1301
  "loading": "Loading logs...",
1202
1302
  "empty": "No logs found."
@@ -1208,6 +1308,7 @@
1208
1308
  "cancel": "Cancel",
1209
1309
  "save": "Save"
1210
1310
  },
1311
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1211
1312
  "messages": {
1212
1313
  "createSuccess": "Category created successfully",
1213
1314
  "updateSuccess": "Category updated successfully",
@@ -1275,6 +1376,7 @@
1275
1376
  "cancel": "Cancel",
1276
1377
  "save": "Save"
1277
1378
  },
1379
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1278
1380
  "messages": {
1279
1381
  "createSuccess": "Cost center created successfully",
1280
1382
  "createError": "Error creating cost center",
@@ -1332,6 +1434,7 @@
1332
1434
  "cancel": "Cancel",
1333
1435
  "save": "Save"
1334
1436
  },
1437
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1335
1438
  "messages": {
1336
1439
  "createSuccess": "Period closed successfully",
1337
1440
  "createError": "Error closing period"
@@ -1701,6 +1804,10 @@
1701
1804
  "positive": "Positive",
1702
1805
  "negative": "Negative",
1703
1806
  "withGrowth": "With growth of {value}%"
1807
+ },
1808
+ "messages": {
1809
+ "saveSuccess": "Scenario saved successfully",
1810
+ "saveError": "Error saving scenario"
1704
1811
  }
1705
1812
  },
1706
1813
  "OverviewResultsReportPage": {
@@ -1874,6 +1981,7 @@
1874
1981
  "cancel": "Cancel",
1875
1982
  "save": "Save"
1876
1983
  },
1984
+ "draftStatus": "Draft saved {relativeLabel} • Last saved: {absoluteLabel}",
1877
1985
  "messages": {
1878
1986
  "createSuccess": "Currency created successfully",
1879
1987
  "createError": "Error creating currency",
@@ -542,6 +542,7 @@
542
542
  },
543
543
  "CollectionsDefaultPage": {
544
544
  "common": { "cancel": "Cancelar" },
545
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
545
546
  "actions": {
546
547
  "history": "Histórico",
547
548
  "collect": "Cobrar",
@@ -908,6 +909,12 @@
908
909
  "edit": "Editar",
909
910
  "save": "Salvar"
910
911
  },
912
+ "validation": {
913
+ "bankRequired": "Banco é obrigatório",
914
+ "typeRequired": "Tipo é obrigatório",
915
+ "initialBalanceInvalid": "Saldo inicial inválido"
916
+ },
917
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
911
918
  "messages": {
912
919
  "createSuccess": "Conta bancária cadastrada com sucesso",
913
920
  "createError": "Erro ao cadastrar conta bancária",
@@ -945,6 +952,18 @@
945
952
  "type": "Tipo",
946
953
  "description": "Descrição",
947
954
  "descriptionPlaceholder": "Ex: Conta Principal",
955
+ "currency": "Moeda",
956
+ "currencyPlaceholder": "Selecione uma moeda",
957
+ "currencySearchPlaceholder": "Buscar moeda...",
958
+ "currencyEntityLabel": "moeda",
959
+ "currencyCreateTitle": "Nova moeda",
960
+ "currencyCreateDescription": "Cadastre uma nova moeda para usar nas contas bancárias.",
961
+ "currencyCode": "Código ISO",
962
+ "currencyCodePlaceholder": "Ex.: BRL",
963
+ "currencyName": "Nome",
964
+ "currencyNamePlaceholder": "Ex.: Real Brasileiro",
965
+ "currencySymbol": "Símbolo",
966
+ "currencySymbolPlaceholder": "Ex.: R$",
948
967
  "initialBalance": "Saldo Inicial",
949
968
  "logo": "Logo",
950
969
  "logoAction": "Enviar logo",
@@ -1002,6 +1021,7 @@
1002
1021
  "select": "Selecione...",
1003
1022
  "cancel": "Cancelar"
1004
1023
  },
1024
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1005
1025
  "adjustment": {
1006
1026
  "action": "Criar Ajuste",
1007
1027
  "title": "Criar Ajuste",
@@ -1071,6 +1091,43 @@
1071
1091
  },
1072
1092
  "StatementsPage": {
1073
1093
  "common": { "cancel": "Cancelar" },
1094
+ "formErrors": {
1095
+ "dateRequired": "Data é obrigatória",
1096
+ "descriptionRequired": "Descrição é obrigatória",
1097
+ "amountMustBePositive": "Valor deve ser maior que zero",
1098
+ "bankAccountRequired": "Conta bancária é obrigatória",
1099
+ "fileRequired": "Arquivo é obrigatório",
1100
+ "fileTypeNotAllowed": "Apenas arquivos CSV ou OFX são permitidos"
1101
+ },
1102
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1103
+ "messages": {
1104
+ "importSuccess": "Extrato importado com sucesso",
1105
+ "importError": "Não foi possível importar o extrato",
1106
+ "selectBankAccount": "Selecione uma conta bancária",
1107
+ "createEntrySuccess": "Movimentação adicionada com sucesso",
1108
+ "createEntryError": "Não foi possível adicionar a movimentação",
1109
+ "selectBankAccountToExport": "Selecione uma conta bancária para exportar",
1110
+ "exportError": "Não foi possível exportar o extrato",
1111
+ "saveChangesSuccess": "Alterações salvas com sucesso",
1112
+ "saveChangesError": "Não foi possível salvar as alterações",
1113
+ "deleteEntrySuccess": "Movimentação excluída com sucesso",
1114
+ "deleteEntryError": "Não foi possível excluir a movimentação"
1115
+ },
1116
+ "aria": {
1117
+ "newBankAccount": "Nova conta bancária"
1118
+ },
1119
+ "newEntry": {
1120
+ "action": "Novo lançamento",
1121
+ "title": "Novo lançamento",
1122
+ "description": "Adicione uma movimentação manual ao extrato da conta bancária.",
1123
+ "submit": "Salvar",
1124
+ "fields": {
1125
+ "date": "Data",
1126
+ "type": "Tipo",
1127
+ "description": "Descrição",
1128
+ "amount": "Valor"
1129
+ }
1130
+ },
1074
1131
  "importDialog": {
1075
1132
  "action": "Importar",
1076
1133
  "title": "Importar Extrato",
@@ -1090,7 +1147,11 @@
1090
1147
  "finance": "Financeiro",
1091
1148
  "current": "Extratos"
1092
1149
  },
1093
- "actions": { "export": "Exportar" },
1150
+ "actions": {
1151
+ "export": "Exportar",
1152
+ "saveChanges": "Salvar alterações",
1153
+ "savingChanges": "Salvando..."
1154
+ },
1094
1155
  "filters": {
1095
1156
  "selectAccount": "Selecione a conta...",
1096
1157
  "searchPlaceholder": "Buscar na descrição..."
@@ -1115,6 +1176,12 @@
1115
1176
  "title": "Nenhuma movimentação encontrada",
1116
1177
  "description": "Importe um extrato para visualizar as movimentações desta conta."
1117
1178
  },
1179
+ "deleteDialog": {
1180
+ "title": "Excluir movimentação",
1181
+ "description": "Esta ação não pode ser desfeita. A movimentação será removida permanentemente do extrato.",
1182
+ "confirm": "Excluir",
1183
+ "deleting": "Excluindo..."
1184
+ },
1118
1185
  "types": {
1119
1186
  "inflow": "Entrada",
1120
1187
  "outflow": "Saída"
@@ -1125,6 +1192,13 @@
1125
1192
  "select": "Selecione...",
1126
1193
  "cancel": "Cancelar"
1127
1194
  },
1195
+ "formErrors": {
1196
+ "sourceAccountRequired": "Conta de origem é obrigatória",
1197
+ "destinationAccountRequired": "Conta de destino é obrigatória",
1198
+ "dateRequired": "Data é obrigatória",
1199
+ "amountMustBePositive": "Valor deve ser maior que zero",
1200
+ "differentAccounts": "As contas de origem e destino devem ser diferentes"
1201
+ },
1128
1202
  "newTransfer": {
1129
1203
  "action": "Nova Transferência",
1130
1204
  "title": "Nova Transferência",
@@ -1154,6 +1228,11 @@
1154
1228
  "activeAccounts": "Contas Ativas",
1155
1229
  "available": "disponíveis"
1156
1230
  },
1231
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1232
+ "transferCreatedSuccess": "Transferência cadastrada com sucesso",
1233
+ "transferCreateError": "Erro ao cadastrar transferência",
1234
+ "allAccounts": "Todas as contas",
1235
+ "searchPlaceholder": "Buscar na descrição...",
1157
1236
  "table": {
1158
1237
  "title": "Transferências Recentes",
1159
1238
  "description": "Histórico de transferências entre contas",
@@ -1161,6 +1240,7 @@
1161
1240
  "date": "Data",
1162
1241
  "source": "Origem",
1163
1242
  "destination": "Destino",
1243
+ "arrow": "→",
1164
1244
  "value": "Valor",
1165
1245
  "description": "Descrição"
1166
1246
  }
@@ -1184,6 +1264,11 @@
1184
1264
  "searchPlaceholder": "Buscar por ação, entidade, resumo, id ou IP",
1185
1265
  "action": "Ação",
1186
1266
  "allActions": "Todas as ações",
1267
+ "actionOptions": {
1268
+ "create": "Criar",
1269
+ "update": "Atualizar",
1270
+ "delete": "Excluir"
1271
+ },
1187
1272
  "userPlaceholder": "Autor (ID do usuário)",
1188
1273
  "entity": "Entidade",
1189
1274
  "allEntities": "Todas as entidades",
@@ -1196,7 +1281,8 @@
1196
1281
  "action": "Ação",
1197
1282
  "entity": "Entidade",
1198
1283
  "record": "Registro",
1199
- "summary": "Resumo"
1284
+ "summary": "Resumo",
1285
+ "ip": "IP"
1200
1286
  },
1201
1287
  "loading": "Carregando logs...",
1202
1288
  "empty": "Nenhum log encontrado."
@@ -1208,6 +1294,7 @@
1208
1294
  "cancel": "Cancelar",
1209
1295
  "save": "Salvar"
1210
1296
  },
1297
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1211
1298
  "messages": {
1212
1299
  "createSuccess": "Categoria criada com sucesso",
1213
1300
  "updateSuccess": "Categoria atualizada com sucesso",
@@ -1275,6 +1362,7 @@
1275
1362
  "cancel": "Cancelar",
1276
1363
  "save": "Salvar"
1277
1364
  },
1365
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1278
1366
  "messages": {
1279
1367
  "createSuccess": "Centro de custo cadastrado com sucesso",
1280
1368
  "createError": "Erro ao cadastrar centro de custo",
@@ -1332,6 +1420,7 @@
1332
1420
  "cancel": "Cancelar",
1333
1421
  "save": "Salvar"
1334
1422
  },
1423
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1335
1424
  "messages": {
1336
1425
  "createSuccess": "Período fechado com sucesso",
1337
1426
  "createError": "Erro ao fechar período"
@@ -1874,6 +1963,7 @@
1874
1963
  "cancel": "Cancelar",
1875
1964
  "save": "Salvar"
1876
1965
  },
1966
+ "draftStatus": "Rascunho salvo {relativeLabel} • Último salvamento: {absoluteLabel}",
1877
1967
  "messages": {
1878
1968
  "createSuccess": "Moeda cadastrada com sucesso",
1879
1969
  "createError": "Erro ao cadastrar moeda",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hed-hog/finance",
3
- "version": "0.0.329",
3
+ "version": "0.0.330",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "dependencies": {
@@ -10,13 +10,13 @@
10
10
  "@nestjs/jwt": "^11",
11
11
  "@nestjs/mapped-types": "*",
12
12
  "@hed-hog/api": "0.0.8",
13
- "@hed-hog/api-locale": "0.0.14",
14
- "@hed-hog/contact": "0.0.329",
15
- "@hed-hog/tag": "0.0.329",
16
- "@hed-hog/core": "0.0.329",
13
+ "@hed-hog/contact": "0.0.330",
17
14
  "@hed-hog/api-prisma": "0.0.6",
15
+ "@hed-hog/api-locale": "0.0.14",
16
+ "@hed-hog/api-pagination": "0.0.7",
18
17
  "@hed-hog/api-types": "0.0.1",
19
- "@hed-hog/api-pagination": "0.0.7"
18
+ "@hed-hog/core": "0.0.330",
19
+ "@hed-hog/tag": "0.0.330"
20
20
  },
21
21
  "exports": {
22
22
  ".": {