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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/api_six_client/base_int.rb +4 -4
- data/lib/api_six_client/version.rb +1 -1
- data/lib/api_six_client.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17dde48ebdec6797f37d56eb368b3e3be165030c2fbedac315903bc34993abdb
|
4
|
+
data.tar.gz: aa0f8d85168359a586540390e2d407d1b70b1e3a7705535b3ff51b12b5ccccc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c236c2deb61f13a60fa7bcf0290be66f2050d8b003484e9aca5841e99831a2e56740a57462af92763ea935ba4568fec3d4344bb992a3501c55d9dc455610068d
|
7
|
+
data.tar.gz: 93f47740013fa17869f0698c31f562be6240bec63c281c669aa0b6887ee46dc0361cc6e2d79b0075a1398773f5b3aa5a79f8c078fa8ea604397178681d2106d1
|
data/Gemfile.lock
CHANGED
@@ -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
|
-
'
|
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
|
data/lib/api_six_client.rb
CHANGED
@@ -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.
|
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-
|
11
|
+
date: 2024-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|