shelby_arena 0.0.4 → 0.0.5

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: 80f385f29d41b48eed1bd43b20e43519d58bf987a8d96417c5ac2607c4ebefe4
4
- data.tar.gz: 3f74b22582450a8ea680637037594a9727d5d8f2089c34409bbf20d506918eda
3
+ metadata.gz: d353052cdde7ec70891178e0946d22d53a242bbcb7aa98e1de8ca8c649021a90
4
+ data.tar.gz: 1582fbb7f81ec55893cbea0088ec2f4dc810b29034ca89520e0dd3bea7b7febd
5
5
  SHA512:
6
- metadata.gz: 77c191c322fa1801af116a9022055d4b698bded267e1b1639353fd08f0918b1e2eb38482a75434ce03e458da078692bb0177beb19128db70029893ad8b35d8b0
7
- data.tar.gz: f3fd57c7d900a8f8f7e2c94281b1ac9dd7e25396b1d34c5348004dbd700c6715abd73fb8aca1f208e54050cc7b58851d327fed18ea4788a86c1ed2c5fd826f9e
6
+ metadata.gz: 8d322d5c437617ac466eb74420c6de6634629850d2f447724ce1a9028340d522333b1375ceb848b39f8eadb61a3aa05377a98e3c0284676884c50f3ddde02db8
7
+ data.tar.gz: 84fe372bb93bb5fc830e4d8a1fbbc0e00b4a9616b303428375a1667e4068f6f3f5386b4aaaf0ca5053b43a3b4a5933e58b2a04840ba32a591f1d98e5c4d7c1b8
@@ -25,14 +25,16 @@ module ShelbyArena
25
25
  def create_person(
26
26
  first_name:,
27
27
  last_name:,
28
- email:
28
+ email:,
29
+ record_status_id: 2
29
30
  )
30
31
  path = 'person/add'
31
32
 
32
33
  body = {
33
34
  'FirstName' => first_name,
34
35
  'LastName' => last_name,
35
- 'Emails' => ['Address' => email]
36
+ 'Emails' => ['Address' => email],
37
+ 'RecordStatusID' => record_status_id,
36
38
  }
37
39
 
38
40
  options = {}
@@ -45,7 +47,8 @@ module ShelbyArena
45
47
  id,
46
48
  first_name: nil,
47
49
  last_name: nil,
48
- email: nil
50
+ email: nil,
51
+ record_status_id: nil
49
52
  )
50
53
  path = "#{people_path(id)}/update"
51
54
 
@@ -54,6 +57,7 @@ module ShelbyArena
54
57
  body['FirstName'] = first_name if first_name
55
58
  body['LastName'] = last_name if last_name
56
59
  body['Emails'] = ['Address' => email] if email
60
+ body['RecordStatusID'] = record_status_id if record_status_id
57
61
 
58
62
  options = {}
59
63
  options[:api_sig] = generate_api_sig(path, options)
@@ -1,3 +1,3 @@
1
1
  module ShelbyArena
2
- VERSION = '0.0.4'.freeze
2
+ VERSION = '0.0.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shelby_arena
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-14 00:00:00.000000000 Z
11
+ date: 2024-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday