uscreen_api 0.1.1 → 0.1.2
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/lib/uscreen_api/customers.rb +2 -2
- data/lib/uscreen_api/version.rb +1 -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: 55f8484643d8a37813e8891451aff82a54279c02d6a56f4a574083f2d1df2ebd
|
4
|
+
data.tar.gz: 56fecb97380306860c12babb89b541bae88cfa1f90b9aed2aa367a0a66ca2ad7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b849a8f6cd490c836a02fdd588eaa2599540eb33be38159a98ed342113a675b7f02db79e3e5c62413f51b535adc423d0f3471b2a5179855d76e18764c9e2f421
|
7
|
+
data.tar.gz: 917771f0b4044c8c8fe0d9af12e42efe9efd296ae0e4a8c9eb8f54da8e43faa4703b7cda37bb57f898ba64aa63624b2f0fb6fc4b647e49210698f1ee9b242328
|
@@ -137,16 +137,16 @@ module UscreenAPI
|
|
137
137
|
def grant_access(
|
138
138
|
id:,
|
139
139
|
product_id:,
|
140
|
-
product_type
|
140
|
+
product_type: nil,
|
141
141
|
perform_action_at: nil,
|
142
142
|
with_manual_billing: false
|
143
143
|
)
|
144
144
|
response = client.connection.post("#{PATH}/#{id}/accesses") do |req|
|
145
145
|
req.body = {
|
146
146
|
product_id: product_id,
|
147
|
-
product_type: product_type,
|
148
147
|
with_manual_billing: with_manual_billing
|
149
148
|
}
|
149
|
+
req.body["product_type"] = product_type if product_type
|
150
150
|
req.body["perform_action_at"] = perform_action_at if perform_action_at
|
151
151
|
end
|
152
152
|
|
data/lib/uscreen_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uscreen_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Bondarev
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: faraday
|