e-invoice-api 0.21.0 → 0.22.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e9af0e782b8222197b3b51df35131749a28598e1b4e81fa5873303a0ff735b5
4
- data.tar.gz: 94ff5931f865c4b6329130be709105c614d5aca3a24f17ca08f5e905676991c7
3
+ metadata.gz: 37e6e3c109306db98f4fa6bd1fea2e0d01c80523b9bd1669f4e1cc7e2bc4b8bb
4
+ data.tar.gz: 4469ae435b08b47e097b56a83594c4ef7b3d24c26b5b6acbbc8ec95b0e8c8b43
5
5
  SHA512:
6
- metadata.gz: 136b49718d1ee76f98159180970a85c543689053f2ca0ba1fc511333fd72056399cd76a0820c975a0fcf83597be98444179a18d371baeb862627c4ececfde220
7
- data.tar.gz: 4e6a55c35de4337e8442e98f8045240b0b923af47f462e48af8d654acd12a71e9d201cb247cbabf5901c139c505c6330487f3de9aec28b1d1de2f9b181dd40a8
6
+ metadata.gz: 7527b3e726db27d010d7198f1bc0b23766af7bac9c3c646a065e015bb73d0f9e5bca9cc6e7d7f04865e2ab869998f7b6790271cd48101ee7fe001b9131a2a41a
7
+ data.tar.gz: e101d1a282d31f7e0d21bca944ab2c678614a867cae918f2a6f00a124bfd6c28f98c41372201aff84a89eba5540c3bf761336159f6d927bf503e23d7bed8973a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.22.0 (2026-02-13)
4
+
5
+ Full Changelog: [v0.21.0...v0.22.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.21.0...v0.22.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([57478fb](https://github.com/e-invoice-be/e-invoice-rb/commit/57478fb22e37bd7300fb8d94d9471a8862d46371))
10
+
3
11
  ## 0.21.0 (2026-02-09)
4
12
 
5
13
  Full Changelog: [v0.20.3...v0.21.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.20.3...v0.21.0)
data/README.md CHANGED
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
26
26
  <!-- x-release-please-start-version -->
27
27
 
28
28
  ```ruby
29
- gem "e-invoice-api", "~> 0.21.0"
29
+ gem "e-invoice-api", "~> 0.22.0"
30
30
  ```
31
31
 
32
32
  <!-- x-release-please-end -->
@@ -85,6 +85,12 @@ module EInvoiceAPI
85
85
  # @return [String, nil]
86
86
  optional :customer_name, String, nil?: true
87
87
 
88
+ # @!attribute customer_peppol_id
89
+ # Customer Peppol ID
90
+ #
91
+ # @return [String, nil]
92
+ optional :customer_peppol_id, String, nil?: true
93
+
88
94
  # @!attribute customer_tax_id
89
95
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
90
96
  # prefix
@@ -312,7 +318,7 @@ module EInvoiceAPI
312
318
  # @return [String, nil]
313
319
  optional :vendor_tax_id, String, nil?: true
314
320
 
315
- # @!method initialize(allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, previous_unpaid_balance: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil)
321
+ # @!method initialize(allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_peppol_id: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, previous_unpaid_balance: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil)
316
322
  # Some parameter documentations has been truncated, see
317
323
  # {EInvoiceAPI::Models::DocumentCreate} for more details.
318
324
  #
@@ -342,6 +348,8 @@ module EInvoiceAPI
342
348
  #
343
349
  # @param customer_name [String, nil] The company name of the customer/buyer
344
350
  #
351
+ # @param customer_peppol_id [String, nil] Customer Peppol ID
352
+ #
345
353
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
346
354
  #
347
355
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] The direction of the document: INBOUND (purchases) or OUTBOUND (sales)
@@ -82,6 +82,12 @@ module EInvoiceAPI
82
82
  # @return [String, nil]
83
83
  optional :customer_name, String, nil?: true
84
84
 
85
+ # @!attribute customer_peppol_id
86
+ # Customer Peppol ID
87
+ #
88
+ # @return [String, nil]
89
+ optional :customer_peppol_id, String, nil?: true
90
+
85
91
  # @!attribute customer_tax_id
86
92
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
87
93
  # prefix
@@ -313,7 +319,7 @@ module EInvoiceAPI
313
319
  # @return [String, nil]
314
320
  optional :vendor_tax_id, String, nil?: true
315
321
 
316
- # @!method initialize(allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, success: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, ubl_document: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil)
322
+ # @!method initialize(allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_peppol_id: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, success: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, ubl_document: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil)
317
323
  # Some parameter documentations has been truncated, see
318
324
  # {EInvoiceAPI::Models::DocumentCreateFromPdfResponse} for more details.
319
325
  #
@@ -343,6 +349,8 @@ module EInvoiceAPI
343
349
  #
344
350
  # @param customer_name [String, nil] The company name of the customer/buyer
345
351
  #
352
+ # @param customer_peppol_id [String, nil] Customer Peppol ID
353
+ #
346
354
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
347
355
  #
348
356
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] The direction of the document: INBOUND (purchases) or OUTBOUND (sales)
@@ -96,6 +96,12 @@ module EInvoiceAPI
96
96
  # @return [String, nil]
97
97
  optional :customer_name, String, nil?: true
98
98
 
99
+ # @!attribute customer_peppol_id
100
+ # Customer Peppol ID
101
+ #
102
+ # @return [String, nil]
103
+ optional :customer_peppol_id, String, nil?: true
104
+
99
105
  # @!attribute customer_tax_id
100
106
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
101
107
  # prefix
@@ -315,7 +321,7 @@ module EInvoiceAPI
315
321
  # @return [String, nil]
316
322
  optional :vendor_tax_id, String, nil?: true
317
323
 
318
- # @!method initialize(id:, created_at:, allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil)
324
+ # @!method initialize(id:, created_at:, allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_peppol_id: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil)
319
325
  # Some parameter documentations has been truncated, see
320
326
  # {EInvoiceAPI::Models::DocumentResponse} for more details.
321
327
  #
@@ -349,6 +355,8 @@ module EInvoiceAPI
349
355
  #
350
356
  # @param customer_name [String, nil] The company name of the customer/buyer
351
357
  #
358
+ # @param customer_peppol_id [String, nil] Customer Peppol ID
359
+ #
352
360
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
353
361
  #
354
362
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] The direction of the document: INBOUND (purchases) or OUTBOUND (sales)
@@ -14,7 +14,7 @@ module EInvoiceAPI
14
14
  #
15
15
  # Create a new invoice or credit note
16
16
  #
17
- # @overload create(construct_pdf: nil, allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, previous_unpaid_balance: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil, request_options: {})
17
+ # @overload create(construct_pdf: nil, allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_peppol_id: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, previous_unpaid_balance: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil, request_options: {})
18
18
  #
19
19
  # @param construct_pdf [Boolean] Query param: If true, generate a constructed PDF from the document and include i
20
20
  #
@@ -44,6 +44,8 @@ module EInvoiceAPI
44
44
  #
45
45
  # @param customer_name [String, nil] Body param: The company name of the customer/buyer
46
46
  #
47
+ # @param customer_peppol_id [String, nil] Body param: Customer Peppol ID
48
+ #
47
49
  # @param customer_tax_id [String, nil] Body param: Customer tax ID. For Belgium this is the VAT number. Must include th
48
50
  #
49
51
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] Body param: The direction of the document: INBOUND (purchases) or OUTBOUND (sale
@@ -8,7 +8,7 @@ module EInvoiceAPI
8
8
  #
9
9
  # Validate if the JSON document can be converted to a valid UBL document
10
10
  #
11
- # @overload validate_json(allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, previous_unpaid_balance: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil, request_options: {})
11
+ # @overload validate_json(allowances: nil, amount_due: nil, attachments: nil, billing_address: nil, billing_address_recipient: nil, charges: nil, currency: nil, customer_address: nil, customer_address_recipient: nil, customer_company_id: nil, customer_email: nil, customer_id: nil, customer_name: nil, customer_peppol_id: nil, customer_tax_id: nil, direction: nil, document_type: nil, due_date: nil, invoice_date: nil, invoice_id: nil, invoice_total: nil, items: nil, note: nil, payment_details: nil, payment_term: nil, previous_unpaid_balance: nil, purchase_order: nil, remittance_address: nil, remittance_address_recipient: nil, service_address: nil, service_address_recipient: nil, service_end_date: nil, service_start_date: nil, shipping_address: nil, shipping_address_recipient: nil, state: nil, subtotal: nil, tax_code: nil, tax_details: nil, total_discount: nil, total_tax: nil, vatex: nil, vatex_note: nil, vendor_address: nil, vendor_address_recipient: nil, vendor_company_id: nil, vendor_email: nil, vendor_name: nil, vendor_tax_id: nil, request_options: {})
12
12
  #
13
13
  # @param allowances [Array<EInvoiceAPI::Models::DocumentCreate::Allowance>, nil]
14
14
  #
@@ -36,6 +36,8 @@ module EInvoiceAPI
36
36
  #
37
37
  # @param customer_name [String, nil] The company name of the customer/buyer
38
38
  #
39
+ # @param customer_peppol_id [String, nil] Customer Peppol ID
40
+ #
39
41
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
40
42
  #
41
43
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] The direction of the document: INBOUND (purchases) or OUTBOUND (sales)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EInvoiceAPI
4
- VERSION = "0.21.0"
4
+ VERSION = "0.22.0"
5
5
  end
