accounting-engine 0.1.9 → 0.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accounting-engine",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Bu paket, verilen faturanın, belirtilen kurallar çerçevesinde muhasebeleştirilmesini kolaylaştırmak adına oluşturulmuştur.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -235,6 +235,7 @@ const normalizeInvoiceForAccounting = async (invoice, direction) => {
235
235
  sender_object: invoice.sender_object,
236
236
  receiver_object: invoice.receiver_object,
237
237
  accounting_lines: accountingLines,
238
+ additional_document_reference: invoice.additional_document_reference,
238
239
  };
239
240
  return data;
240
241
  };