uscreen_api 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/uscreen_api/customers.rb +5 -5
- 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: dabe74b714b2834a0a01cceebcd32d5a096b447cba13f83064c614ed0037c947
|
4
|
+
data.tar.gz: fdc515202c4df5e64241d9cca0e77d858ed1e0546aba454e02e2ddc58c4b931e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c01ab1ee8906107d20357b4b38bdb0e4ec4fc9a215e0d03456b337d10acacaa0be70f87f0f10f7c6491819b3cd0eb73a2f8a02ac8a46e048cf2e63eb69f17bcf
|
7
|
+
data.tar.gz: 1457f0bf34035cd21afb5cd8cca69582dba41b9af84ad33024b2e2c85c69106cffab8999a61685d779d0349bc666dc7e12584ab443796246a6216cbe608b198c
|
@@ -40,17 +40,17 @@ module UscreenAPI
|
|
40
40
|
def create(
|
41
41
|
email:,
|
42
42
|
name:,
|
43
|
-
password
|
43
|
+
password: nil,
|
44
44
|
payment_user_id: nil,
|
45
45
|
skip_invite: nil,
|
46
46
|
opted_in_for_news_and_updates: nil,
|
47
47
|
custom_fields: {}
|
48
48
|
)
|
49
49
|
response = client.connection.post(PATH) do |req|
|
50
|
-
req.body = {
|
51
|
-
|
52
|
-
|
53
|
-
|
50
|
+
req.body = {
|
51
|
+
email: email,
|
52
|
+
name: name
|
53
|
+
}
|
54
54
|
req.body["password"] = password if password
|
55
55
|
req.body["payment_user_id"] = payment_user_id if payment_user_id
|
56
56
|
req.body["skip_invite"] = skip_invite if skip_invite
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Bondarev
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-01-
|
10
|
+
date: 2025-01-08 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: faraday
|