afc_salesforce 0.1.23 → 0.1.24
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 +4 -4
- data/lib/afc_salesforce/account.rb +2 -0
- data/lib/afc_salesforce/borrower.rb +2 -0
- data/lib/afc_salesforce/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: afc41fa9e57549051fc0d2c7c618191ee414726fb1f2316903a245e622a04bb8
|
|
4
|
+
data.tar.gz: 10dc6c2e5548f66705054f41b51fcb8ee5b2f32d8a031aedc7b5944fec573a60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce4b57b948ae4daa7f1c87a585d9988741674ca301b9b14ec7da903eea6270014418b5f887d748f2c523674170c78009f5406f9684c5e86ac6648a6eafa27b28
|
|
7
|
+
data.tar.gz: 402598ecdb9b7eb7b8195b2569ba09ec5eecd1be4e629ab77125dff380af2ad2340dfc73ad7b077df389d75323917a6b6a044d7c7bb2efb621940da32466d9a6
|
|
@@ -60,6 +60,7 @@ module AFCSalesforce
|
|
|
60
60
|
:square_feet,
|
|
61
61
|
:subject_property_city,
|
|
62
62
|
:subject_property_state,
|
|
63
|
+
:velo__status__c,
|
|
63
64
|
:working_with_realtor,
|
|
64
65
|
:x2nd_mortgage_date_opened__c
|
|
65
66
|
|
|
@@ -112,6 +113,7 @@ module AFCSalesforce
|
|
|
112
113
|
subject_property_state__c: @subject_property_state,
|
|
113
114
|
type__c: @loan_type,
|
|
114
115
|
va_eligible__c: @is_va_eligible,
|
|
116
|
+
velo__status__c: @velo__status__c,
|
|
115
117
|
working_with_realtor__c: @working_with_realtor,
|
|
116
118
|
x1st_mortgage_balance__c: @first_mortgage_balance,
|
|
117
119
|
x1st_mortgage_payment__c: @first_mortgage_payment,
|
|
@@ -16,6 +16,7 @@ module AFCSalesforce
|
|
|
16
16
|
:suffix,
|
|
17
17
|
:va_dependent_ages,
|
|
18
18
|
:va_dependent_count,
|
|
19
|
+
:velo__status__c,
|
|
19
20
|
:x1_prev_emp_from,
|
|
20
21
|
:x2_prev_emp_from,
|
|
21
22
|
:x1_prev_emp_monthly_income,
|
|
@@ -70,6 +71,7 @@ module AFCSalesforce
|
|
|
70
71
|
suffix__c: @suffix,
|
|
71
72
|
va_dependent_ages__c: @va_dependent_ages,
|
|
72
73
|
va_dependent_count__c: @va_dependent_count,
|
|
74
|
+
velo__status__c: @velo__status__c,
|
|
73
75
|
x1_prev_emp_from__c: @x1_prev_emp_from,
|
|
74
76
|
x2_prev_emp_from__c: @x2_prev_emp_from,
|
|
75
77
|
x1_prev_emp_monthly_income__c: @x1_prev_emp_monthly_income,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: afc_salesforce
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.24
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Donavan White
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -201,8 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
202
|
version: '0'
|
|
203
203
|
requirements: []
|
|
204
|
-
|
|
205
|
-
rubygems_version: 2.7.6
|
|
204
|
+
rubygems_version: 3.1.2
|
|
206
205
|
signing_key:
|
|
207
206
|
specification_version: 4
|
|
208
207
|
summary: Salesforce Library for the AFC Salesforce Instance
|