afc_salesforce 0.1.27 → 0.1.28

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
- SHA1:
3
- metadata.gz: b9e091707fc85fbb3ac049a865388c42341b22f1
4
- data.tar.gz: c8a4653adc1a74622535389823fc7c66bd418ae3
2
+ SHA256:
3
+ metadata.gz: fb78c9190ef3c75e3e2eb6f8613273d3c3171e2a457bb5b727fc43bceffd2f3b
4
+ data.tar.gz: 6664880b1d81f4bb49977d6af99471e0729f4938bcc8f08c4bd270d254a2bd28
5
5
  SHA512:
6
- metadata.gz: e95c2a8d49e74f82a163136d11856ec8d1fbf8169afe375f83c8071e5db87234d56b7a57f3299f6c93871aa8a341e35981e49d0a68eba6ae59f813e3d090af77
7
- data.tar.gz: '0952cae37088869e06269f24123507552726e2d50bdc7afd788f084b72f89bd56ae4445697639bcc8670f1ed96d9667f964b5079b3d765a50890dfc07305da33'
6
+ metadata.gz: 3ce53bc1ffd74c8237ede8dc0a2ceb943a5b6a58ff02ddb74c8df67bfb2a379ed8c9943ee40c8769fa669cfe3c99e792630b81cb25242d7cf5994515def656f9
7
+ data.tar.gz: a685b2a88a0d34845f87eddbda769de74b4aa9f9472417db7b128af7447ccdf6b55fd5e657933a7e6b3681d40c2d4bf4866bf4275613498f5492ed1195b5cc3b
@@ -2,6 +2,7 @@ module AFCSalesforce
2
2
  class Account < Base
3
3
  attr_accessor :appraised_value,
4
4
  :approximate_value,
5
+ :call_status__c,
5
6
  :condo_type,
6
7
  :date_of_last_appraisal,
7
8
  :date_of_purchase,
@@ -60,7 +61,6 @@ module AFCSalesforce
60
61
  :square_feet,
61
62
  :subject_property_city,
62
63
  :subject_property_state,
63
- :velo__status__c,
64
64
  :working_with_realtor,
65
65
  :x2nd_mortgage_date_opened__c
66
66
 
@@ -75,6 +75,7 @@ module AFCSalesforce
75
75
  billingpostalcode: @property_zip,
76
76
  billingstate: @property_state,
77
77
  billingstreet: @property_street,
78
+ call_status__c: @call_status__c,
78
79
  condo_type__c: @condo_type,
79
80
  dm_call__c: @dm_call,
80
81
  down_payment__c: @property_down_payment,
@@ -113,7 +114,6 @@ module AFCSalesforce
113
114
  subject_property_state__c: @subject_property_state,
114
115
  type__c: @loan_type,
115
116
  va_eligible__c: @is_va_eligible,
116
- velo__status__c: @velo__status__c,
117
117
  working_with_realtor__c: @working_with_realtor,
118
118
  x1st_mortgage_balance__c: @first_mortgage_balance,
119
119
  x1st_mortgage_payment__c: @first_mortgage_payment,
@@ -37,6 +37,7 @@ module AFCSalesforce
37
37
  :broker_commission__c,
38
38
  :buyer_agency_date__c,
39
39
  :buyer_to_contract__c,
40
+ :call_status__c,
40
41
  :cap__c,
41
42
  :ccd_closed_date__c,
42
43
  :ccd_closed_lost_reason__c,
@@ -118,8 +119,8 @@ module AFCSalesforce
118
119
  :outside_financing__c,
119
120
  :outside_real_estate_company__c,
120
121
  :owner,
121
- :ownercell__c,
122
122
  :owner_from_original_lead__c,
123
+ :ownercell__c,
123
124
  :ownership,
124
125
  :parent,
125
126
  :pending_docs__c,
@@ -180,7 +181,6 @@ module AFCSalesforce
180
181
  :velo__salesforce_owner_name__c,
181
182
  :velo__salesforce_owner_profilename__c,
182
183
  :velo__salesforce_owner_role_name__c, :scanning_complete__c,
183
- :velo__status__c,
184
184
  :velo__time_zone__c,
185
185
  :velo_last_action_date__c,
186
186
  :velocify_owner__c,
@@ -309,6 +309,7 @@ module AFCSalesforce
309
309
  :"CNDForCredit__c" => @cndforcredit__c,
310
310
  :"CND_Date_Stamp__c" => @cnd_date_stamp__c,
311
311
  :"CSR__c" => @csr__c,
312
+ :"Call_Status__c" => @call_status__c,
312
313
  :"Client_Docs__c" => @client_docs__c,
313
314
  :"Close_Date_w_AHA__c" => @close_date_w_aha__c,
314
315
  :"ClosedGrossCommission__c" => @closedgrosscommission__c,
@@ -453,7 +454,6 @@ module AFCSalesforce
453
454
  :"Velo__Salesforce_Owner_Name__c" => @velo__salesforce_owner_name__c,
454
455
  :"Velo__Salesforce_Owner_ProfileName__c" => @velo__salesforce_owner_profilename__c,
455
456
  :"Velo__Salesforce_Owner_Role_Name__c" => @velo__salesforce_owner_role_name__c,
456
- :"Velo__Status__c" => @velo__status__c,
457
457
  :"Velo__Time_Zone__c" => @velo__time_zone__c,
458
458
  :"Velocify_Owner__c" => @velocify_owner__c,
459
459
  :"Website" => @website,
@@ -1,3 +1,3 @@
1
1
  module AFCSalesforce
2
- VERSION = "0.1.27"
2
+ VERSION = "0.1.28"
3
3
  end
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.27
4
+ version: 0.1.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Donavan White
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-18 00:00:00.000000000 Z
11
+ date: 2020-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -202,8 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
202
202
  - !ruby/object:Gem::Version
203
203
  version: '0'
204
204
  requirements: []
205
- rubyforge_project:
206
- rubygems_version: 2.6.11
205
+ rubygems_version: 3.1.2
207
206
  signing_key:
208
207
  specification_version: 4
209
208
  summary: Salesforce Library for the AFC Salesforce Instance