wolf_core 0.1.14 → 0.1.15

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: 68ed3dd626a603688fd801d10e0dcf0c6c067cbcc289638d1f7f386ac5761d7d
4
- data.tar.gz: 1357c28bb27a238d96daaac2646cfd22b459aa3a1bc6402a14d922a44ea41e48
3
+ metadata.gz: 608584e93f4fcf6b8a92a497045dff3b823901701b2bf366d3bff33dfbf84395
4
+ data.tar.gz: 3384c492d6a916cb07d2dabab569c2f022598afb51bebbf9ff91b3fc6fea128d
5
5
  SHA512:
6
- metadata.gz: 6dfbe5d5103289cf47f8887bf7bca40db000d623ccb987982383578b79a207560320cc4fa0ec0b580265ef17540f560f738420932db5a53a4be2835ab895dcdd
7
- data.tar.gz: 78048e2938d41102dce5ff3c19fd9ba9d1ea43d0644cbbb73c722a86a13a800de5f4193677425caf1b3d92d8d64311fde8e362e270c5cc0439b2b13d13831eb9
6
+ metadata.gz: 1fd8a35299fe06c2c54bade541155bb6a7de6b7149be86886a97e789eb1d8048b1853ee9b85fd42d5fe1cb2fe8701c1d2d5d24165af2e57b36d659d8341a8f7c
7
+ data.tar.gz: 0353c3b9625ed1555bac67970977e98ca3639bddbdc3a18a6cbc5cbc53b378c3bc4e457b3e7aadac3af20c4e8649540a31d12a14e701375bfa45a6f02e41075a
@@ -3,7 +3,7 @@ module WolfCore
3
3
  module Mappings
4
4
  include WolfCore::ExceptionOperations
5
5
 
6
- def map_pricing_id(provider_type)
6
+ def map_provider_type_to_pricing_id(provider_type)
7
7
  case provider_type
8
8
  when 'MD'
9
9
  ENV['MD_PRICING_ID']
@@ -19,6 +19,23 @@ module WolfCore
19
19
  raise_service_error({ message: "Unknown provider type #{provider_type}" })
20
20
  end
21
21
  end
22
+
23
+ def map_pricing_id_to_provider_type(pricing_id)
24
+ case pricing_id.to_s
25
+ when ENV['MD_PRICING_ID']
26
+ 'MD'
27
+ when ENV['DO_PRICING_ID']
28
+ 'DO'
29
+ when ENV['PA_PRICING_ID']
30
+ 'PA'
31
+ when ENV['DMD_PRICING_ID']
32
+ 'DMD'
33
+ when ENV['NP_PRICING_ID']
34
+ 'NP'
35
+ else
36
+ raise_service_error({ message: "Unknown provider type #{provider_type}" })
37
+ end
38
+ end
22
39
  end
23
40
  end
24
41
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.1.14"
4
+ VERSION = "0.1.15"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-13 00:00:00.000000000 Z
11
+ date: 2024-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty