stbaldricks 6.1.0 → 6.2.0.alpha.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45f4cde3f8733889b96640debfd9e6a6e26983b2640574546e45721a68837a27
|
|
4
|
+
data.tar.gz: f3a08b6e25bb13cfe0f3aebb008c7356a6e729b5b0912f60db390e37a2d35fb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a3b1858f129fad42239dcb7a572f5e74410156d2a7ee92bccdd9d8c7e24d02e4ad6f396d4774077f71f4851e1ce3e019aaa98a115b689172ee4ae904bbd9361
|
|
7
|
+
data.tar.gz: 2948505ae410f2a7d34ab74bc7e5d3b6a255a35f8080c68726c00efe5a8d16eb419338d4c25b2ecdba19efaca93e2a0bfe3bc43f79164da0dcf21282bc00260c
|
|
@@ -44,6 +44,12 @@ module SBF
|
|
|
44
44
|
PAYMENT_SPRING_APP = 'payment_spring_app'
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
+
module ShippingPreference
|
|
48
|
+
USE_PRIMARY_ADDRESS = 'use_primary_address'
|
|
49
|
+
USE_VENUE_ADDRESS = 'use_venue_address'
|
|
50
|
+
USE_ALTERNATE_ADDRESS = 'use_alternate_address'
|
|
51
|
+
end
|
|
52
|
+
|
|
47
53
|
class Addresses < SBF::Client::BaseEntity
|
|
48
54
|
entity_attr_accessor :primary, 'SBF::Client::Address'
|
|
49
55
|
entity_attr_accessor :secondary, 'SBF::Client::Address'
|
|
@@ -81,6 +87,7 @@ module SBF
|
|
|
81
87
|
entity_attr_accessor :phone_numbers, 'SBF::Client::Organization::PhoneNumbers'
|
|
82
88
|
entity_attr_accessor :email_addresses, 'SBF::Client::Organization::EmailAddresses'
|
|
83
89
|
entity_attr_accessor :opt_out_settings, 'SBF::Client::OptOutSettings', nil, true
|
|
90
|
+
attr_accessor :selected_shipping_method
|
|
84
91
|
attr_reader :created_at, :modified_at
|
|
85
92
|
attr_accessor :modified_by
|
|
86
93
|
attr_accessor :how_created
|
|
@@ -69,6 +69,12 @@ module SBF
|
|
|
69
69
|
PAYMENT_SPRING_APP = 'payment_spring_app'
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
+
module ShippingPreference
|
|
73
|
+
USE_PRIMARY_ADDRESS = 'use_primary_address'
|
|
74
|
+
USE_VENUE_ADDRESS = 'use_venue_address'
|
|
75
|
+
USE_ALTERNATE_ADDRESS = 'use_alternate_address'
|
|
76
|
+
end
|
|
77
|
+
|
|
72
78
|
class Addresses < SBF::Client::BaseEntity
|
|
73
79
|
entity_attr_accessor :primary, 'SBF::Client::Address'
|
|
74
80
|
entity_attr_accessor :secondary, 'SBF::Client::Address'
|
|
@@ -387,6 +393,7 @@ module SBF
|
|
|
387
393
|
entity_attr_accessor :policies, 'SBF::Client::Person::Policies'
|
|
388
394
|
entity_attr_accessor :how_affected, 'SBF::Client::Person::HowAffected', nil, true
|
|
389
395
|
entity_attr_accessor :opt_out_settings, 'SBF::Client::OptOutSettings', nil, true
|
|
396
|
+
attr_accessor :selected_shipping_method
|
|
390
397
|
attr_reader :created_at, :modified_at
|
|
391
398
|
attr_accessor :modified_by
|
|
392
399
|
attr_accessor :how_created
|
data/lib/stbaldricks/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stbaldricks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.2.0.alpha.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Firespring
|
|
@@ -229,9 +229,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
229
229
|
version: '0'
|
|
230
230
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
231
|
requirements:
|
|
232
|
-
- - "
|
|
232
|
+
- - ">"
|
|
233
233
|
- !ruby/object:Gem::Version
|
|
234
|
-
version:
|
|
234
|
+
version: 1.3.1
|
|
235
235
|
requirements: []
|
|
236
236
|
rubyforge_project:
|
|
237
237
|
rubygems_version: 2.7.7
|