cirro-ruby-client 2.5.13 → 2.5.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: c75643dbc6c63d1b537edeb0d49d8f0d1b4049a30dd10c823e5dd681548029ba
4
- data.tar.gz: 42db942af4c2eb64066904a6a9d49fb6f216b129e1abbcb23051ddf7fa0472ff
3
+ metadata.gz: 2cc62345227ec6ccf6ca9605218e0874ee7a792405b2f4d568c1a35a667021a4
4
+ data.tar.gz: 9a22fd7c5b935c8dc0f46777ede5a4969d8946949ec7022e5fd678d03e52dd66
5
5
  SHA512:
6
- metadata.gz: 4cf217669485713bbb6da8f17f607cdf121a64d3bdc7f4ec4c4a36b4b4fa9b913ae14f407fdf524b0eb110e85d9be6b743d8e606a623178c4cc06a19d871d663
7
- data.tar.gz: db83bb8efd1368fd8023d105fba6c8ba0e8f8c591e80ffc73a16e6251d7468937f0ab965cd1c561f681c2336ebd7e3cc69d33fb3107d07e03b8ab56c47d3bc99
6
+ metadata.gz: 52728367915b0906264914765a9f775f5989dab9b4cccf1b4bd0ac3845af4faaff77f4428cc3589c4100dc20778cf57f6262f5d7b83d3d4a3db43b2bc15a0335
7
+ data.tar.gz: 958acf195665a7c68a3518d826b05bc9cc5aac32b49526241231c4fd83c3cfc764167d42d536c354187bf2ab4672183489d4b1a478905726cd7c4bc1e6e69a3d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cirro-ruby-client (2.5.13)
4
+ cirro-ruby-client (2.5.15)
5
5
  activesupport
6
6
  faraday (< 1.2.0)
7
7
  faraday_middleware
@@ -11,9 +11,9 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- activemodel (7.0.4.2)
15
- activesupport (= 7.0.4.2)
16
- activesupport (7.0.4.2)
14
+ activemodel (7.0.8)
15
+ activesupport (= 7.0.8)
16
+ activesupport (7.0.8)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
@@ -35,16 +35,16 @@ GEM
35
35
  hashdiff (1.0.1)
36
36
  i18n (1.10.0)
37
37
  concurrent-ruby (~> 1.0)
38
- json_api_client (1.21.0)
38
+ json_api_client (1.21.1)
39
39
  activemodel (>= 3.2.0)
40
40
  activesupport (>= 3.2.0)
41
41
  addressable (~> 2.2)
42
42
  faraday (>= 0.15.2, < 2.0)
43
43
  faraday_middleware (>= 0.9.0, < 2.0)
44
44
  rack (>= 0.2)
45
- jwt (2.7.0)
45
+ jwt (2.7.1)
46
46
  method_source (1.0.0)
47
- minitest (5.18.0)
47
+ minitest (5.20.0)
48
48
  multipart-post (2.3.0)
49
49
  parallel (1.19.2)
50
50
  parser (2.7.2.0)
@@ -53,7 +53,7 @@ GEM
53
53
  coderay (~> 1.1)
54
54
  method_source (~> 1.0)
55
55
  public_suffix (4.0.6)
56
- rack (3.0.7)
56
+ rack (3.0.8)
57
57
  rainbow (3.0.0)
58
58
  rake (12.3.3)
59
59
  regexp_parser (1.8.1)
@@ -1,7 +1,7 @@
1
1
  # rubocop:disable Style/MutableConstant
2
2
  module CirroIO
3
3
  module Client
4
- VERSION = '2.5.13'
4
+ VERSION = '2.5.15'
5
5
  end
6
6
  end
7
7
  # rubocop:enable Style/MutableConstant
@@ -55,6 +55,7 @@ module CirroIOV2
55
55
  include Base
56
56
  end
57
57
 
58
+ InvitationNotificationTopicResponse = Struct.new(:id, :object, :name, keyword_init: true)
58
59
  GigResponse = Struct.new(:id,
59
60
  :object,
60
61
  :title,
@@ -70,9 +71,10 @@ module CirroIOV2
70
71
  :filter_query,
71
72
  :tasks,
72
73
  :notification_payload,
74
+ :invitation_notification_topic,
73
75
  :epam_options,
74
76
  keyword_init: true) do
75
- self::NESTED_RESPONSES = { tasks: :GigTaskListResponse }.freeze
77
+ self::NESTED_RESPONSES = { tasks: :GigTaskListResponse, invitation_notification_topic: :InvitationNotificationTopicResponse }.freeze
76
78
  include Base
77
79
  end
78
80
 
@@ -97,6 +99,7 @@ module CirroIOV2
97
99
  :quantity,
98
100
  :multiplier,
99
101
  :delivery_date,
102
+ :currency,
100
103
  :cost_center_key,
101
104
  :cost_center_data,
102
105
  keyword_init: true) do
@@ -112,6 +115,7 @@ module CirroIOV2
112
115
  :reference_id,
113
116
  :reference_type,
114
117
  :user_id,
118
+ :currency,
115
119
  :cost_center_key,
116
120
  :cost_center_data,
117
121
  keyword_init: true) do
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.5.13
4
+ version: 2.5.15
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: 2023-04-28 00:00:00.000000000 Z
11
+ date: 2023-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport