cirro-ruby-client 2.5.13 → 2.5.15
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 +4 -4
- data/Gemfile.lock +8 -8
- data/lib/cirro_io/client/version.rb +1 -1
- data/lib/cirro_io_v2/responses/responses.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cc62345227ec6ccf6ca9605218e0874ee7a792405b2f4d568c1a35a667021a4
|
|
4
|
+
data.tar.gz: 9a22fd7c5b935c8dc0f46777ede5a4969d8946949ec7022e5fd678d03e52dd66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
15
|
-
activesupport (= 7.0.
|
|
16
|
-
activesupport (7.0.
|
|
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.
|
|
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.
|
|
45
|
+
jwt (2.7.1)
|
|
46
46
|
method_source (1.0.0)
|
|
47
|
-
minitest (5.
|
|
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.
|
|
56
|
+
rack (3.0.8)
|
|
57
57
|
rainbow (3.0.0)
|
|
58
58
|
rake (12.3.3)
|
|
59
59
|
regexp_parser (1.8.1)
|
|
@@ -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.
|
|
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-
|
|
11
|
+
date: 2023-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|