stbaldricks 6.5.0.alpha.1 → 6.5.0
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: 9e65e70d9e8cf824515f8b77ffda3f9485a4628abb192c3174199dcb66ea1569
|
|
4
|
+
data.tar.gz: 74150f7982ab8eb5827a654bdbd080e9bf379daf5ffa9489117b5411c211e4fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85d92ba748ce7915f89ad7e36d2a47a34b3eef3ca89450c3611808a6d905a7506b245750495b7f9fe9c0ecd23bb376448f0228c98f4702fe488705d60432c6bc
|
|
7
|
+
data.tar.gz: 74169cac2a736473db9469d077d04c9d101ea9e86354016eb5de8a4cd89a827c6b812c9bc329ee9dae452d33cec86dafa1ea5e1c0d31396e88f556ee7982639e
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'stbaldricks/entities/lib/top_level'
|
|
2
|
+
|
|
3
|
+
module SBF
|
|
4
|
+
module Client
|
|
5
|
+
class DeduplicatorHistory < SBF::Client::TopLevelEntity
|
|
6
|
+
action :get
|
|
7
|
+
action :find
|
|
8
|
+
|
|
9
|
+
attr_accessor :id
|
|
10
|
+
attr_accessor :from_profile_id
|
|
11
|
+
attr_accessor :to_profile_id
|
|
12
|
+
attr_accessor :checkout_id
|
|
13
|
+
attr_accessor :change_history
|
|
14
|
+
attr_accessor :date_merged
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
require 'stbaldricks/entities/lib/base'
|
|
2
|
+
require 'stbaldricks/entities/lib/cacheable'
|
|
2
3
|
|
|
3
4
|
module SBF
|
|
4
5
|
module Client
|
|
5
6
|
class AlternateShippingAddress < SBF::Client::BaseEntity
|
|
7
|
+
include Entities::Cacheable
|
|
8
|
+
|
|
6
9
|
module Type
|
|
7
10
|
HOME = 'home'
|
|
8
11
|
BUSINESS = 'business'
|
data/lib/stbaldricks/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stbaldricks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.5.0
|
|
4
|
+
version: 6.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Firespring
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -121,6 +121,7 @@ files:
|
|
|
121
121
|
- lib/stbaldricks/entities/config.rb
|
|
122
122
|
- lib/stbaldricks/entities/contact.rb
|
|
123
123
|
- lib/stbaldricks/entities/contact_group.rb
|
|
124
|
+
- lib/stbaldricks/entities/deduplicator_history.rb
|
|
124
125
|
- lib/stbaldricks/entities/disease.rb
|
|
125
126
|
- lib/stbaldricks/entities/document_library.rb
|
|
126
127
|
- lib/stbaldricks/entities/document_library_category.rb
|
|
@@ -233,9 +234,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
233
234
|
version: '0'
|
|
234
235
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
235
236
|
requirements:
|
|
236
|
-
- - "
|
|
237
|
+
- - ">="
|
|
237
238
|
- !ruby/object:Gem::Version
|
|
238
|
-
version:
|
|
239
|
+
version: '0'
|
|
239
240
|
requirements: []
|
|
240
241
|
rubyforge_project:
|
|
241
242
|
rubygems_version: 2.7.7
|