@@ -67,6 +67,10 @@ module EInvoiceAPI
67
67
  sig { returns(T.nilable(String)) }
68
68
  attr_accessor :customer_name
69
69
 
70
+ # Customer Peppol ID
71
+ sig { returns(T.nilable(String)) }
72
+ attr_accessor :customer_peppol_id
73
+
70
74
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
71
75
  # prefix
72
76
  sig { returns(T.nilable(String)) }
@@ -272,6 +276,7 @@ module EInvoiceAPI
272
276
  customer_email: T.nilable(String),
273
277
  customer_id: T.nilable(String),
274
278
  customer_name: T.nilable(String),
279
+ customer_peppol_id: T.nilable(String),
275
280
  customer_tax_id: T.nilable(String),
276
281
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
277
282
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -341,6 +346,8 @@ module EInvoiceAPI
341
346
  customer_id: nil,
342
347
  # The company name of the customer/buyer
343
348
  customer_name: nil,
349
+ # Customer Peppol ID
350
+ customer_peppol_id: nil,
344
351
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
345
352
  # prefix
346
353
  customer_tax_id: nil,
@@ -444,6 +451,7 @@ module EInvoiceAPI
444
451
  customer_email: T.nilable(String),
445
452
  customer_id: T.nilable(String),
446
453
  customer_name: T.nilable(String),
454
+ customer_peppol_id: T.nilable(String),
447
455
  customer_tax_id: T.nilable(String),
448
456
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
449
457
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -66,6 +66,10 @@ module EInvoiceAPI
66
66
  sig { returns(T.nilable(String)) }
67
67
  attr_accessor :customer_name
68
68
 
69
+ # Customer Peppol ID
70
+ sig { returns(T.nilable(String)) }
71
+ attr_accessor :customer_peppol_id
72
+
69
73
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
70
74
  # prefix
71
75
  sig { returns(T.nilable(String)) }
@@ -292,6 +296,7 @@ module EInvoiceAPI
292
296
  customer_email: T.nilable(String),
293
297
  customer_id: T.nilable(String),
294
298
  customer_name: T.nilable(String),
299
+ customer_peppol_id: T.nilable(String),
295
300
  customer_tax_id: T.nilable(String),
296
301
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
297
302
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -368,6 +373,8 @@ module EInvoiceAPI
368
373
  customer_id: nil,
369
374
  # The company name of the customer/buyer
370
375
  customer_name: nil,
376
+ # Customer Peppol ID
377
+ customer_peppol_id: nil,
371
378
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
372
379
  # prefix
373
380
  customer_tax_id: nil,
@@ -470,6 +477,7 @@ module EInvoiceAPI
470
477
  customer_email: T.nilable(String),
471
478
  customer_id: T.nilable(String),
472
479
  customer_name: T.nilable(String),
480
+ customer_peppol_id: T.nilable(String),
473
481
  customer_tax_id: T.nilable(String),
474
482
  direction: EInvoiceAPI::DocumentDirection::TaggedSymbol,
475
483
  document_type: EInvoiceAPI::DocumentType::TaggedSymbol,
@@ -73,6 +73,10 @@ module EInvoiceAPI
73
73
  sig { returns(T.nilable(String)) }
74
74
  attr_accessor :customer_name
75
75
 
76
+ # Customer Peppol ID
77
+ sig { returns(T.nilable(String)) }
78
+ attr_accessor :customer_peppol_id
79
+
76
80
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
77
81
  # prefix
78
82
  sig { returns(T.nilable(String)) }
@@ -266,6 +270,7 @@ module EInvoiceAPI
266
270
  customer_email: T.nilable(String),
267
271
  customer_id: T.nilable(String),
268
272
  customer_name: T.nilable(String),
273
+ customer_peppol_id: T.nilable(String),
269
274
  customer_tax_id: T.nilable(String),
270
275
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
271
276
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -336,6 +341,8 @@ module EInvoiceAPI
336
341
  customer_id: nil,
337
342
  # The company name of the customer/buyer
338
343
  customer_name: nil,
344
+ # Customer Peppol ID
345
+ customer_peppol_id: nil,
339
346
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
340
347
  # prefix
341
348
  customer_tax_id: nil,
@@ -436,6 +443,7 @@ module EInvoiceAPI
436
443
  customer_email: T.nilable(String),
437
444
  customer_id: T.nilable(String),
438
445
  customer_name: T.nilable(String),
446
+ customer_peppol_id: T.nilable(String),
439
447
  customer_tax_id: T.nilable(String),
440
448
  direction: EInvoiceAPI::DocumentDirection::TaggedSymbol,
441
449
  document_type: EInvoiceAPI::DocumentType::TaggedSymbol,
@@ -30,6 +30,7 @@ module EInvoiceAPI
30
30
  customer_email: T.nilable(String),
31
31
  customer_id: T.nilable(String),
32
32
  customer_name: T.nilable(String),
33
+ customer_peppol_id: T.nilable(String),
33
34
  customer_tax_id: T.nilable(String),
34
35
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
35
36
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -108,6 +109,8 @@ module EInvoiceAPI
108
109
  customer_id: nil,
109
110
  # Body param: The company name of the customer/buyer
110
111
  customer_name: nil,
112
+ # Body param: Customer Peppol ID
113
+ customer_peppol_id: nil,
111
114
  # Body param: Customer tax ID. For Belgium this is the VAT number. Must include
112
115
  # the country prefix
113
116
  customer_tax_id: nil,
@@ -23,6 +23,7 @@ module EInvoiceAPI
23
23
  customer_email: T.nilable(String),
24
24
  customer_id: T.nilable(String),
25
25
  customer_name: T.nilable(String),
26
+ customer_peppol_id: T.nilable(String),
26
27
  customer_tax_id: T.nilable(String),
27
28
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
28
29
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -93,6 +94,8 @@ module EInvoiceAPI
93
94
  customer_id: nil,
94
95
  # The company name of the customer/buyer
95
96
  customer_name: nil,
97
+ # Customer Peppol ID
98
+ customer_peppol_id: nil,
96
99
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
97
100
  # prefix
98
101
  customer_tax_id: nil,
@@ -15,6 +15,7 @@ module EInvoiceAPI
15
15
  customer_email: String?,
16
16
  customer_id: String?,
17
17
  customer_name: String?,
18
+ customer_peppol_id: String?,
18
19
  customer_tax_id: String?,
19
20
  direction: EInvoiceAPI::Models::document_direction,
20
21
  document_type: EInvoiceAPI::Models::document_type,
@@ -83,6 +84,8 @@ module EInvoiceAPI
83
84
 
84
85
  attr_accessor customer_name: String?
85
86
 
87
+ attr_accessor customer_peppol_id: String?
88
+
86
89
  attr_accessor customer_tax_id: String?
87
90
 
88
91
  attr_reader direction: EInvoiceAPI::Models::document_direction?
@@ -187,6 +190,7 @@ module EInvoiceAPI
187
190
  ?customer_email: String?,
188
191
  ?customer_id: String?,
189
192
  ?customer_name: String?,
193
+ ?customer_peppol_id: String?,
190
194
  ?customer_tax_id: String?,
191
195
  ?direction: EInvoiceAPI::Models::document_direction,
192
196
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -238,6 +242,7 @@ module EInvoiceAPI
238
242
  customer_email: String?,
239
243
  customer_id: String?,
240
244
  customer_name: String?,
245
+ customer_peppol_id: String?,
241
246
  customer_tax_id: String?,
242
247
  direction: EInvoiceAPI::Models::document_direction,
243
248
  document_type: EInvoiceAPI::Models::document_type,
@@ -15,6 +15,7 @@ module EInvoiceAPI
15
15
  customer_email: String?,
16
16
  customer_id: String?,
17
17
  customer_name: String?,
18
+ customer_peppol_id: String?,
18
19
  customer_tax_id: String?,
19
20
  direction: EInvoiceAPI::Models::document_direction,
20
21
  document_type: EInvoiceAPI::Models::document_type,
@@ -84,6 +85,8 @@ module EInvoiceAPI
84
85
 
85
86
  attr_accessor customer_name: String?
86
87
 
88
+ attr_accessor customer_peppol_id: String?
89
+
87
90
  attr_accessor customer_tax_id: String?
88
91
 
89
92
  attr_reader direction: EInvoiceAPI::Models::document_direction?
@@ -192,6 +195,7 @@ module EInvoiceAPI
192
195
  ?customer_email: String?,
193
196
  ?customer_id: String?,
194
197
  ?customer_name: String?,
198
+ ?customer_peppol_id: String?,
195
199
  ?customer_tax_id: String?,
196
200
  ?direction: EInvoiceAPI::Models::document_direction,
197
201
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -244,6 +248,7 @@ module EInvoiceAPI
244
248
  customer_email: String?,
245
249
  customer_id: String?,
246
250
  customer_name: String?,
251
+ customer_peppol_id: String?,
247
252
  customer_tax_id: String?,
248
253
  direction: EInvoiceAPI::Models::document_direction,
249
254
  document_type: EInvoiceAPI::Models::document_type,
@@ -17,6 +17,7 @@ module EInvoiceAPI
17
17
  customer_email: String?,
18
18
  customer_id: String?,
19
19
  customer_name: String?,
20
+ customer_peppol_id: String?,
20
21
  customer_tax_id: String?,
21
22
  direction: EInvoiceAPI::Models::document_direction,
22
23
  document_type: EInvoiceAPI::Models::document_type,
@@ -88,6 +89,8 @@ module EInvoiceAPI
88
89
 
89
90
  attr_accessor customer_name: String?
90
91
 
92
+ attr_accessor customer_peppol_id: String?
93
+
91
94
  attr_accessor customer_tax_id: String?
92
95
 
93
96
  attr_reader direction: EInvoiceAPI::Models::document_direction?
@@ -188,6 +191,7 @@ module EInvoiceAPI
188
191
  ?customer_email: String?,
189
192
  ?customer_id: String?,
190
193
  ?customer_name: String?,
194
+ ?customer_peppol_id: String?,
191
195
  ?customer_tax_id: String?,
192
196
  ?direction: EInvoiceAPI::Models::document_direction,
193
197
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -240,6 +244,7 @@ module EInvoiceAPI
240
244
  customer_email: String?,
241
245
  customer_id: String?,
242
246
  customer_name: String?,
247
+ customer_peppol_id: String?,
243
248
  customer_tax_id: String?,
244
249
  direction: EInvoiceAPI::Models::document_direction,
245
250
  document_type: EInvoiceAPI::Models::document_type,
@@ -20,6 +20,7 @@ module EInvoiceAPI
20
20
  ?customer_email: String?,
21
21
  ?customer_id: String?,
22
22
  ?customer_name: String?,
23
+ ?customer_peppol_id: String?,
23
24
  ?customer_tax_id: String?,
24
25
  ?direction: EInvoiceAPI::Models::document_direction,
25
26
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -15,6 +15,7 @@ module EInvoiceAPI
15
15
  ?customer_email: String?,
16
16
  ?customer_id: String?,
17
17
  ?customer_name: String?,
18
+ ?customer_peppol_id: String?,
18
19
  ?customer_tax_id: String?,
19
20
  ?direction: EInvoiceAPI::Models::document_direction,
20
21
  ?document_type: EInvoiceAPI::Models::document_type,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: e-invoice-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - e-invoice
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-09 00:00:00.000000000 Z
11
+ date: 2026-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi