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.
- checksums.yaml +4 -4
- data/Gemfile +7 -0
- data/Gemfile.lock +69 -0
- data/lib/storecove.rb +20 -1
- data/lib/storecove/api/invoice_submissions_api.rb +9 -4
- data/lib/storecove/api/legal_entities_api.rb +248 -0
- data/lib/storecove/api/peppol_identifiers_api.rb +156 -0
- data/lib/storecove/api/purchase_invoices_api.rb +133 -0
- data/lib/storecove/api/shop_account_requests_api.rb +24 -11
- data/lib/storecove/api/shop_accounts_api.rb +25 -12
- data/lib/storecove/api/shops_api.rb +2 -1
- data/lib/storecove/api_client.rb +39 -26
- data/lib/storecove/api_error.rb +1 -0
- data/lib/storecove/configuration.rb +7 -0
- data/lib/storecove/models/accounting_cost_code.rb +2 -1
- data/lib/storecove/models/accounting_customer_party.rb +2 -1
- data/lib/storecove/models/accounting_details.rb +219 -0
- data/lib/storecove/models/accounting_details_1.rb +219 -0
- data/lib/storecove/models/address.rb +2 -1
- data/lib/storecove/models/contact.rb +2 -6
- data/lib/storecove/models/country.rb +10 -0
- data/lib/storecove/models/currency_code.rb +10 -0
- data/lib/storecove/models/error_model.rb +2 -1
- data/lib/storecove/models/invoice.rb +16 -3
- data/lib/storecove/models/invoice_line.rb +251 -6
- data/lib/storecove/models/invoice_recipient.rb +24 -11
- data/lib/storecove/models/invoice_recipient_preflight.rb +21 -19
- data/lib/storecove/models/invoice_submission.rb +20 -9
- data/lib/storecove/models/invoice_submission_result.rb +2 -1
- data/lib/storecove/models/legal_entity.rb +164 -25
- data/lib/storecove/models/legal_entity_create.rb +417 -0
- data/lib/storecove/models/legal_entity_identifier.rb +2 -1
- data/lib/storecove/models/legal_entity_shop.rb +253 -0
- data/lib/storecove/models/legal_entity_update.rb +380 -0
- data/lib/storecove/models/logos.rb +2 -1
- data/lib/storecove/models/party.rb +7 -1
- data/lib/storecove/models/payment_means.rb +199 -0
- data/lib/storecove/models/peppol_identifier.rb +284 -0
- data/lib/storecove/models/peppol_identifier_create.rb +308 -0
- data/lib/storecove/models/preflight_invoice_recipient_result.rb +2 -1
- data/lib/storecove/models/public_identifier.rb +3 -2
- data/lib/storecove/models/public_identifiers.rb +2 -1
- data/lib/storecove/models/purchase_invoice.rb +463 -0
- data/lib/storecove/models/purchase_invoice_invoice_line.rb +247 -0
- data/lib/storecove/models/purchase_invoice_sender.rb +280 -0
- data/lib/storecove/models/purchase_invoice_sender_billing_contact.rb +209 -0
- data/lib/storecove/models/purchase_invoice_ubl.rb +209 -0
- data/lib/storecove/models/shop.rb +3 -2
- data/lib/storecove/models/shop_account_input.rb +2 -1
- data/lib/storecove/models/shop_account_request_input.rb +2 -1
- data/lib/storecove/models/shop_account_request_result.rb +2 -1
- data/lib/storecove/models/shop_account_request_update.rb +2 -1
- data/lib/storecove/models/shop_account_result.rb +2 -1
- data/lib/storecove/models/shop_account_update.rb +2 -1
- data/lib/storecove/models/tax.rb +2 -1
- data/lib/storecove/models/vat_details.rb +209 -0
- data/lib/storecove/models/widget_identification.rb +228 -0
- data/lib/storecove/version.rb +2 -1
- data/spec/api/invoice_submissions_api_spec.rb +9 -20
- data/spec/api/legal_entities_api_spec.rb +84 -0
- data/spec/api/peppol_identifiers_api_spec.rb +63 -0
- data/spec/api/purchase_invoices_api_spec.rb +59 -0
- data/spec/api/shop_account_requests_api_spec.rb +30 -41
- data/spec/api/shop_accounts_api_spec.rb +34 -45
- data/spec/api/shops_api_spec.rb +6 -17
- data/spec/api_client_spec.rb +2 -13
- data/spec/configuration_spec.rb +2 -13
- data/spec/models/accounting_cost_code_spec.rb +3 -14
- data/spec/models/accounting_customer_party_spec.rb +3 -14
- data/spec/models/accounting_details_1_spec.rb +60 -0
- data/spec/models/accounting_details_spec.rb +60 -0
- data/spec/models/{party_address_spec.rb → address_spec.rb} +8 -19
- data/spec/models/{party_contact_spec.rb → contact_spec.rb} +8 -19
- data/spec/models/country_spec.rb +3 -14
- data/spec/models/currency_code_spec.rb +3 -14
- data/spec/models/error_model_spec.rb +3 -14
- data/spec/models/invoice_line_spec.rb +69 -14
- data/spec/models/invoice_recipient_preflight_spec.rb +10 -15
- data/spec/models/invoice_recipient_spec.rb +15 -14
- data/spec/models/{invoice_submission_invoice_spec.rb → invoice_spec.rb} +20 -19
- data/spec/models/invoice_submission_result_spec.rb +4 -15
- data/spec/models/invoice_submission_spec.rb +4 -15
- data/spec/models/legal_entity_create_spec.rb +78 -0
- data/spec/models/legal_entity_identifier_spec.rb +3 -14
- data/spec/models/legal_entity_shop_spec.rb +84 -0
- data/spec/models/legal_entity_spec.rb +7 -18
- data/spec/models/legal_entity_update_spec.rb +78 -0
- data/spec/models/logos_spec.rb +3 -14
- data/spec/models/party_spec.rb +3 -14
- data/spec/models/payment_means_spec.rb +48 -0
- data/spec/models/peppol_identifier_create_spec.rb +54 -0
- data/spec/models/peppol_identifier_spec.rb +54 -0
- data/spec/models/preflight_invoice_recipient_result_spec.rb +3 -14
- data/spec/models/public_identifier_spec.rb +3 -14
- data/spec/models/public_identifiers_spec.rb +3 -14
- data/spec/models/purchase_invoice_invoice_line_spec.rb +78 -0
- data/spec/models/purchase_invoice_sender_billing_contact_spec.rb +54 -0
- data/spec/models/purchase_invoice_sender_spec.rb +96 -0
- data/spec/models/purchase_invoice_spec.rb +188 -0
- data/spec/models/purchase_invoice_ubl_spec.rb +54 -0
- data/spec/models/shop_account_input_spec.rb +3 -14
- data/spec/models/shop_account_request_input_spec.rb +3 -14
- data/spec/models/{shop_account_request_spec.rb → shop_account_request_result_spec.rb} +8 -19
- data/spec/models/shop_account_request_update_spec.rb +3 -14
- data/spec/models/shop_account_result_spec.rb +3 -14
- data/spec/models/shop_account_update_spec.rb +3 -14
- data/spec/models/shop_spec.rb +3 -14
- data/spec/models/{invoice_line_tax_spec.rb → tax_spec.rb} +8 -19
- data/spec/models/vat_details_spec.rb +54 -0
- data/spec/models/widget_identification_spec.rb +48 -0
- data/spec/spec_helper.rb +2 -13
- data/storecove.gemspec +10 -19
- metadata +83 -28
data/spec/spec_helper.rb
CHANGED
@@ -3,21 +3,10 @@
|
|
3
3
|
|
4
4
|
#Storecove API
|
5
5
|
|
6
|
-
OpenAPI spec version: 2.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
|
|
data/storecove.gemspec
CHANGED
@@ -5,21 +5,10 @@
|
|
5
5
|
|
6
6
|
#Storecove API
|
7
7
|
|
8
|
-
OpenAPI spec version: 2.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 = ["
|
22
|
+
s.authors = ["Swagger-Codegen"]
|
34
23
|
s.email = ["apisupport@storecove.nl"]
|
35
|
-
s.homepage = "https://
|
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
|
-
|
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
|
32
|
+
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
42
33
|
|
43
|
-
s.add_development_dependency 'rspec', '~> 3.
|
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.
|
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.
|
4
|
+
version: 1.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Swagger-Codegen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
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
|
39
|
+
version: '2.1'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.
|
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
|
49
|
+
version: '2.1'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.
|
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.
|
59
|
+
version: '3.6'
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 3.
|
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.
|
69
|
+
version: '3.6'
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: 3.
|
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.
|
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.
|
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/
|
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/
|
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://
|
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: '
|
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.
|
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/
|
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/
|
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/
|
321
|
-
- spec/models/
|
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/
|
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
|