wolf_core 0.1.94 → 0.1.96

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: db97beec0b08abbe43e33486e9b35e14b2c28f20ce9bf74112aa8864d42cfca2
4
- data.tar.gz: 71b868309e2b40a9ece2b86967289e2ec77f785755b78785d90c2d5e74b4896c
3
+ metadata.gz: 5b9b18f8f34d92108292a480d8cd324e6c7d5bb9877060b7ae28b3ff8137288f
4
+ data.tar.gz: ae5dd7657424be4915d619b15da9a173f03ca949418fd6d6972f88cedc3aa112
5
5
  SHA512:
6
- metadata.gz: a96822cc2e9538cddbdf5afdbe4f89c3e647969e7218d89e91240a33e2899aac98fa774fcec0ebad61e15f307faf47ebc00bfae2e2e8ae2e70bae470b1c96f2b
7
- data.tar.gz: 94717e8ceb7dc74c5b8e337eb4d15fe99aa74bf97696765f83a6c578f66956d9d2886398c1cedfea7107c7d34a84fb010e2b979795e5eea5c2d8c5fceb3ca8d0
6
+ metadata.gz: 76cc484e08c4cb02a64d9cc9686d6020f932f9761f0d5db49c2409a4f022da869bd3ba75c7d2149e72e62a10085ca064352c7eac5819735dc153951e184818e4
7
+ data.tar.gz: a1749eeb5c7dfb371ceb3c50023703eb77df6442f977870c97d921382ced04d6063005b6a51ce46412333d2001a0ee59cfa26bb5e87c02d7a90f9a6a77bd8c4d
@@ -93,6 +93,13 @@ module WolfCore
93
93
  "Wyoming"=>"WY",
94
94
  }
95
95
 
96
+ DISPLAY_PAY_RATE_UNIT_MAP = {
97
+ 'hour' => 'Hourly',
98
+ 'day' => 'Daily',
99
+ 'week' => 'Weekly',
100
+ 'month' => 'Monthly',
101
+ }
102
+
96
103
  def map_provider_type_to_pricing_id(provider_type)
97
104
  pricing_id = PROVIDER_TYPE_MAPPING[provider_type]
98
105
  pricing_id || provider_type
@@ -136,6 +143,14 @@ module WolfCore
136
143
  def revert_map_state_to_abbreviation(value)
137
144
  STATE_ABBREVIATIONS_MAP.invert[value] || value
138
145
  end
146
+
147
+ def map_display_pay_rate_unit(value)
148
+ DISPLAY_PAY_RATE_UNIT_MAP[value] || value
149
+ end
150
+
151
+ def revert_map_display_pay_rate_unit(value)
152
+ DISPLAY_PAY_RATE_UNIT_MAP.invert[value] || value
153
+ end
139
154
  end
140
155
  end
141
156
  end
@@ -1,6 +1,10 @@
1
1
  module WolfCore
2
2
  module Integrations
3
3
  module RoutingOperations
4
+ include WolfCore::HttpOperations
5
+ include WolfCore::LambdaFunctionOperations
6
+ include WolfCore::ExceptionOperations
7
+
4
8
  def route_event_request(path:, body:)
5
9
  environment = ENV['ENVIRONMENT']
6
10
  if environment == 'production'
@@ -7,6 +7,15 @@ module WolfCore
7
7
  params['payload'] = JSON.parse(params['payload'] || '{}')
8
8
  end
9
9
 
10
+ def get_event_type(params:)
11
+ params['Type']
12
+ end
13
+
14
+ def get_event_name(params:)
15
+ message = JSON.parse(params['Message'] || {})
16
+ message['event_name']
17
+ end
18
+
10
19
  def validate_user(event_type:, params:)
11
20
  return if event_type == 'SubscriptionConfirmation'
12
21
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.1.94"
4
+ VERSION = "0.1.96"
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.94
4
+ version: 0.1.96
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-10-03 00:00:00.000000000 Z
11
+ date: 2024-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  requirements: []
140
- rubygems_version: 3.5.18
140
+ rubygems_version: 3.5.16
141
141
  signing_key:
142
142
  specification_version: 4
143
143
  summary: Repository to store shared code among Ruby projects.