cirro-ruby-client 2.3.0 → 2.3.2

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: 37a801e39bc51be2fec1f38fcdf9367a7f73dc82b21afc8cbd884ed47b61a173
4
- data.tar.gz: 37a1366f9778231e64e8e2a7e14ec0a106bcf20288de3b4e44c8fb5735af04bd
3
+ metadata.gz: 7ef0879cdc1f1f3a1b8586c8fd60109f33a0c0018779f87558fb884c67131298
4
+ data.tar.gz: 2597826afc7375f0458ce56ccd826ff3b5b58d4159095d3b576b32ae586883e2
5
5
  SHA512:
6
- metadata.gz: 2f90bd6e90a05f549e1b097b02a42ac1938855b59430981de07a41a659d65db4c525f971daa173ebca3898fb27a621e2611bba8f92cb0c482bbcd55f28d8d055
7
- data.tar.gz: 7df252852f06b247ee9bc33495e9af16de7ab3d3a405b3dc3cb0a4c67097cf95a5134360f322ed3cc28bfb8c7e8c6b6a26fca22293b3b8a9b582c5514696571a
6
+ metadata.gz: ee4df59dd5474cf13efaad1fb2c2e71bb4cd3315f1b000e73fa20600d5d114b94ff28acbcc403e7d6df2e22b151aec5d45914e3a75e8676b58428c00c79b3d33
7
+ data.tar.gz: f1a5b82489e6755511e2523bcff091573c7d871bce49a417877d58d3d70dfe85296f8f54d71c4bed714d91517dbb47747961c090dce4de0ea4981320b5411993
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cirro-ruby-client (2.2.2)
4
+ cirro-ruby-client (2.3.2)
5
5
  activesupport
6
6
  faraday (< 1.2.0)
7
7
  faraday_middleware
@@ -11,14 +11,13 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- activemodel (6.1.7)
15
- activesupport (= 6.1.7)
16
- activesupport (6.1.7)
14
+ activemodel (7.0.4)
15
+ activesupport (= 7.0.4)
16
+ activesupport (7.0.4)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
20
20
  tzinfo (~> 2.0)
21
- zeitwerk (~> 2.3)
22
21
  addressable (2.8.0)
23
22
  public_suffix (>= 2.0.2, < 5.0)
24
23
  ast (2.4.1)
@@ -54,7 +53,7 @@ GEM
54
53
  coderay (~> 1.1)
55
54
  method_source (~> 1.0)
56
55
  public_suffix (4.0.6)
57
- rack (3.0.0)
56
+ rack (3.0.1)
58
57
  rainbow (3.0.0)
59
58
  rake (12.3.3)
60
59
  regexp_parser (1.8.1)
@@ -94,7 +93,6 @@ GEM
94
93
  addressable (>= 2.3.6)
95
94
  crack (>= 0.3.2)
96
95
  hashdiff (>= 0.4.0, < 2.0.0)
97
- zeitwerk (2.6.0)
98
96
 
99
97
  PLATFORMS
100
98
  ruby
@@ -1,7 +1,7 @@
1
1
  # rubocop:disable Style/MutableConstant
2
2
  module CirroIO
3
3
  module Client
4
- VERSION = '2.3.0'
4
+ VERSION = '2.3.2'
5
5
  end
6
6
  end
7
7
  # rubocop:enable Style/MutableConstant
@@ -81,8 +81,8 @@ module CirroIOV2
81
81
  Resources::GigResult.new(self)
82
82
  end
83
83
 
84
- def GigTimePayout
85
- Resources::GigTimePayout.new(self)
84
+ def GigTimeActivity
85
+ Resources::GigTimeActivity.new(self)
86
86
  end
87
87
 
88
88
  def Payout
@@ -15,12 +15,12 @@ module CirroIOV2
15
15
  :NotificationTemplateListResponse,
16
16
  ].freeze
17
17
 
18
- UserResponse = Struct.new(:id, :object, :first_name, :last_name, :time_zone, :screen_name, :country_code, :epam, :worker) do
18
+ UserResponse = Struct.new(:id, :object, :first_name, :last_name, :time_zone, :birthday, :country_code, :epam, :worker) do
19
19
  include Base
20
20
  end
21
21
 
22
22
  UserNotificationPreferenceResponse = Struct.new(:id, :object, :locale, :topics) do
23
- self::NESTED_RESPONSES = { topics: :NotificationTopicListResponse }.freeze
23
+ self::NESTED_RESPONSES = { topics: :NotificationTopicPreferenceListResponse }.freeze
24
24
  include Base
25
25
  end
26
26
 
@@ -87,7 +87,6 @@ module CirroIOV2
87
87
  end
88
88
 
89
89
  NotificationTopicPreferenceResponse = Struct.new(:id, :object, :preferences, :notification_topic_id, :user_id) do
90
- self::NESTED_RESPONSES = { preferences: :NotificationTopicPreferenceListResponse }.freeze
91
90
  include Base
92
91
  end
93
92
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cirro-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cirro Dev Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport