rock_rms 5.16.0 → 5.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/lib/rock_rms/client.rb +1 -0
- data/lib/rock_rms/resources/registration.rb +27 -0
- data/lib/rock_rms/response/base.rb +1 -0
- data/lib/rock_rms/response/fund.rb +2 -1
- data/lib/rock_rms/response/registration.rb +22 -0
- data/lib/rock_rms/response/registration_instance.rb +18 -0
- data/lib/rock_rms/version.rb +1 -1
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df26d487a46f16ed4ffee2e08f0c94cb482def5621391da71e4035e0c8970f5b
|
4
|
+
data.tar.gz: a3009d3a5bb708c3cb7660330178f56689da6a18feb1ecad557a8926c284cd4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84e72ec3e948e5215416692cd9b64371b58b35c0876d81fc338ab0ba5c6128de4feb67096e640b02735e5c7b1b3a5437c2f20831b69f863955306dcf99fefa76
|
7
|
+
data.tar.gz: 492ca825e2e53cee2c5686e1ad73d86521e833ccb12cf2476842ce8e7f630860965a520af4ebd55dfddb8a445238a42993401d42e7956ba345334524f169c2fb
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.7.
|
1
|
+
2.7.4
|
data/lib/rock_rms/client.rb
CHANGED
@@ -31,6 +31,7 @@ module RockRMS
|
|
31
31
|
include RockRMS::Client::RecurringDonationDetail
|
32
32
|
include RockRMS::Client::Refund
|
33
33
|
include RockRMS::Client::RefundReason
|
34
|
+
include RockRMS::Client::Registration
|
34
35
|
include RockRMS::Client::SavedPaymentMethod
|
35
36
|
include RockRMS::Client::ServiceJob
|
36
37
|
include RockRMS::Client::Transaction
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module RockRMS
|
2
|
+
class Client
|
3
|
+
module Registration
|
4
|
+
PATH = 'Registrations'.freeze
|
5
|
+
|
6
|
+
def list_registrations(options = {})
|
7
|
+
res = get(registration_path, options)
|
8
|
+
Response::Registration.format(res)
|
9
|
+
end
|
10
|
+
|
11
|
+
def find_registration(id)
|
12
|
+
res = get(registration_path(id))
|
13
|
+
Response::Registration.format(res)
|
14
|
+
end
|
15
|
+
|
16
|
+
def delete_registration(id)
|
17
|
+
delete(registration_path(id))
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def registration_path(id = nil)
|
23
|
+
id ? "#{PATH}/#{id}" : PATH
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module RockRMS
|
2
|
+
module Response
|
3
|
+
class Registration < Base
|
4
|
+
MAP = {
|
5
|
+
id: 'Id',
|
6
|
+
first_name: 'FirstName',
|
7
|
+
last_name: 'LastName',
|
8
|
+
confirmation_email: 'ConfirmationEmail',
|
9
|
+
person_alias_id: 'PersonAliasId',
|
10
|
+
registration_instance_id: 'RegistrationInstanceId',
|
11
|
+
registration_instance: 'RegistrationInstance',
|
12
|
+
registrants: 'Registrants'
|
13
|
+
}.freeze
|
14
|
+
|
15
|
+
def format_single(data)
|
16
|
+
response = to_h(MAP, data)
|
17
|
+
response[:registration_instance] = RegistrationInstance.format(response[:registration_instance])
|
18
|
+
response
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module RockRMS
|
2
|
+
module Response
|
3
|
+
class RegistrationInstance < Base
|
4
|
+
MAP = {
|
5
|
+
id: 'Id',
|
6
|
+
name: 'Name',
|
7
|
+
start_date: 'StartDateTime',
|
8
|
+
end_date: 'EndDateTime',
|
9
|
+
fund_id: 'AccountId'
|
10
|
+
}.freeze
|
11
|
+
|
12
|
+
def format_single(data)
|
13
|
+
response = to_h(MAP, data)
|
14
|
+
response
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/rock_rms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rock_rms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Brooks
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -206,6 +206,7 @@ files:
|
|
206
206
|
- lib/rock_rms/resources/recurring_donation_detail.rb
|
207
207
|
- lib/rock_rms/resources/refund.rb
|
208
208
|
- lib/rock_rms/resources/refund_reason.rb
|
209
|
+
- lib/rock_rms/resources/registration.rb
|
209
210
|
- lib/rock_rms/resources/saved_payment_method.rb
|
210
211
|
- lib/rock_rms/resources/service_job.rb
|
211
212
|
- lib/rock_rms/resources/transaction.rb
|
@@ -236,6 +237,8 @@ files:
|
|
236
237
|
- lib/rock_rms/response/phone_number.rb
|
237
238
|
- lib/rock_rms/response/recurring_donation.rb
|
238
239
|
- lib/rock_rms/response/recurring_donation_details.rb
|
240
|
+
- lib/rock_rms/response/registration.rb
|
241
|
+
- lib/rock_rms/response/registration_instance.rb
|
239
242
|
- lib/rock_rms/response/saved_payment_method.rb
|
240
243
|
- lib/rock_rms/response/service_job.rb
|
241
244
|
- lib/rock_rms/response/transaction.rb
|
@@ -339,7 +342,7 @@ homepage: https://github.com/taylorbrooks/rock_rms
|
|
339
342
|
licenses:
|
340
343
|
- MIT
|
341
344
|
metadata: {}
|
342
|
-
post_install_message:
|
345
|
+
post_install_message:
|
343
346
|
rdoc_options: []
|
344
347
|
require_paths:
|
345
348
|
- lib
|
@@ -354,8 +357,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
357
|
- !ruby/object:Gem::Version
|
355
358
|
version: '0'
|
356
359
|
requirements: []
|
357
|
-
rubygems_version: 3.1.
|
358
|
-
signing_key:
|
360
|
+
rubygems_version: 3.1.6
|
361
|
+
signing_key:
|
359
362
|
specification_version: 4
|
360
363
|
summary: A Ruby wrapper for the Rock RMS API
|
361
364
|
test_files: []
|