laximo 0.5.1 → 0.5.2

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
  SHA1:
3
- metadata.gz: 8a8a5cc64dce4a7534adb6d32c38d921f9cd0106
4
- data.tar.gz: 39c12a89013080d1a370c1e43cf2fe6c7706969c
3
+ metadata.gz: 2041c830ccc86921131d4f0d5a11c7e3e4320b40
4
+ data.tar.gz: 6f54080b8aa200734280704cf6a19ffe7de1acff
5
5
  SHA512:
6
- metadata.gz: 4857609dc8b4dbae7b3bac1175c9340d49fb836c9ad6e082dae0ce3088f46b161adda840f3bcefbee5d25aeef844667cf7a8bb602bff828c27e152a4ad4fbef6
7
- data.tar.gz: 5f9b9d285774cf8440f3bea930f795ab937c893078b9b80a62d134fc65b9bcfcd1f696c7bdb5245a4889ff843af4af17098ea6278ad742edcb234f248c1f391b
6
+ metadata.gz: 534e84bcfe3b9c67e2bc61eab375e177de9d9d05107ae6621783e781e17485e03a14f12a4f67c703745ad1d84af7a42f1b74a731d3182ce41164eaff59b6823f
7
+ data.tar.gz: dba4e56d28b7a50f19880e6a6fdd3f424d86351b57935133f52c06ca8e7c474a2f88cc1b46b0e963f9a77a2c7619c977ef88ea2a0e2013ac63072fa6921d0fae
data/README.md CHANGED
@@ -53,7 +53,7 @@ Laximo.options.debug false
53
53
  * [Laximo.oem.list_catalogs(ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:ListCatalogs)
54
54
  * [Laximo.oem.get_catalog_info(catalog:, ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetCatalogInfo)
55
55
  * [Laximo.oem.find_vehicle_by_vin(vin:, catalog: nil, ssd: nil, localized: true, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:FindVehicleByVIN)
56
- * [Laximo.oem.find_vehicle_by_frame(catalog:, frame:, frame_no:, ssd: nil, localized: true, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:FindVehicleByFrame)
56
+ * [Laximo.oem.find_vehicle_by_frame(frame:, frame_no:, catalog: nil, ssd: nil, localized: true, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:FindVehicleByFrame)
57
57
  * [Laximo.oem.get_wizard(catalog:, wizard_id: nil, value_id: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetWizard)
58
58
  * [Laximo.oem.get_wizard2(catalog:, ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetWizard2)
59
59
  * [Laximo.oem.get_wizard_next_step2(catalog:, ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetWizardNextStep2)
@@ -67,7 +67,7 @@ Laximo.options.debug false
67
67
  * [Laximo.oem.get_unit_info(catalog:, unit_id:, ssd: nil, localized: true, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetUnitInfo)
68
68
  * [Laximo.oem.list_detail_by_unit(catalog:, unit_id:, ssd: nil, localized: true, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:ListDetailByUnit)
69
69
  * [Laximo.oem.list_image_map_by_unit(catalog:, unit_id:, ssd: nil)](http://laximo.net/index.php/Laximo_Web-services:OEM:ListImageMapByUnit)
70
- * [Laximo.oem.get_filter_by_detail(catalog:, unit_id:, detail_id:, filter:, ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetFilterByDetail)
70
+ * [Laximo.oem.get_filter_by_detail(catalog:, unit_id: , detail_id: , filter: , ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:GetFilterByDetail)
71
71
  * [Laximo.oem.list_quick_group(catalog, vehicle_id, ssd: nil, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:ListQuickGroup)
72
72
  * [Laximo.oem.list_quick_detail(catalog:, vehicle_id:, quick_group_id:, all:, ssd: nil, localized: true, locale: 'ru_RU')](http://laximo.net/index.php/Laximo_Web-services:OEM:ListQuickDetail)
73
73
 
@@ -100,7 +100,7 @@ res.result # [{:detailid=>"31454425", :formattedoem=>"078100105NX", :manufactu
100
100
  * `Laximo::SoapError` - общая ошибка протокола SOAP
101
101
 
102
102
  ```ruby
103
- res = Laximo.oem.get_filter_by_detail('AP1211', '', '', '', '')
103
+ res = Laximo.oem.get_filter_by_detail(catalog: 'AP1211', unit_id: '', detail_id: '', filter: '')
104
104
  res.success? # false
105
105
  res.error? # true
106
106
  res.error # <Laximo::SoapInvalidParameterError: UnitId>
@@ -66,9 +66,9 @@ module Laximo
66
66
  end # find_vehicle_by_vin
67
67
 
68
68
  def find_vehicle_by_frame(
69
- catalog:,
70
69
  frame:,
71
70
  frame_no:,
71
+ catalog: nil,
72
72
  ssd: nil,
73
73
  localized: true,
74
74
  locale: 'ru_RU'
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  module Laximo
3
3
 
4
- VERSION = '0.5.1'.freeze
4
+ VERSION = '0.5.2'.freeze
5
5
 
6
6
  end # Laximo
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: laximo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Pilyaev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-28 00:00:00.000000000 Z
11
+ date: 2016-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri