api_six_client 1.4.11 → 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: 3c99233e438e0e35097d339cfe768a0993cfd8420a17bbd0eedd7b3632564f8f
4
- data.tar.gz: '09f1b5a49c9ee5194b23f3a147d860235bed74e1fe29d9220404ad7466c0c4f6'
3
+ metadata.gz: 90d6134425c62b2e2af83dea681e83634074f2097640a6a3efbad3c2e93fa784
4
+ data.tar.gz: 264e4f56dacc418e6b3e871b2d02a2d57b31b7e914eb8dc816deba525129e94c
5
5
  SHA512:
6
- metadata.gz: d97bee94a9aa1c490392ce3a9b159c51ded583663a73a0fda8bec3aec2d639eea33ddcff39376dac646f17a65ae1330725e69d64ec4ba41187aacdb6b3f9dc2f
7
- data.tar.gz: af16b7a173de0b16a7d3547000a8fc9afb22456f210952a04165d3bea544b97c0f7f38e2c15ed80736d8723f9863da27cb723c1e6e6cf0753d05c198e6eac82d
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.11)
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.11"
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,16 +30,18 @@ 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
41
43
  class LyrInt < BaseInt; end
44
+ class GbkInt < BaseInt; end
42
45
  class Val < BaseInt; end
43
46
  end
44
47
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_six_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.11
4
+ version: 1.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eugene Dobrorodnov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-25 00:00:00.000000000 Z
11
+ date: 2023-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -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