e-invoice-api 0.22.0 → 0.23.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: 37e6e3c109306db98f4fa6bd1fea2e0d01c80523b9bd1669f4e1cc7e2bc4b8bb
4
- data.tar.gz: 4469ae435b08b47e097b56a83594c4ef7b3d24c26b5b6acbbc8ec95b0e8c8b43
3
+ metadata.gz: fdcc747bee81c186cef66ef4f63ce8dc353c0b43023f15cec1dbf94390f53724
4
+ data.tar.gz: 62551b271a1b3095ef255fc9ca88bb86e8cdc55b03f696dc3c9ee47dd1ab03a2
5
5
  SHA512:
6
- metadata.gz: 7527b3e726db27d010d7198f1bc0b23766af7bac9c3c646a065e015bb73d0f9e5bca9cc6e7d7f04865e2ab869998f7b6790271cd48101ee7fe001b9131a2a41a
7
- data.tar.gz: e101d1a282d31f7e0d21bca944ab2c678614a867cae918f2a6f00a124bfd6c28f98c41372201aff84a89eba5540c3bf761336159f6d927bf503e23d7bed8973a
6
+ metadata.gz: 1293b131abce12fab6d7924a4c4c85c9fd36146214340fd3fd4e551518bb6f01a54f2e0a6ea5c5dad8f754ea4037aa93e1e19bba7e9b51359b98370583ac4b12
7
+ data.tar.gz: 44aedb8e35e667bf5c9b6fa0e2681123657f490aa3edf65cfac6f26ba7922bb962aa8bcaa2a8d412c0d4a0efb36915cff4acd59e85ba3a6e77e310d6a2a3d95f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.23.0 (2026-02-13)
4
+
5
+ Full Changelog: [v0.22.0...v0.23.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.22.0...v0.23.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([8c75ea6](https://github.com/e-invoice-be/e-invoice-rb/commit/8c75ea61999635127206f2c1878a73315ea55841))
10
+
3
11
  ## 0.22.0 (2026-02-13)
4
12
 
5
13
  Full Changelog: [v0.21.0...v0.22.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.21.0...v0.22.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.22.0"
29
+ gem "e-invoice-api", "~> 0.23.0"
30
30
  ```
31
31
 
32
32
  <!-- x-release-please-end -->
@@ -85,12 +85,6 @@ 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
-
94
88
  # @!attribute customer_tax_id
95
89
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
96
90
  # prefix
@@ -318,7 +312,7 @@ module EInvoiceAPI
318
312
  # @return [String, nil]
319
313
  optional :vendor_tax_id, String, nil?: true
320
314
 
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)
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)
322
316
  # Some parameter documentations has been truncated, see
323
317
  # {EInvoiceAPI::Models::DocumentCreate} for more details.
324
318
  #
@@ -348,8 +342,6 @@ module EInvoiceAPI
348
342
  #
349
343
  # @param customer_name [String, nil] The company name of the customer/buyer
350
344
  #
351
- # @param customer_peppol_id [String, nil] Customer Peppol ID
352
- #
353
345
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
354
346
  #
355
347
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] The direction of the document: INBOUND (purchases) or OUTBOUND (sales)
@@ -82,12 +82,6 @@ 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
-
91
85
  # @!attribute customer_tax_id
92
86
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
93
87
  # prefix
@@ -319,7 +313,7 @@ module EInvoiceAPI
319
313
  # @return [String, nil]
320
314
  optional :vendor_tax_id, String, nil?: true
321
315
 
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)
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)
323
317
  # Some parameter documentations has been truncated, see
324
318
  # {EInvoiceAPI::Models::DocumentCreateFromPdfResponse} for more details.
325
319
  #
@@ -349,8 +343,6 @@ module EInvoiceAPI
349
343
  #
350
344
  # @param customer_name [String, nil] The company name of the customer/buyer
351
345
  #
352
- # @param customer_peppol_id [String, nil] Customer Peppol ID
353
- #
354
346
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
355
347
  #
356
348
  # @param direction [Symbol, EInvoiceAPI::Models::DocumentDirection] The direction of the document: INBOUND (purchases) or OUTBOUND (sales)
@@ -96,12 +96,6 @@ 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
-
105
99
  # @!attribute customer_tax_id
106
100
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
107
101
  # prefix
@@ -321,7 +315,7 @@ module EInvoiceAPI
321
315
  # @return [String, nil]
322
316
  optional :vendor_tax_id, String, nil?: true
323
317
 
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)
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)
325
319
  # Some parameter documentations has been truncated, see
326
320
  # {EInvoiceAPI::Models::DocumentResponse} for more details.
327
321
  #
@@ -355,8 +349,6 @@ module EInvoiceAPI
355
349
  #
356
350
  # @param customer_name [String, nil] The company name of the customer/buyer
357
351
  #
358
- # @param customer_peppol_id [String, nil] Customer Peppol ID
359
- #
360
352
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
361
353
  #
362
354
  # @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_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: {})
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: {})
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,8 +44,6 @@ 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
- #
49
47
  # @param customer_tax_id [String, nil] Body param: Customer tax ID. For Belgium this is the VAT number. Must include th
50
48
  #
51
49
  # @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_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: {})
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: {})
12
12
  #
13
13
  # @param allowances [Array<EInvoiceAPI::Models::DocumentCreate::Allowance>, nil]
14
14
  #
@@ -36,8 +36,6 @@ 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
- #
41
39
  # @param customer_tax_id [String, nil] Customer tax ID. For Belgium this is the VAT number. Must include the country pr
42
40
  #
43
41
  # @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.22.0"
4
+ VERSION = "0.23.0"
5
5
  end
@@ -67,10 +67,6 @@ 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
-
74
70
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
75
71
  # prefix
76
72
  sig { returns(T.nilable(String)) }
@@ -276,7 +272,6 @@ module EInvoiceAPI
276
272
  customer_email: T.nilable(String),
277
273
  customer_id: T.nilable(String),
278
274
  customer_name: T.nilable(String),
279
- customer_peppol_id: T.nilable(String),
280
275
  customer_tax_id: T.nilable(String),
281
276
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
282
277
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -346,8 +341,6 @@ module EInvoiceAPI
346
341
  customer_id: nil,
347
342
  # The company name of the customer/buyer
348
343
  customer_name: nil,
349
- # Customer Peppol ID
350
- customer_peppol_id: nil,
351
344
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
352
345
  # prefix
353
346
  customer_tax_id: nil,
@@ -451,7 +444,6 @@ module EInvoiceAPI
451
444
  customer_email: T.nilable(String),
452
445
  customer_id: T.nilable(String),
453
446
  customer_name: T.nilable(String),
454
- customer_peppol_id: T.nilable(String),
455
447
  customer_tax_id: T.nilable(String),
456
448
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
457
449
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -66,10 +66,6 @@ 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
-
73
69
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
74
70
  # prefix
75
71
  sig { returns(T.nilable(String)) }
@@ -296,7 +292,6 @@ module EInvoiceAPI
296
292
  customer_email: T.nilable(String),
297
293
  customer_id: T.nilable(String),
298
294
  customer_name: T.nilable(String),
299
- customer_peppol_id: T.nilable(String),
300
295
  customer_tax_id: T.nilable(String),
301
296
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
302
297
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -373,8 +368,6 @@ module EInvoiceAPI
373
368
  customer_id: nil,
374
369
  # The company name of the customer/buyer
375
370
  customer_name: nil,
376
- # Customer Peppol ID
377
- customer_peppol_id: nil,
378
371
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
379
372
  # prefix
380
373
  customer_tax_id: nil,
@@ -477,7 +470,6 @@ module EInvoiceAPI
477
470
  customer_email: T.nilable(String),
478
471
  customer_id: T.nilable(String),
479
472
  customer_name: T.nilable(String),
480
- customer_peppol_id: T.nilable(String),
481
473
  customer_tax_id: T.nilable(String),
482
474
  direction: EInvoiceAPI::DocumentDirection::TaggedSymbol,
483
475
  document_type: EInvoiceAPI::DocumentType::TaggedSymbol,
@@ -73,10 +73,6 @@ 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
-
80
76
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
81
77
  # prefix
82
78
  sig { returns(T.nilable(String)) }
@@ -270,7 +266,6 @@ module EInvoiceAPI
270
266
  customer_email: T.nilable(String),
271
267
  customer_id: T.nilable(String),
272
268
  customer_name: T.nilable(String),
273
- customer_peppol_id: T.nilable(String),
274
269
  customer_tax_id: T.nilable(String),
275
270
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
276
271
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -341,8 +336,6 @@ module EInvoiceAPI
341
336
  customer_id: nil,
342
337
  # The company name of the customer/buyer
343
338
  customer_name: nil,
344
- # Customer Peppol ID
345
- customer_peppol_id: nil,
346
339
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
347
340
  # prefix
348
341
  customer_tax_id: nil,
@@ -443,7 +436,6 @@ module EInvoiceAPI
443
436
  customer_email: T.nilable(String),
444
437
  customer_id: T.nilable(String),
445
438
  customer_name: T.nilable(String),
446
- customer_peppol_id: T.nilable(String),
447
439
  customer_tax_id: T.nilable(String),
448
440
  direction: EInvoiceAPI::DocumentDirection::TaggedSymbol,
449
441
  document_type: EInvoiceAPI::DocumentType::TaggedSymbol,
@@ -30,7 +30,6 @@ 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),
34
33
  customer_tax_id: T.nilable(String),
35
34
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
36
35
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -109,8 +108,6 @@ module EInvoiceAPI
109
108
  customer_id: nil,
110
109
  # Body param: The company name of the customer/buyer
111
110
  customer_name: nil,
112
- # Body param: Customer Peppol ID
113
- customer_peppol_id: nil,
114
111
  # Body param: Customer tax ID. For Belgium this is the VAT number. Must include
115
112
  # the country prefix
116
113
  customer_tax_id: nil,
@@ -23,7 +23,6 @@ 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),
27
26
  customer_tax_id: T.nilable(String),
28
27
  direction: EInvoiceAPI::DocumentDirection::OrSymbol,
29
28
  document_type: EInvoiceAPI::DocumentType::OrSymbol,
@@ -94,8 +93,6 @@ module EInvoiceAPI
94
93
  customer_id: nil,
95
94
  # The company name of the customer/buyer
96
95
  customer_name: nil,
97
- # Customer Peppol ID
98
- customer_peppol_id: nil,
99
96
  # Customer tax ID. For Belgium this is the VAT number. Must include the country
100
97
  # prefix
101
98
  customer_tax_id: nil,
@@ -15,7 +15,6 @@ module EInvoiceAPI
15
15
  customer_email: String?,
16
16
  customer_id: String?,
17
17
  customer_name: String?,
18
- customer_peppol_id: String?,
19
18
  customer_tax_id: String?,
20
19
  direction: EInvoiceAPI::Models::document_direction,
21
20
  document_type: EInvoiceAPI::Models::document_type,
@@ -84,8 +83,6 @@ module EInvoiceAPI
84
83
 
85
84
  attr_accessor customer_name: String?
86
85
 
87
- attr_accessor customer_peppol_id: String?
88
-
89
86
  attr_accessor customer_tax_id: String?
90
87
 
91
88
  attr_reader direction: EInvoiceAPI::Models::document_direction?
@@ -190,7 +187,6 @@ module EInvoiceAPI
190
187
  ?customer_email: String?,
191
188
  ?customer_id: String?,
192
189
  ?customer_name: String?,
193
- ?customer_peppol_id: String?,
194
190
  ?customer_tax_id: String?,
195
191
  ?direction: EInvoiceAPI::Models::document_direction,
196
192
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -242,7 +238,6 @@ module EInvoiceAPI
242
238
  customer_email: String?,
243
239
  customer_id: String?,
244
240
  customer_name: String?,
245
- customer_peppol_id: String?,
246
241
  customer_tax_id: String?,
247
242
  direction: EInvoiceAPI::Models::document_direction,
248
243
  document_type: EInvoiceAPI::Models::document_type,
@@ -15,7 +15,6 @@ module EInvoiceAPI
15
15
  customer_email: String?,
16
16
  customer_id: String?,
17
17
  customer_name: String?,
18
- customer_peppol_id: String?,
19
18
  customer_tax_id: String?,
20
19
  direction: EInvoiceAPI::Models::document_direction,
21
20
  document_type: EInvoiceAPI::Models::document_type,
@@ -85,8 +84,6 @@ module EInvoiceAPI
85
84
 
86
85
  attr_accessor customer_name: String?
87
86
 
88
- attr_accessor customer_peppol_id: String?
89
-
90
87
  attr_accessor customer_tax_id: String?
91
88
 
92
89
  attr_reader direction: EInvoiceAPI::Models::document_direction?
@@ -195,7 +192,6 @@ module EInvoiceAPI
195
192
  ?customer_email: String?,
196
193
  ?customer_id: String?,
197
194
  ?customer_name: String?,
198
- ?customer_peppol_id: String?,
199
195
  ?customer_tax_id: String?,
200
196
  ?direction: EInvoiceAPI::Models::document_direction,
201
197
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -248,7 +244,6 @@ module EInvoiceAPI
248
244
  customer_email: String?,
249
245
  customer_id: String?,
250
246
  customer_name: String?,
251
- customer_peppol_id: String?,
252
247
  customer_tax_id: String?,
253
248
  direction: EInvoiceAPI::Models::document_direction,
254
249
  document_type: EInvoiceAPI::Models::document_type,
@@ -17,7 +17,6 @@ module EInvoiceAPI
17
17
  customer_email: String?,
18
18
  customer_id: String?,
19
19
  customer_name: String?,
20
- customer_peppol_id: String?,
21
20
  customer_tax_id: String?,
22
21
  direction: EInvoiceAPI::Models::document_direction,
23
22
  document_type: EInvoiceAPI::Models::document_type,
@@ -89,8 +88,6 @@ module EInvoiceAPI
89
88
 
90
89
  attr_accessor customer_name: String?
91
90
 
92
- attr_accessor customer_peppol_id: String?
93
-
94
91
  attr_accessor customer_tax_id: String?
95
92
 
96
93
  attr_reader direction: EInvoiceAPI::Models::document_direction?
@@ -191,7 +188,6 @@ module EInvoiceAPI
191
188
  ?customer_email: String?,
192
189
  ?customer_id: String?,
193
190
  ?customer_name: String?,
194
- ?customer_peppol_id: String?,
195
191
  ?customer_tax_id: String?,
196
192
  ?direction: EInvoiceAPI::Models::document_direction,
197
193
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -244,7 +240,6 @@ module EInvoiceAPI
244
240
  customer_email: String?,
245
241
  customer_id: String?,
246
242
  customer_name: String?,
247
- customer_peppol_id: String?,
248
243
  customer_tax_id: String?,
249
244
  direction: EInvoiceAPI::Models::document_direction,
250
245
  document_type: EInvoiceAPI::Models::document_type,
@@ -20,7 +20,6 @@ module EInvoiceAPI
20
20
  ?customer_email: String?,
21
21
  ?customer_id: String?,
22
22
  ?customer_name: String?,
23
- ?customer_peppol_id: String?,
24
23
  ?customer_tax_id: String?,
25
24
  ?direction: EInvoiceAPI::Models::document_direction,
26
25
  ?document_type: EInvoiceAPI::Models::document_type,
@@ -15,7 +15,6 @@ module EInvoiceAPI
15
15
  ?customer_email: String?,
16
16
  ?customer_id: String?,
17
17
  ?customer_name: String?,
18
- ?customer_peppol_id: String?,
19
18
  ?customer_tax_id: String?,
20
19
  ?direction: EInvoiceAPI::Models::document_direction,
21
20
  ?document_type: EInvoiceAPI::Models::document_type,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: e-invoice-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - e-invoice