wolf_core 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b012e8201356b95f0874cf3c8543d2714075f405d9c20cc561c9906992086e13
4
- data.tar.gz: 75efb3aa5fa198507b8bf236a471c21b826814fe7e8ac83bdc33160d24fa7761
3
+ metadata.gz: 1331aab64ba1c3b2b264faba8f1fc7f3d468ea08221b161069ef942727f40488
4
+ data.tar.gz: db6db3c47015f0e79aecc77429511020b0d2d0013cd58026530945da81f8b296
5
5
  SHA512:
6
- metadata.gz: ccf84624197d6ee01c57c448578a1c9a3d42ce987fa156dec11899a2a2c2b134a43b2420744be0b6f1a1440b6e6cc42671d04c69bce56bb33a1be56da170de69
7
- data.tar.gz: da069eef0f1aa1cc2a3dc2c1188628c959960bc8b647fa182956bd7b128c33832393cd00f95d377ea4c1f5512b89c82928954b68262d5de3fb24d90e753eb339
6
+ metadata.gz: 8492c140e1800af35f4bcd669a975748af01cd25d240ae2ad62673f1ca2701414c69ca0c2ac3c8b622795a9ecfabd46d3cbc11e684c552e30b8a0dee7f294ece
7
+ data.tar.gz: d4c0cbc2d3e7ec658d040192b67e786ae6d0a9ff67cc11362a71c274b399d0e3d6aaec4432df66ecbfe0c67138a4c6e60561035e680208f41cca7436ab3a938a
@@ -0,0 +1,24 @@
1
+ module WolfCore
2
+ module Barton
3
+ module Operations
4
+ include WolfCore::ExceptionOperations
5
+
6
+ def map_pricing_id(provider_type)
7
+ case provider_type
8
+ when 'MD'
9
+ ENV['MD_PRICING_ID']
10
+ when 'DO'
11
+ ENV['DO_PRICING_ID']
12
+ when 'PA'
13
+ ENV['PA_PRICING_ID']
14
+ when 'DMD'
15
+ ENV['DMD_PRICING_ID']
16
+ when 'NP'
17
+ ENV['NP_PRICING_ID']
18
+ else
19
+ raise_service_error({ message: "Unknown provider type #{provider_type}" })
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.11"
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.10
4
+ version: 0.1.11
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-12 00:00:00.000000000 Z
11
+ date: 2024-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -47,6 +47,7 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - lib/wolf_core.rb
49
49
  - lib/wolf_core/application/application_service.rb
50
+ - lib/wolf_core/application/barton/operations.rb
50
51
  - lib/wolf_core/application/exception_operations.rb
51
52
  - lib/wolf_core/application/fkm_operations.rb
52
53
  - lib/wolf_core/application/http_operations.rb