factpulse 3.0.13 → 3.0.15

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: 61996463937f25c03a8933b19a4d9fd45625fada969d6eaac96f3d14a6ca4760
4
- data.tar.gz: d9a27c5a42dfd5cc999626f36501e59bc92af614b6a9e0ed5cefe40ca0c8dbfb
3
+ metadata.gz: 5150809f8b3b3393bed2f574f2464d3b50b133b43fd9721515eabd3c8cc6c107
4
+ data.tar.gz: a9a84f6de55a464411d26ffabcdd2be6c3427727454c9fecaab63af027150fbc
5
5
  SHA512:
6
- metadata.gz: 3c3bc73e34525479d9d47c3e0aa10e5d883526004232a006d06750cc94fdeedcc29d2c13c12a8b96f2cba344847631614603ba113104867844226a7aee72e1a3
7
- data.tar.gz: f2f201c79c87d5b533c7ed5b03bf83518f2f5facb225a532c41f727b9985b25339fcc9b2cd5d8f8e5776772fe1ba9c532c546d77e741d6b764e7862f54fe65db
6
+ metadata.gz: 5743dc8e1f7d8d42c0237e2c9a87d343ef6acb23879962f12dbc2c40cd4d528cec409bfc1dabacb13bf2fba51911111f8258584745fefab3f2327f4549579273
7
+ data.tar.gz: 41da2d4a99becf6ea5f29c7e2ab6a36dc7d4d2efd8e97dc1b3234144560a7f8fe6dad7d3282033908e680dcd3fcb539163e450017f679f41607086c2092f8dc8
data/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [3.0.13] - 2026-01-14
10
+ ## [3.0.15] - 2026-01-14
11
11
 
12
12
  ### Added
13
13
  - Version initiale du SDK ruby
@@ -24,5 +24,5 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
24
24
  - Guide d'authentification JWT
25
25
  - Configuration avancée (timeout, proxy, debug)
26
26
 
27
- [Unreleased]: https://github.com/factpulse/sdk-ruby/compare/v3.0.13...HEAD
28
- [3.0.13]: https://github.com/factpulse/sdk-ruby/releases/tag/v3.0.13
27
+ [Unreleased]: https://github.com/factpulse/sdk-ruby/compare/v3.0.15...HEAD
28
+ [3.0.15]: https://github.com/factpulse/sdk-ruby/releases/tag/v3.0.15
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- factpulse (3.0.13)
4
+ factpulse (3.0.15)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -40,8 +40,10 @@ client = FactPulseClient.new(
40
40
 
41
41
  # Build the invoice with helpers
42
42
  invoice_data = {
43
- number: 'INV-2025-001',
44
- date: '2025-01-15',
43
+ invoice_number: 'INV-2025-001',
44
+ issue_date: '2025-01-15',
45
+ due_date: '2025-02-15',
46
+ currency_code: 'EUR',
45
47
  supplier: supplier(
46
48
  'My Company SAS',
47
49
  '12345678901234',
@@ -56,7 +58,7 @@ invoice_data = {
56
58
  '69001',
57
59
  'Lyon'
58
60
  ),
59
- total_amount: total_amount(1000.00, 200.00, 1200.00, 1200.00),
61
+ totals: invoice_totals(1000.00, 200.00, 1200.00, 1200.00),
60
62
  lines: [
61
63
  invoice_line(1, 'Consulting services', 10, 100.00, 1000.00)
62
64
  ],
@@ -85,23 +87,23 @@ amount('1234.56') # "1234.56"
85
87
  amount(nil) # "0.00"
86
88
  ```
87
89
 
88
- ### total_amount(excluding_tax, vat, including_tax, due, ...)
90
+ ### invoice_totals(excl_tax, vat, incl_tax, amount_due, ...)
89
91
 
90
- Creates a complete TotalAmount object.
92
+ Creates a complete invoice totals object.
91
93
 
92
94
  ```ruby
93
- total = total_amount(
94
- 1000.00, # excluding_tax
95
+ totals = invoice_totals(
96
+ 1000.00, # excl_tax
95
97
  200.00, # vat
96
- 1200.00, # including_tax
97
- 1200.00, # due
98
- 50.00, # discount_including_tax (optional)
99
- 'Loyalty discount', # discount_reason (optional)
100
- 100.00 # prepayment (optional)
98
+ 1200.00, # incl_tax
99
+ 1200.00, # amount_due
100
+ discount_incl_tax: 50.00, # optional
101
+ discount_reason: 'Loyalty discount', # optional
102
+ prepayment: 100.00 # optional
101
103
  )
102
104
  ```
103
105
 
104
- ### invoice_line(number, description, quantity, unit_price, line_total, ...)
106
+ ### invoice_line(line_number, item_name, quantity, unit_net_price, line_net_amount, ...)
105
107
 
106
108
  Creates an invoice line.
107
109
 
@@ -111,26 +113,26 @@ line = invoice_line(
111
113
  'Consulting services',
112
114
  5,
113
115
  200.00,
114
- 1000.00, # line_total required
116
+ 1000.00,
115
117
  'S', # vat_category: S, Z, E, AE, K
116
- 'HOUR', # unit: FIXED, PIECE, HOUR, DAY...
118
+ 'HOUR', # unit: LUMP_SUM, PIECE, HOUR, DAY...
117
119
  {
118
- vat_rate: 'VAT20', # Or manual_vat_rate: '20.00'
120
+ vat_rate: 'TVA20', # Or manual_vat_rate: '20.00'
119
121
  reference: 'REF-001'
120
122
  }
121
123
  )
122
124
  ```
123
125
 
124
- ### vat_line(base_excluding_tax, vat_amount, ...)
126
+ ### vat_line(taxable_amount, vat_amount, ...)
125
127
 
126
128
  Creates a VAT breakdown line.
127
129
 
128
130
  ```ruby
129
131
  vat = vat_line(
130
- 1000.00, # base_excluding_tax
132
+ 1000.00, # taxable_amount
131
133
  200.00, # vat_amount
132
134
  'S', # category: S, Z, E, AE, K
133
- { rate: 'VAT20' } # Or manual_rate: '20.00'
135
+ { rate: 'TVA20' } # Or manual_rate: '20.00'
134
136
  )
135
137
  ```
136
138
 
@@ -0,0 +1,22 @@
1
+ # FactPulse::FactureElectroniqueRestApiSchemasEreportingValidationError
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **field** | **String** | Field path with error | |
8
+ | **message** | **String** | Error message | |
9
+ | **code** | **String** | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'factpulse'
15
+
16
+ instance = FactPulse::FactureElectroniqueRestApiSchemasEreportingValidationError.new(
17
+ field: null,
18
+ message: null,
19
+ code: null
20
+ )
21
+ ```
22
+
@@ -7,8 +7,8 @@
7
7
  | **valid** | **Boolean** | Whether the data is valid | |
8
8
  | **report_id** | **String** | Report identifier | |
9
9
  | **flow_type** | **String** | Flux type | |
10
- | **errors** | [**Array<ValidationError>**](ValidationError.md) | List of validation errors (if any) | [optional] |
11
- | **warnings** | [**Array<ValidationError>**](ValidationError.md) | List of validation warnings (if any) | [optional] |
10
+ | **errors** | [**Array<FactureElectroniqueRestApiSchemasEreportingValidationError>**](FactureElectroniqueRestApiSchemasEreportingValidationError.md) | List of validation errors (if any) | [optional] |
11
+ | **warnings** | [**Array<FactureElectroniqueRestApiSchemasEreportingValidationError>**](FactureElectroniqueRestApiSchemasEreportingValidationError.md) | List of validation warnings (if any) | [optional] |
12
12
  | **message** | **String** | Status message | |
13
13
 
14
14
  ## Example
@@ -9,7 +9,7 @@
9
9
  | **schematron_rules_total** | **Integer** | Total regles | |
10
10
  | **pdfa_compliant** | **Boolean** | PDF/A-3 conforme | [optional][default to true] |
11
11
  | **xml_embedded** | **Boolean** | XML embarque dans PDF | [optional][default to true] |
12
- | **errors** | [**Array<FactureElectroniqueRestApiSchemasConvertValidationError>**](FactureElectroniqueRestApiSchemasConvertValidationError.md) | | [optional] |
12
+ | **errors** | [**Array<ValidationError>**](ValidationError.md) | | [optional] |
13
13
 
14
14
  ## Example
15
15
 
@@ -14,38 +14,22 @@ require 'date'
14
14
  require 'time'
15
15
 
16
16
  module FactPulse
17
- # Erreur de validation Schematron avec suggestion de correction.
18
- class FactureElectroniqueRestApiSchemasConvertValidationError < ApiModelBase
19
- # Code de la regle (BR-XX, BR-FR-XX)
20
- attr_accessor :rule
17
+ # Validation error detail.
18
+ class FactureElectroniqueRestApiSchemasEreportingValidationError < ApiModelBase
19
+ # Field path with error
20
+ attr_accessor :field
21
21
 
22
- attr_accessor :bt_code
23
-
24
- # Gravite: error, warning
25
- attr_accessor :severity
26
-
27
- # Message d'erreur
22
+ # Error message
28
23
  attr_accessor :message
29
24
 
30
- attr_accessor :suggested_value
31
-
32
- attr_accessor :suggested_field
33
-
34
- attr_accessor :explanation
35
-
36
- attr_accessor :confidence
25
+ attr_accessor :code
37
26
 
38
27
  # Attribute mapping from ruby-style variable name to JSON key.
39
28
  def self.attribute_map
40
29
  {
41
- :'rule' => :'rule',
42
- :'bt_code' => :'bt_code',
43
- :'severity' => :'severity',
30
+ :'field' => :'field',
44
31
  :'message' => :'message',
45
- :'suggested_value' => :'suggested_value',
46
- :'suggested_field' => :'suggested_field',
47
- :'explanation' => :'explanation',
48
- :'confidence' => :'confidence'
32
+ :'code' => :'code'
49
33
  }
50
34
  end
51
35
 
@@ -62,25 +46,16 @@ module FactPulse
62
46
  # Attribute type mapping.
63
47
  def self.openapi_types
64
48
  {
65
- :'rule' => :'String',
66
- :'bt_code' => :'String',
67
- :'severity' => :'String',
49
+ :'field' => :'String',
68
50
  :'message' => :'String',
69
- :'suggested_value' => :'String',
70
- :'suggested_field' => :'String',
71
- :'explanation' => :'String',
72
- :'confidence' => :'Float'
51
+ :'code' => :'String'
73
52
  }
74
53
  end
75
54
 
76
55
  # List of attributes with nullable: true
77
56
  def self.openapi_nullable
78
57
  Set.new([
79
- :'bt_code',
80
- :'suggested_value',
81
- :'suggested_field',
82
- :'explanation',
83
- :'confidence'
58
+ :'code'
84
59
  ])
85
60
  end
86
61
 
@@ -88,32 +63,22 @@ module FactPulse
88
63
  # @param [Hash] attributes Model attributes in the form of hash
89
64
  def initialize(attributes = {})
90
65
  if (!attributes.is_a?(Hash))
91
- fail ArgumentError, "The input argument (attributes) must be a hash in `FactPulse::FactureElectroniqueRestApiSchemasConvertValidationError` initialize method"
66
+ fail ArgumentError, "The input argument (attributes) must be a hash in `FactPulse::FactureElectroniqueRestApiSchemasEreportingValidationError` initialize method"
92
67
  end
93
68
 
94
69
  # check to see if the attribute exists and convert string to symbol for hash key
95
70
  acceptable_attribute_map = self.class.acceptable_attribute_map
96
71
  attributes = attributes.each_with_object({}) { |(k, v), h|
97
72
  if (!acceptable_attribute_map.key?(k.to_sym))
98
- fail ArgumentError, "`#{k}` is not a valid attribute in `FactPulse::FactureElectroniqueRestApiSchemasConvertValidationError`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
73
+ fail ArgumentError, "`#{k}` is not a valid attribute in `FactPulse::FactureElectroniqueRestApiSchemasEreportingValidationError`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
99
74
  end
100
75
  h[k.to_sym] = v
101
76
  }
102
77
 
103
- if attributes.key?(:'rule')
104
- self.rule = attributes[:'rule']
78
+ if attributes.key?(:'field')
79
+ self.field = attributes[:'field']
105
80
  else
106
- self.rule = nil
107
- end
108
-
109
- if attributes.key?(:'bt_code')
110
- self.bt_code = attributes[:'bt_code']
111
- end
112
-
113
- if attributes.key?(:'severity')
114
- self.severity = attributes[:'severity']
115
- else
116
- self.severity = nil
81
+ self.field = nil
117
82
  end
118
83
 
119
84
  if attributes.key?(:'message')
@@ -122,20 +87,8 @@ module FactPulse
122
87
  self.message = nil
123
88
  end
124
89
 
125
- if attributes.key?(:'suggested_value')
126
- self.suggested_value = attributes[:'suggested_value']
127
- end
128
-
129
- if attributes.key?(:'suggested_field')
130
- self.suggested_field = attributes[:'suggested_field']
131
- end
132
-
133
- if attributes.key?(:'explanation')
134
- self.explanation = attributes[:'explanation']
135
- end
136
-
137
- if attributes.key?(:'confidence')
138
- self.confidence = attributes[:'confidence']
90
+ if attributes.key?(:'code')
91
+ self.code = attributes[:'code']
139
92
  end
140
93
  end
141
94
 
@@ -144,26 +97,14 @@ module FactPulse
144
97
  def list_invalid_properties
145
98
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
146
99
  invalid_properties = Array.new
147
- if @rule.nil?
148
- invalid_properties.push('invalid value for "rule", rule cannot be nil.')
149
- end
150
-
151
- if @severity.nil?
152
- invalid_properties.push('invalid value for "severity", severity cannot be nil.')
100
+ if @field.nil?
101
+ invalid_properties.push('invalid value for "field", field cannot be nil.')
153
102
  end
154
103
 
155
104
  if @message.nil?
156
105
  invalid_properties.push('invalid value for "message", message cannot be nil.')
157
106
  end
158
107
 
159
- if !@confidence.nil? && @confidence > 1.0
160
- invalid_properties.push('invalid value for "confidence", must be smaller than or equal to 1.0.')
161
- end
162
-
163
- if !@confidence.nil? && @confidence < 0.0
164
- invalid_properties.push('invalid value for "confidence", must be greater than or equal to 0.0.')
165
- end
166
-
167
108
  invalid_properties
168
109
  end
169
110
 
@@ -171,32 +112,19 @@ module FactPulse
171
112
  # @return true if the model is valid
172
113
  def valid?
173
114
  warn '[DEPRECATED] the `valid?` method is obsolete'
174
- return false if @rule.nil?
175
- return false if @severity.nil?
115
+ return false if @field.nil?
176
116
  return false if @message.nil?
177
- return false if !@confidence.nil? && @confidence > 1.0
178
- return false if !@confidence.nil? && @confidence < 0.0
179
117
  true
180
118
  end
181
119
 
182
120
  # Custom attribute writer method with validation
183
- # @param [Object] rule Value to be assigned
184
- def rule=(rule)
185
- if rule.nil?
186
- fail ArgumentError, 'rule cannot be nil'
121
+ # @param [Object] field Value to be assigned
122
+ def field=(field)
123
+ if field.nil?
124
+ fail ArgumentError, 'field cannot be nil'
187
125
  end
188
126
 
189
- @rule = rule
190
- end
191
-
192
- # Custom attribute writer method with validation
193
- # @param [Object] severity Value to be assigned
194
- def severity=(severity)
195
- if severity.nil?
196
- fail ArgumentError, 'severity cannot be nil'
197
- end
198
-
199
- @severity = severity
127
+ @field = field
200
128
  end
201
129
 
202
130
  # Custom attribute writer method with validation
@@ -209,33 +137,14 @@ module FactPulse
209
137
  @message = message
210
138
  end
211
139
 
212
- # Custom attribute writer method with validation
213
- # @param [Object] confidence Value to be assigned
214
- def confidence=(confidence)
215
- if !confidence.nil? && confidence > 1.0
216
- fail ArgumentError, 'invalid value for "confidence", must be smaller than or equal to 1.0.'
217
- end
218
-
219
- if !confidence.nil? && confidence < 0.0
220
- fail ArgumentError, 'invalid value for "confidence", must be greater than or equal to 0.0.'
221
- end
222
-
223
- @confidence = confidence
224
- end
225
-
226
140
  # Checks equality by comparing each attribute.
227
141
  # @param [Object] Object to be compared
228
142
  def ==(o)
229
143
  return true if self.equal?(o)
230
144
  self.class == o.class &&
231
- rule == o.rule &&
232
- bt_code == o.bt_code &&
233
- severity == o.severity &&
145
+ field == o.field &&
234
146
  message == o.message &&
235
- suggested_value == o.suggested_value &&
236
- suggested_field == o.suggested_field &&
237
- explanation == o.explanation &&
238
- confidence == o.confidence
147
+ code == o.code
239
148
  end
240
149
 
241
150
  # @see the `==` method
@@ -247,7 +156,7 @@ module FactPulse
247
156
  # Calculates hash code according to all attributes.
248
157
  # @return [Integer] Hash code
249
158
  def hash
250
- [rule, bt_code, severity, message, suggested_value, suggested_field, explanation, confidence].hash
159
+ [field, message, code].hash
251
160
  end
252
161
 
253
162
  # Builds the object from hash
@@ -62,8 +62,8 @@ module FactPulse
62
62
  :'valid' => :'Boolean',
63
63
  :'report_id' => :'String',
64
64
  :'flow_type' => :'String',
65
- :'errors' => :'Array<ValidationError>',
66
- :'warnings' => :'Array<ValidationError>',
65
+ :'errors' => :'Array<FactureElectroniqueRestApiSchemasEreportingValidationError>',
66
+ :'warnings' => :'Array<FactureElectroniqueRestApiSchemasEreportingValidationError>',
67
67
  :'message' => :'String'
68
68
  }
69
69
  end
@@ -63,7 +63,7 @@ module FactPulse
63
63
  :'schematron_rules_total' => :'Integer',
64
64
  :'pdfa_compliant' => :'Boolean',
65
65
  :'xml_embedded' => :'Boolean',
66
- :'errors' => :'Array<FactureElectroniqueRestApiSchemasConvertValidationError>'
66
+ :'errors' => :'Array<ValidationError>'
67
67
  }
68
68
  end
69
69
 
@@ -11,5 +11,5 @@ Generator version: 7.19.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module FactPulse
14
- VERSION = '3.0.13'
14
+ VERSION = '3.0.15'
15
15
  end
data/lib/factpulse.rb CHANGED
@@ -160,7 +160,7 @@ require 'factpulse/models/extraction_info'
160
160
  require 'factpulse/models/factur_x_invoice'
161
161
  require 'factpulse/models/factur_xpdf_info'
162
162
  require 'factpulse/models/facture_electronique_models_invoice_type_code'
163
- require 'factpulse/models/facture_electronique_rest_api_schemas_convert_validation_error'
163
+ require 'factpulse/models/facture_electronique_rest_api_schemas_ereporting_validation_error'
164
164
  require 'factpulse/models/facture_electronique_rest_api_schemas_processing_chorus_pro_credentials'
165
165
  require 'factpulse/models/field_status'
166
166
  require 'factpulse/models/file_info'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factpulse
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.13
4
+ version: 3.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -265,7 +265,7 @@ files:
265
265
  - docs/FacturXInvoice.md
266
266
  - docs/FacturXPDFInfo.md
267
267
  - docs/FactureElectroniqueModelsInvoiceTypeCode.md
268
- - docs/FactureElectroniqueRestApiSchemasConvertValidationError.md
268
+ - docs/FactureElectroniqueRestApiSchemasEreportingValidationError.md
269
269
  - docs/FactureElectroniqueRestApiSchemasProcessingChorusProCredentials.md
270
270
  - docs/FieldStatus.md
271
271
  - docs/FileInfo.md
@@ -567,7 +567,7 @@ files:
567
567
  - lib/factpulse/models/factur_x_invoice.rb
568
568
  - lib/factpulse/models/factur_xpdf_info.rb
569
569
  - lib/factpulse/models/facture_electronique_models_invoice_type_code.rb
570
- - lib/factpulse/models/facture_electronique_rest_api_schemas_convert_validation_error.rb
570
+ - lib/factpulse/models/facture_electronique_rest_api_schemas_ereporting_validation_error.rb
571
571
  - lib/factpulse/models/facture_electronique_rest_api_schemas_processing_chorus_pro_credentials.rb
572
572
  - lib/factpulse/models/field_status.rb
573
573
  - lib/factpulse/models/file_info.rb
@@ -1,32 +0,0 @@
1
- # FactPulse::FactureElectroniqueRestApiSchemasConvertValidationError
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **rule** | **String** | Code de la regle (BR-XX, BR-FR-XX) | |
8
- | **bt_code** | **String** | | [optional] |
9
- | **severity** | **String** | Gravite: error, warning | |
10
- | **message** | **String** | Message d&#39;erreur | |
11
- | **suggested_value** | **String** | | [optional] |
12
- | **suggested_field** | **String** | | [optional] |
13
- | **explanation** | **String** | | [optional] |
14
- | **confidence** | **Float** | | [optional] |
15
-
16
- ## Example
17
-
18
- ```ruby
19
- require 'factpulse'
20
-
21
- instance = FactPulse::FactureElectroniqueRestApiSchemasConvertValidationError.new(
22
- rule: null,
23
- bt_code: null,
24
- severity: null,
25
- message: null,
26
- suggested_value: null,
27
- suggested_field: null,
28
- explanation: null,
29
- confidence: null
30
- )
31
- ```
32
-