api_six_client 1.6.10 → 1.7.0

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: 1b4dbed11ae854db2b72bc68f4d7562e27d7a60b1817d8980f5b3c37d9953524
4
- data.tar.gz: 52802fc7131c95adcd8822ba7384a9d6bffa274975361368a3a1bed5d081f96e
3
+ metadata.gz: 17dde48ebdec6797f37d56eb368b3e3be165030c2fbedac315903bc34993abdb
4
+ data.tar.gz: aa0f8d85168359a586540390e2d407d1b70b1e3a7705535b3ff51b12b5ccccc7
5
5
  SHA512:
6
- metadata.gz: 34d37911e72c3095ca65ca4ca9439a9875ff0cbeee55cb4cc8bc1c3f9223d3773809ba2d899870881ede6c7af86f2f709aaf1de68c8e45c363edb16008942a15
7
- data.tar.gz: f9d6e27a961e36305c7273a8f389fe5e799882b771b6608264f6939dcb09a12929bee511567d902b3f00664cda3b1dac1aa8cbfdc03bf9f3dd747e48c57ef4f7
6
+ metadata.gz: c236c2deb61f13a60fa7bcf0290be66f2050d8b003484e9aca5841e99831a2e56740a57462af92763ea935ba4568fec3d4344bb992a3501c55d9dc455610068d
7
+ data.tar.gz: 93f47740013fa17869f0698c31f562be6240bec63c281c669aa0b6887ee46dc0361cc6e2d79b0075a1398773f5b3aa5a79f8c078fa8ea604397178681d2106d1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- api_six_client (1.6.10)
4
+ api_six_client (1.7.0)
5
5
  faraday (~> 2)
6
6
 
7
7
  GEM
@@ -6,8 +6,11 @@ module ApiSixClient
6
6
  { k8s_service: "http://#{service_name.gsub('_int', '-api')}.micro-services", api_int_path: 'api_int'}
7
7
  }
8
8
  INTRANET_MAPPING = {
9
- 'olc_int' => { k8s_service: 'http://core-web.micro-services:3000', api_int_path: 'api_hidden' },
9
+ 'olc_hid' => { k8s_service: 'http://core-web.micro-services:3000', api_int_path: 'api_hid' },
10
+ 'auth_hid' => { k8s_service: 'http://auth-api.micro-services:80', api_int_path: 'api_hid' },
11
+
10
12
  'cad_int' => { k8s_service: 'http://core-web.micro-services:3000', api_int_path: 'api_int' },
13
+
11
14
  'cuna_int' => { k8s_service: 'http://cuna-api.micro-services:3000', api_int_path: 'api_int' },
12
15
  'val' => { k8s_service: 'http://val.micro-services:8000', api_int_path: 'api' },
13
16
  'coma_int' => { k8s_service: 'http://coma-api.micro-services:3000', api_int_path: 'api_int' },
@@ -15,9 +18,6 @@ module ApiSixClient
15
18
  'brg_int' => { k8s_service: 'http://brg-api.micro-services:3000', api_int_path: 'api_int' },
16
19
  'prj_int' => { k8s_service: 'http://prj-api.micro-services:5000', api_int_path: 'api_int' },
17
20
  'owna_int' => { k8s_service: 'http://owna-api.micro-services:3000', api_int_path: 'api_int' },
18
-
19
- 'olc_hid' => { k8s_service: 'http://core-web.micro-services:3000', api_int_path: 'api_hid' },
20
- 'auth_hid' => { k8s_service: 'http://auth-api.micro-services:80', api_int_path: 'api_hid' },
21
21
  }.freeze
22
22
 
23
23
  def endpoint
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ApiSixClient
4
- VERSION = "1.6.10"
4
+ VERSION = "1.7.0"
5
5
  end
@@ -16,15 +16,15 @@ module ApiSixClient
16
16
  yield(config)
17
17
  end
18
18
 
19
- class OlcInt < BaseHidden; end
20
19
  class OlcHid < BaseHidden; end
21
- class AuthInt < BaseHidden; end
22
20
  class AuthHid < BaseHidden; end
23
21
 
22
+ class AuthInt < BaseInt; end
23
+ class CadInt < BaseInt; end
24
+
24
25
  class PrjInt < BaseInt; end
25
26
  class UasInt < BaseInt; end
26
27
  class BrgInt < BaseInt; end
27
- class CadInt < BaseInt; end
28
28
  class NtfInt < BaseInt; end
29
29
  class MatInt < BaseInt; end
30
30
  class FinnInt < BaseInt; end
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.6.10
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eugene Dobrorodnov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-18 00:00:00.000000000 Z
11
+ date: 2024-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday