api_six_client 1.4.12 → 1.4.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8508d8b1ebc7c89bbcc9669d8e7fb468ab6558ff36f86f2c81f26ba63170832e
4
- data.tar.gz: 2fdef6e7837e3067afd594d1225f4d3be5774735bfd95c9d869567a999b19ff1
3
+ metadata.gz: 90d6134425c62b2e2af83dea681e83634074f2097640a6a3efbad3c2e93fa784
4
+ data.tar.gz: 264e4f56dacc418e6b3e871b2d02a2d57b31b7e914eb8dc816deba525129e94c
5
5
  SHA512:
6
- metadata.gz: 9e42b15b86fbc7ca686e3903dcebf568e14292d77289d0a6a1d34e89ac0e8980ed8cfb087e2c7ff0937c7d12f99c5a71b82296d2371a49acdd80eaa2b7bc8c8e
7
- data.tar.gz: f0cf8d97f6395ca4bb5e38900c362a3624bcf586cf9c85daddb4582e894c1a6f981799c24c347fd1968f6678eab652275a538f8aa790d9fa2e64d223d43a437e
6
+ metadata.gz: f1dee11bbbf65264e65595856fe20256584dcec9825ffa1d634b167828122c20c36dbf3eb7ae522f0ebfb0628a0d7c4a19d0159a435319284464835426a9d040
7
+ data.tar.gz: aec7de8d3a43bf5ba9373d9d466b40b25bbe556aef327628466e9cf9b3ef6daf885c6e90ddfdafafcfbc9b14475615f6e2665294ceed722c5ca25c99959e895d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- api_six_client (1.4.12)
4
+ api_six_client (1.4.13)
5
5
  faraday (~> 2)
6
6
 
7
7
  GEM
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ApiSixClient
4
+ class BaseHiddenInt < Base
5
+ protected
6
+
7
+ def deprecation_msg
8
+ end
9
+
10
+ def override_defaults
11
+ @endpoint = ApiSixClient.config.endpoint_int
12
+ @auth_token = ApiSixClient.config.auth_token_hidden_int
13
+ end
14
+ end
15
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ApiSixClient
4
- VERSION = "1.4.12"
4
+ VERSION = "1.4.13"
5
5
  end
@@ -5,6 +5,7 @@ require 'api_six_client/config'
5
5
  require 'api_six_client/base'
6
6
  require 'api_six_client/base_v2'
7
7
  require 'api_six_client/base_int'
8
+ require 'api_six_client/base_hidden_int'
8
9
  require 'api_six_client/base_v2_int'
9
10
  require 'api_six_client/errors'
10
11
 
@@ -29,12 +30,13 @@ module ApiSixClient
29
30
  class Eno < BaseV2; end
30
31
  class Uas < BaseV2; end
31
32
 
32
- class OlcInt < BaseInt; end
33
+ class OlcInt < BaseHiddenInt; end
34
+ class AuthInt < BaseHiddenInt; end
35
+
33
36
  class PrjInt < BaseInt; end
34
37
  class UasInt < BaseInt; end
35
38
  class BrgInt < BaseInt; end
36
39
  class CadInt < BaseInt; end
37
- class AuthInt < BaseInt; end
38
40
  class NtfInt < BaseInt; end
39
41
  class MatInt < BaseInt; end
40
42
  class FinnInt < BaseInt; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_six_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.12
4
+ version: 1.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eugene Dobrorodnov
@@ -42,6 +42,7 @@ files:
42
42
  - bin/setup
43
43
  - lib/api_six_client.rb
44
44
  - lib/api_six_client/base.rb
45
+ - lib/api_six_client/base_hidden_int.rb
45
46
  - lib/api_six_client/base_int.rb
46
47
  - lib/api_six_client/base_v2.rb
47
48
  - lib/api_six_client/base_v2_int.rb