synctera_ruby_sdk 1.0.0 → 1.1.2

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: 040f5bf877ad9d8aa94852d37411d66fb7f74e221226c9b2ae315d579154a773
4
- data.tar.gz: e314261ad4dcd55cee4e34b7ed3b3241f69e8ee431429c5439f9dedc10e4a5ca
3
+ metadata.gz: 9c2263f3837894368e0cf0a061acc18b5f0c079811cae7fffd16cf2327dac676
4
+ data.tar.gz: c28fbf9f49385fa725d364cf4c0c672fc1e72bb2028505a0392fb3991299adec
5
5
  SHA512:
6
- metadata.gz: 8c2d6a0c4f775308845cdeca560b1161713a21f01efbe1e14303ab921fe123a58e9c9a96b9952e1ecca9acd8277b0a656505bf579c6aa6fac55e395b75548638
7
- data.tar.gz: 6ef2d01cc8d1ec73cc93fd5ce9385c2fed478d8f0dbb46be9215a234d5fe204978d5c5d0528065156514ddba56c6e9b6cde927cf6377ec2324bad46eed34f938
6
+ metadata.gz: f5c5fac93ac70825fa7df34916aed1d4c12b67ae6cb43ed9bd4dc833a73dfc6b653f449c3322cb1bc4468ef381a81d4779d4bdd7dff7cba6e488feefef056949
7
+ data.tar.gz: 786d075665d7641191b0af0518a43813dd3dff2dea93a6b9500451b64086ecb8231aacdd44cda75b117591559b10f16aa203e71105de8a27fe9e51547172aa7a
data/README.md CHANGED
@@ -34,7 +34,7 @@ or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.or
34
34
 
35
35
  Finally add this to the Gemfile:
36
36
 
37
- gem 'synctera_ruby_sdk', '~> 1.0.0'
37
+ gem 'synctera_ruby_sdk'
38
38
 
39
39
  ### Install from Git
40
40
 
@@ -28,6 +28,13 @@ module SyncteraRubySdk
28
28
  attr_accessor :middle_name
29
29
 
30
30
  attr_accessor :relationship_type
31
+ attr_accessor :is_customer
32
+ attr_accessor :email
33
+ attr_accessor :ssn
34
+ attr_accessor :dob
35
+ attr_accessor :status
36
+ attr_accessor :phone_number
37
+
31
38
 
32
39
  # Attribute mapping from ruby-style variable name to JSON key.
33
40
  def self.attribute_map
@@ -38,7 +45,13 @@ module SyncteraRubySdk
38
45
  :'last_name' => :'last_name',
39
46
  :'last_updated_time' => :'last_updated_time',
40
47
  :'middle_name' => :'middle_name',
41
- :'relationship_type' => :'relationship_type'
48
+ :'relationship_type' => :'relationship_type',
49
+ :'is_customer' => :'is_customer',
50
+ :'email' => :'email',
51
+ :'ssn' => :'ssn',
52
+ :'dob' => :'dob',
53
+ :'phone_number' => :'phone_number',
54
+ :'status' => :'status'
42
55
  }
43
56
  end
44
57
 
@@ -56,7 +69,13 @@ module SyncteraRubySdk
56
69
  :'last_name' => :'String',
57
70
  :'last_updated_time' => :'Time',
58
71
  :'middle_name' => :'String',
59
- :'relationship_type' => :'String'
72
+ :'relationship_type' => :'String',
73
+ :'is_customer' => :'Boolean',
74
+ :'email' => :'String',
75
+ :'ssn' => :'String',
76
+ :'dob' => :'Date',
77
+ :'phone_number' => :'String',
78
+ :'status' => :'String'
60
79
  }
61
80
  end
62
81
 
@@ -108,6 +127,24 @@ module SyncteraRubySdk
108
127
  if attributes.key?(:'relationship_type')
109
128
  self.relationship_type = attributes[:'relationship_type']
110
129
  end
130
+ if attributes.key?(:'email')
131
+ self.email = attributes[:'email']
132
+ end
133
+ if attributes.key?(:'ssn')
134
+ self.ssn = attributes[:'ssn']
135
+ end
136
+ if attributes.key?(:'is_customer')
137
+ self.is_customer = attributes[:'is_customer']
138
+ end
139
+ if attributes.key?(:'dob')
140
+ self.dob = attributes[:'dob']
141
+ end
142
+ if attributes.key?(:'status')
143
+ self.status = attributes[:'status']
144
+ end
145
+ if attributes.key?(:'phone_number')
146
+ self.phone_number = attributes[:'phone_number']
147
+ end
111
148
  end
112
149
 
113
150
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -134,7 +171,13 @@ module SyncteraRubySdk
134
171
  last_name == o.last_name &&
135
172
  last_updated_time == o.last_updated_time &&
136
173
  middle_name == o.middle_name &&
137
- relationship_type == o.relationship_type
174
+ relationship_type == o.relationship_type &&
175
+ email == o.email &&
176
+ ssn == o.ssn &&
177
+ is_customer == o.is_customer &&
178
+ status == o.status &&
179
+ phone_number == o.phone_number &&
180
+ dob == o.dob
138
181
  end
139
182
 
140
183
  # @see the `==` method
@@ -146,7 +189,7 @@ module SyncteraRubySdk
146
189
  # Calculates hash code according to all attributes.
147
190
  # @return [Integer] Hash code
148
191
  def hash
149
- [creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type].hash
192
+ [creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type, email, ssn, dob, is_customer, status, phone_number].hash
150
193
  end
151
194
 
152
195
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.5.0
11
11
  =end
12
12
 
13
13
  module SyncteraRubySdk
14
- VERSION = '1.0.0'
14
+ VERSION = '1.1.2'
15
15
  end
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: synctera_ruby_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Staack
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-17 00:00:00.000000000 Z
11
+ date: 2023-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -1716,6 +1716,8 @@ files:
1716
1716
  - spec/models/wire_spec.rb
1717
1717
  - spec/models/withdrawal_request_model_spec.rb
1718
1718
  - spec/spec_helper.rb
1719
+ - synctera_ruby_sdk-1.1.0.gem
1720
+ - synctera_ruby_sdk-1.1.1.gem
1719
1721
  - synctera_ruby_sdk.gemspec
1720
1722
  - vendor/bundle/ruby/3.2.0/bin/byebug
1721
1723
  - vendor/bundle/ruby/3.2.0/bin/coderay