storecove 1.0.9 → 1.0.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.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +69 -0
  4. data/lib/storecove.rb +20 -1
  5. data/lib/storecove/api/invoice_submissions_api.rb +9 -4
  6. data/lib/storecove/api/legal_entities_api.rb +248 -0
  7. data/lib/storecove/api/peppol_identifiers_api.rb +156 -0
  8. data/lib/storecove/api/purchase_invoices_api.rb +133 -0
  9. data/lib/storecove/api/shop_account_requests_api.rb +24 -11
  10. data/lib/storecove/api/shop_accounts_api.rb +25 -12
  11. data/lib/storecove/api/shops_api.rb +2 -1
  12. data/lib/storecove/api_client.rb +39 -26
  13. data/lib/storecove/api_error.rb +1 -0
  14. data/lib/storecove/configuration.rb +7 -0
  15. data/lib/storecove/models/accounting_cost_code.rb +2 -1
  16. data/lib/storecove/models/accounting_customer_party.rb +2 -1
  17. data/lib/storecove/models/accounting_details.rb +219 -0
  18. data/lib/storecove/models/accounting_details_1.rb +219 -0
  19. data/lib/storecove/models/address.rb +2 -1
  20. data/lib/storecove/models/contact.rb +2 -6
  21. data/lib/storecove/models/country.rb +10 -0
  22. data/lib/storecove/models/currency_code.rb +10 -0
  23. data/lib/storecove/models/error_model.rb +2 -1
  24. data/lib/storecove/models/invoice.rb +16 -3
  25. data/lib/storecove/models/invoice_line.rb +251 -6
  26. data/lib/storecove/models/invoice_recipient.rb +24 -11
  27. data/lib/storecove/models/invoice_recipient_preflight.rb +21 -19
  28. data/lib/storecove/models/invoice_submission.rb +20 -9
  29. data/lib/storecove/models/invoice_submission_result.rb +2 -1
  30. data/lib/storecove/models/legal_entity.rb +164 -25
  31. data/lib/storecove/models/legal_entity_create.rb +417 -0
  32. data/lib/storecove/models/legal_entity_identifier.rb +2 -1
  33. data/lib/storecove/models/legal_entity_shop.rb +253 -0
  34. data/lib/storecove/models/legal_entity_update.rb +380 -0
  35. data/lib/storecove/models/logos.rb +2 -1
  36. data/lib/storecove/models/party.rb +7 -1
  37. data/lib/storecove/models/payment_means.rb +199 -0
  38. data/lib/storecove/models/peppol_identifier.rb +284 -0
  39. data/lib/storecove/models/peppol_identifier_create.rb +308 -0
  40. data/lib/storecove/models/preflight_invoice_recipient_result.rb +2 -1
  41. data/lib/storecove/models/public_identifier.rb +3 -2
  42. data/lib/storecove/models/public_identifiers.rb +2 -1
  43. data/lib/storecove/models/purchase_invoice.rb +463 -0
  44. data/lib/storecove/models/purchase_invoice_invoice_line.rb +247 -0
  45. data/lib/storecove/models/purchase_invoice_sender.rb +280 -0
  46. data/lib/storecove/models/purchase_invoice_sender_billing_contact.rb +209 -0
  47. data/lib/storecove/models/purchase_invoice_ubl.rb +209 -0
  48. data/lib/storecove/models/shop.rb +3 -2
  49. data/lib/storecove/models/shop_account_input.rb +2 -1
  50. data/lib/storecove/models/shop_account_request_input.rb +2 -1
  51. data/lib/storecove/models/shop_account_request_result.rb +2 -1
  52. data/lib/storecove/models/shop_account_request_update.rb +2 -1
  53. data/lib/storecove/models/shop_account_result.rb +2 -1
  54. data/lib/storecove/models/shop_account_update.rb +2 -1
  55. data/lib/storecove/models/tax.rb +2 -1
  56. data/lib/storecove/models/vat_details.rb +209 -0
  57. data/lib/storecove/models/widget_identification.rb +228 -0
  58. data/lib/storecove/version.rb +2 -1
  59. data/spec/api/invoice_submissions_api_spec.rb +9 -20
  60. data/spec/api/legal_entities_api_spec.rb +84 -0
  61. data/spec/api/peppol_identifiers_api_spec.rb +63 -0
  62. data/spec/api/purchase_invoices_api_spec.rb +59 -0
  63. data/spec/api/shop_account_requests_api_spec.rb +30 -41
  64. data/spec/api/shop_accounts_api_spec.rb +34 -45
  65. data/spec/api/shops_api_spec.rb +6 -17
  66. data/spec/api_client_spec.rb +2 -13
  67. data/spec/configuration_spec.rb +2 -13
  68. data/spec/models/accounting_cost_code_spec.rb +3 -14
  69. data/spec/models/accounting_customer_party_spec.rb +3 -14
  70. data/spec/models/accounting_details_1_spec.rb +60 -0
  71. data/spec/models/accounting_details_spec.rb +60 -0
  72. data/spec/models/{party_address_spec.rb → address_spec.rb} +8 -19
  73. data/spec/models/{party_contact_spec.rb → contact_spec.rb} +8 -19
  74. data/spec/models/country_spec.rb +3 -14
  75. data/spec/models/currency_code_spec.rb +3 -14
  76. data/spec/models/error_model_spec.rb +3 -14
  77. data/spec/models/invoice_line_spec.rb +69 -14
  78. data/spec/models/invoice_recipient_preflight_spec.rb +10 -15
  79. data/spec/models/invoice_recipient_spec.rb +15 -14
  80. data/spec/models/{invoice_submission_invoice_spec.rb → invoice_spec.rb} +20 -19
  81. data/spec/models/invoice_submission_result_spec.rb +4 -15
  82. data/spec/models/invoice_submission_spec.rb +4 -15
  83. data/spec/models/legal_entity_create_spec.rb +78 -0
  84. data/spec/models/legal_entity_identifier_spec.rb +3 -14
  85. data/spec/models/legal_entity_shop_spec.rb +84 -0
  86. data/spec/models/legal_entity_spec.rb +7 -18
  87. data/spec/models/legal_entity_update_spec.rb +78 -0
  88. data/spec/models/logos_spec.rb +3 -14
  89. data/spec/models/party_spec.rb +3 -14
  90. data/spec/models/payment_means_spec.rb +48 -0
  91. data/spec/models/peppol_identifier_create_spec.rb +54 -0
  92. data/spec/models/peppol_identifier_spec.rb +54 -0
  93. data/spec/models/preflight_invoice_recipient_result_spec.rb +3 -14
  94. data/spec/models/public_identifier_spec.rb +3 -14
  95. data/spec/models/public_identifiers_spec.rb +3 -14
  96. data/spec/models/purchase_invoice_invoice_line_spec.rb +78 -0
  97. data/spec/models/purchase_invoice_sender_billing_contact_spec.rb +54 -0
  98. data/spec/models/purchase_invoice_sender_spec.rb +96 -0
  99. data/spec/models/purchase_invoice_spec.rb +188 -0
  100. data/spec/models/purchase_invoice_ubl_spec.rb +54 -0
  101. data/spec/models/shop_account_input_spec.rb +3 -14
  102. data/spec/models/shop_account_request_input_spec.rb +3 -14
  103. data/spec/models/{shop_account_request_spec.rb → shop_account_request_result_spec.rb} +8 -19
  104. data/spec/models/shop_account_request_update_spec.rb +3 -14
  105. data/spec/models/shop_account_result_spec.rb +3 -14
  106. data/spec/models/shop_account_update_spec.rb +3 -14
  107. data/spec/models/shop_spec.rb +3 -14
  108. data/spec/models/{invoice_line_tax_spec.rb → tax_spec.rb} +8 -19
  109. data/spec/models/vat_details_spec.rb +54 -0
  110. data/spec/models/widget_identification_spec.rb +48 -0
  111. data/spec/spec_helper.rb +2 -13
  112. data/storecove.gemspec +10 -19
  113. metadata +83 -28
@@ -3,21 +3,10 @@
3
3
 
4
4
  #Storecove API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.0.1
7
7
  Contact: apisupport@storecove.nl
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
-
10
- Licensed under the Apache License, Version 2.0 (the "License");
11
- you may not use this file except in compliance with the License.
12
- You may obtain a copy of the License at
13
-
14
- http://www.apache.org/licenses/LICENSE-2.0
15
-
16
- Unless required by applicable law or agreed to in writing, software
17
- distributed under the License is distributed on an "AS IS" BASIS,
18
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- See the License for the specific language governing permissions and
20
- limitations under the License.
9
+ Swagger Codegen version: 2.3.1
21
10
 
22
11
  =end
23
12
 
@@ -5,21 +5,10 @@
5
5
 
6
6
  #Storecove API
7
7
 
8
- OpenAPI spec version: 2.0.0
8
+ OpenAPI spec version: 2.0.1
9
9
  Contact: apisupport@storecove.nl
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
-
12
- Licensed under the Apache License, Version 2.0 (the "License");
13
- you may not use this file except in compliance with the License.
14
- You may obtain a copy of the License at
15
-
16
- http://www.apache.org/licenses/LICENSE-2.0
17
-
18
- Unless required by applicable law or agreed to in writing, software
19
- distributed under the License is distributed on an "AS IS" BASIS,
20
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
- See the License for the specific language governing permissions and
22
- limitations under the License.
11
+ Swagger Codegen version: 2.3.1
23
12
 
24
13
  =end
25
14
 
@@ -30,23 +19,25 @@ Gem::Specification.new do |s|
30
19
  s.name = "storecove"
31
20
  s.version = StorecoveApi::VERSION
32
21
  s.platform = Gem::Platform::RUBY
33
- s.authors = ["Storecove"]
22
+ s.authors = ["Swagger-Codegen"]
34
23
  s.email = ["apisupport@storecove.nl"]
35
- s.homepage = "https://www.storecove.com/docs/api"
24
+ s.homepage = "https://github.com/swagger-api/swagger-codegen"
36
25
  s.summary = "Storecove API Ruby Gem"
37
26
  s.description = "Storecove API"
38
- s.license = "Apache-2.0"
27
+ # TODO uncommnet and update below with a proper license
28
+ #s.license = "Apache 2.0"
29
+ s.required_ruby_version = ">= 1.9"
39
30
 
40
31
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
41
- s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.3'
32
+ s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
42
33
 
43
- s.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0'
34
+ s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
44
35
  s.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.1'
45
36
  s.add_development_dependency 'webmock', '~> 1.24', '>= 1.24.3'
46
37
  s.add_development_dependency 'autotest', '~> 4.4', '>= 4.4.6'
47
38
  s.add_development_dependency 'autotest-rails-pure', '~> 4.1', '>= 4.1.2'
48
39
  s.add_development_dependency 'autotest-growl', '~> 0.2', '>= 0.2.16'
49
- s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.11'
40
+ s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.12'
50
41
 
51
42
  s.files = `find *`.split("\n").uniq.sort.select{|f| !f.empty? }
52
43
  s.test_files = `find spec/*`.split("\n")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: storecove
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
- - Storecove
7
+ - Swagger-Codegen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-06 00:00:00.000000000 Z
11
+ date: 2018-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -36,40 +36,40 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.8'
39
+ version: '2.1'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 1.8.3
42
+ version: 2.1.0
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - "~>"
48
48
  - !ruby/object:Gem::Version
49
- version: '1.8'
49
+ version: '2.1'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 1.8.3
52
+ version: 2.1.0
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: rspec
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: '3.4'
59
+ version: '3.6'
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
- version: 3.4.0
62
+ version: 3.6.0
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: '3.4'
69
+ version: '3.6'
70
70
  - - ">="
71
71
  - !ruby/object:Gem::Version
72
- version: 3.4.0
72
+ version: 3.6.0
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: vcr
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -179,7 +179,7 @@ dependencies:
179
179
  version: '0.2'
180
180
  - - ">="
181
181
  - !ruby/object:Gem::Version
182
- version: 0.2.11
182
+ version: 0.2.12
183
183
  type: :development
184
184
  prerelease: false
185
185
  version_requirements: !ruby/object:Gem::Requirement
@@ -189,7 +189,7 @@ dependencies:
189
189
  version: '0.2'
190
190
  - - ">="
191
191
  - !ruby/object:Gem::Version
192
- version: 0.2.11
192
+ version: 0.2.12
193
193
  description: Storecove API
194
194
  email:
195
195
  - apisupport@storecove.nl
@@ -197,8 +197,13 @@ executables: []
197
197
  extensions: []
198
198
  extra_rdoc_files: []
199
199
  files:
200
+ - Gemfile
201
+ - Gemfile.lock
200
202
  - lib/storecove.rb
201
203
  - lib/storecove/api/invoice_submissions_api.rb
204
+ - lib/storecove/api/legal_entities_api.rb
205
+ - lib/storecove/api/peppol_identifiers_api.rb
206
+ - lib/storecove/api/purchase_invoices_api.rb
202
207
  - lib/storecove/api/shop_account_requests_api.rb
203
208
  - lib/storecove/api/shop_accounts_api.rb
204
209
  - lib/storecove/api/shops_api.rb
@@ -207,6 +212,8 @@ files:
207
212
  - lib/storecove/configuration.rb
208
213
  - lib/storecove/models/accounting_cost_code.rb
209
214
  - lib/storecove/models/accounting_customer_party.rb
215
+ - lib/storecove/models/accounting_details.rb
216
+ - lib/storecove/models/accounting_details_1.rb
210
217
  - lib/storecove/models/address.rb
211
218
  - lib/storecove/models/contact.rb
212
219
  - lib/storecove/models/country.rb
@@ -219,12 +226,23 @@ files:
219
226
  - lib/storecove/models/invoice_submission.rb
220
227
  - lib/storecove/models/invoice_submission_result.rb
221
228
  - lib/storecove/models/legal_entity.rb
229
+ - lib/storecove/models/legal_entity_create.rb
222
230
  - lib/storecove/models/legal_entity_identifier.rb
231
+ - lib/storecove/models/legal_entity_shop.rb
232
+ - lib/storecove/models/legal_entity_update.rb
223
233
  - lib/storecove/models/logos.rb
224
234
  - lib/storecove/models/party.rb
235
+ - lib/storecove/models/payment_means.rb
236
+ - lib/storecove/models/peppol_identifier.rb
237
+ - lib/storecove/models/peppol_identifier_create.rb
225
238
  - lib/storecove/models/preflight_invoice_recipient_result.rb
226
239
  - lib/storecove/models/public_identifier.rb
227
240
  - lib/storecove/models/public_identifiers.rb
241
+ - lib/storecove/models/purchase_invoice.rb
242
+ - lib/storecove/models/purchase_invoice_invoice_line.rb
243
+ - lib/storecove/models/purchase_invoice_sender.rb
244
+ - lib/storecove/models/purchase_invoice_sender_billing_contact.rb
245
+ - lib/storecove/models/purchase_invoice_ubl.rb
228
246
  - lib/storecove/models/shop.rb
229
247
  - lib/storecove/models/shop_account_input.rb
230
248
  - lib/storecove/models/shop_account_request_input.rb
@@ -233,8 +251,13 @@ files:
233
251
  - lib/storecove/models/shop_account_result.rb
234
252
  - lib/storecove/models/shop_account_update.rb
235
253
  - lib/storecove/models/tax.rb
254
+ - lib/storecove/models/vat_details.rb
255
+ - lib/storecove/models/widget_identification.rb
236
256
  - lib/storecove/version.rb
237
257
  - spec/api/invoice_submissions_api_spec.rb
258
+ - spec/api/legal_entities_api_spec.rb
259
+ - spec/api/peppol_identifiers_api_spec.rb
260
+ - spec/api/purchase_invoices_api_spec.rb
238
261
  - spec/api/shop_account_requests_api_spec.rb
239
262
  - spec/api/shop_accounts_api_spec.rb
240
263
  - spec/api/shops_api_spec.rb
@@ -242,37 +265,51 @@ files:
242
265
  - spec/configuration_spec.rb
243
266
  - spec/models/accounting_cost_code_spec.rb
244
267
  - spec/models/accounting_customer_party_spec.rb
268
+ - spec/models/accounting_details_1_spec.rb
269
+ - spec/models/accounting_details_spec.rb
270
+ - spec/models/address_spec.rb
271
+ - spec/models/contact_spec.rb
245
272
  - spec/models/country_spec.rb
246
273
  - spec/models/currency_code_spec.rb
247
274
  - spec/models/error_model_spec.rb
248
275
  - spec/models/invoice_line_spec.rb
249
- - spec/models/invoice_line_tax_spec.rb
250
276
  - spec/models/invoice_recipient_preflight_spec.rb
251
277
  - spec/models/invoice_recipient_spec.rb
252
- - spec/models/invoice_submission_invoice_spec.rb
278
+ - spec/models/invoice_spec.rb
253
279
  - spec/models/invoice_submission_result_spec.rb
254
280
  - spec/models/invoice_submission_spec.rb
281
+ - spec/models/legal_entity_create_spec.rb
255
282
  - spec/models/legal_entity_identifier_spec.rb
283
+ - spec/models/legal_entity_shop_spec.rb
256
284
  - spec/models/legal_entity_spec.rb
285
+ - spec/models/legal_entity_update_spec.rb
257
286
  - spec/models/logos_spec.rb
258
- - spec/models/party_address_spec.rb
259
- - spec/models/party_contact_spec.rb
260
287
  - spec/models/party_spec.rb
288
+ - spec/models/payment_means_spec.rb
289
+ - spec/models/peppol_identifier_create_spec.rb
290
+ - spec/models/peppol_identifier_spec.rb
261
291
  - spec/models/preflight_invoice_recipient_result_spec.rb
262
292
  - spec/models/public_identifier_spec.rb
263
293
  - spec/models/public_identifiers_spec.rb
294
+ - spec/models/purchase_invoice_invoice_line_spec.rb
295
+ - spec/models/purchase_invoice_sender_billing_contact_spec.rb
296
+ - spec/models/purchase_invoice_sender_spec.rb
297
+ - spec/models/purchase_invoice_spec.rb
298
+ - spec/models/purchase_invoice_ubl_spec.rb
264
299
  - spec/models/shop_account_input_spec.rb
265
300
  - spec/models/shop_account_request_input_spec.rb
266
- - spec/models/shop_account_request_spec.rb
301
+ - spec/models/shop_account_request_result_spec.rb
267
302
  - spec/models/shop_account_request_update_spec.rb
268
303
  - spec/models/shop_account_result_spec.rb
269
304
  - spec/models/shop_account_update_spec.rb
270
305
  - spec/models/shop_spec.rb
306
+ - spec/models/tax_spec.rb
307
+ - spec/models/vat_details_spec.rb
308
+ - spec/models/widget_identification_spec.rb
271
309
  - spec/spec_helper.rb
272
310
  - storecove.gemspec
273
- homepage: https://www.storecove.com/docs/api
274
- licenses:
275
- - Apache-2.0
311
+ homepage: https://github.com/swagger-api/swagger-codegen
312
+ licenses: []
276
313
  metadata: {}
277
314
  post_install_message:
278
315
  rdoc_options: []
@@ -282,7 +319,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
282
319
  requirements:
283
320
  - - ">="
284
321
  - !ruby/object:Gem::Version
285
- version: '0'
322
+ version: '1.9'
286
323
  required_rubygems_version: !ruby/object:Gem::Requirement
287
324
  requirements:
288
325
  - - ">="
@@ -290,42 +327,60 @@ required_rubygems_version: !ruby/object:Gem::Requirement
290
327
  version: '0'
291
328
  requirements: []
292
329
  rubyforge_project:
293
- rubygems_version: 2.5.1
330
+ rubygems_version: 2.6.14
294
331
  signing_key:
295
332
  specification_version: 4
296
333
  summary: Storecove API Ruby Gem
297
334
  test_files:
335
+ - spec/api/legal_entities_api_spec.rb
298
336
  - spec/api/invoice_submissions_api_spec.rb
337
+ - spec/api/peppol_identifiers_api_spec.rb
299
338
  - spec/api/shop_account_requests_api_spec.rb
300
339
  - spec/api/shop_accounts_api_spec.rb
340
+ - spec/api/purchase_invoices_api_spec.rb
301
341
  - spec/api/shops_api_spec.rb
302
342
  - spec/api_client_spec.rb
303
343
  - spec/configuration_spec.rb
304
344
  - spec/models/shop_account_request_update_spec.rb
345
+ - spec/models/vat_details_spec.rb
305
346
  - spec/models/preflight_invoice_recipient_result_spec.rb
347
+ - spec/models/peppol_identifier_spec.rb
348
+ - spec/models/accounting_details_spec.rb
306
349
  - spec/models/error_model_spec.rb
307
- - spec/models/party_contact_spec.rb
350
+ - spec/models/purchase_invoice_sender_billing_contact_spec.rb
308
351
  - spec/models/accounting_cost_code_spec.rb
352
+ - spec/models/purchase_invoice_ubl_spec.rb
353
+ - spec/models/legal_entity_update_spec.rb
354
+ - spec/models/invoice_spec.rb
355
+ - spec/models/contact_spec.rb
309
356
  - spec/models/invoice_submission_result_spec.rb
357
+ - spec/models/tax_spec.rb
310
358
  - spec/models/invoice_line_spec.rb
311
359
  - spec/models/shop_account_result_spec.rb
312
- - spec/models/shop_account_request_spec.rb
360
+ - spec/models/widget_identification_spec.rb
361
+ - spec/models/purchase_invoice_spec.rb
313
362
  - spec/models/country_spec.rb
363
+ - spec/models/accounting_details_1_spec.rb
314
364
  - spec/models/shop_account_update_spec.rb
365
+ - spec/models/payment_means_spec.rb
315
366
  - spec/models/legal_entity_spec.rb
316
367
  - spec/models/shop_account_request_input_spec.rb
317
368
  - spec/models/shop_account_input_spec.rb
318
369
  - spec/models/invoice_recipient_spec.rb
319
370
  - spec/models/accounting_customer_party_spec.rb
320
- - spec/models/invoice_submission_invoice_spec.rb
321
- - spec/models/invoice_line_tax_spec.rb
371
+ - spec/models/shop_account_request_result_spec.rb
372
+ - spec/models/legal_entity_shop_spec.rb
322
373
  - spec/models/party_spec.rb
323
- - spec/models/party_address_spec.rb
374
+ - spec/models/purchase_invoice_sender_spec.rb
375
+ - spec/models/peppol_identifier_create_spec.rb
376
+ - spec/models/legal_entity_create_spec.rb
377
+ - spec/models/purchase_invoice_invoice_line_spec.rb
324
378
  - spec/models/invoice_submission_spec.rb
325
379
  - spec/models/currency_code_spec.rb
326
380
  - spec/models/legal_entity_identifier_spec.rb
327
381
  - spec/models/shop_spec.rb
328
382
  - spec/models/logos_spec.rb
383
+ - spec/models/address_spec.rb
329
384
  - spec/models/invoice_recipient_preflight_spec.rb
330
385
  - spec/models/public_identifiers_spec.rb
331
386
  - spec/models/public_identifier_spec.rb