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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dabe74b714b2834a0a01cceebcd32d5a096b447cba13f83064c614ed0037c947
4
- data.tar.gz: fdc515202c4df5e64241d9cca0e77d858ed1e0546aba454e02e2ddc58c4b931e
3
+ metadata.gz: 55f8484643d8a37813e8891451aff82a54279c02d6a56f4a574083f2d1df2ebd
4
+ data.tar.gz: 56fecb97380306860c12babb89b541bae88cfa1f90b9aed2aa367a0a66ca2ad7
5
5
  SHA512:
6
- metadata.gz: c01ab1ee8906107d20357b4b38bdb0e4ec4fc9a215e0d03456b337d10acacaa0be70f87f0f10f7c6491819b3cd0eb73a2f8a02ac8a46e048cf2e63eb69f17bcf
7
- data.tar.gz: 1457f0bf34035cd21afb5cd8cca69582dba41b9af84ad33024b2e2c85c69106cffab8999a61685d779d0349bc666dc7e12584ab443796246a6216cbe608b198c
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module UscreenAPI
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.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-01-08 00:00:00.000000000 Z
10
+ date: 2025-03-28 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: faraday