openstax_salesforce 5.3.0 → 6.1.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: a79d8082d76d1c17877af2efa021e2005f36b3dc03b7e76905a58937d75adc51
|
4
|
+
data.tar.gz: 70ef82eee5c1f1cc02e6e3aa7f4c63ae209c6094449ba3873cffe889cbb15b6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7eb4d2f364bbc6f3b73b12f15220f3729786050602538c9781915a95294205f2280070d2f0e72c432d11b0c1867480ca2db82ef39937d2aeab828342806aa304
|
7
|
+
data.tar.gz: 4bf76ad35f6475d1b74b9b2369ed484c6b04a0c76553aeb5cde0300fd1f13f101afb141dc3de8752f6fb1c61ca7c261d76a9e358e421382af70501fb2eaddc51
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module OpenStax::Salesforce::Remote
|
2
|
+
class AccountContactRelation < ActiveForce::SObject
|
3
|
+
belongs_to :school, foreign_key: :school_id,
|
4
|
+
model: OpenStax::Salesforce::Remote::School
|
5
|
+
|
6
|
+
belongs_to :contact, foreign_key: :contact_id,
|
7
|
+
model: OpenStax::Salesforce::Remote::Contact
|
8
|
+
|
9
|
+
field :contact_id, from: 'ContactId'
|
10
|
+
field :primary, from: 'IsDirect', as: :boolean
|
11
|
+
field :school_id, from: 'AccountId'
|
12
|
+
|
13
|
+
self.table_name = 'AccountContactRelation'
|
14
|
+
end
|
15
|
+
end
|
@@ -3,23 +3,24 @@ module OpenStax::Salesforce::Remote
|
|
3
3
|
belongs_to :school, foreign_key: :school_id,
|
4
4
|
model: OpenStax::Salesforce::Remote::School
|
5
5
|
|
6
|
-
field :
|
7
|
-
field :
|
8
|
-
field :
|
9
|
-
field :
|
10
|
-
field :
|
11
|
-
field :
|
12
|
-
field :
|
13
|
-
field :
|
14
|
-
field :
|
15
|
-
field :
|
16
|
-
field :
|
17
|
-
field :
|
18
|
-
field :
|
19
|
-
field :
|
20
|
-
field :
|
21
|
-
field :
|
22
|
-
field :
|
6
|
+
field :id, from: 'Id'
|
7
|
+
field :name, from: 'Name'
|
8
|
+
field :first_name, from: 'FirstName'
|
9
|
+
field :last_name, from: 'LastName'
|
10
|
+
field :email, from: 'Email'
|
11
|
+
field :email_alt, from: 'Email_alt__c'
|
12
|
+
field :faculty_confirmed_date, from: 'Faculty_Confirmed_Date__c', as: :datetime
|
13
|
+
field :faculty_verified, from: 'FV_Status__c'
|
14
|
+
field :last_modified_at, from: 'LastModifiedDate'
|
15
|
+
field :school_id, from: 'AccountId'
|
16
|
+
field :school_type, from: 'School_Type__c'
|
17
|
+
field :send_faculty_verification_to, from: 'SendFacultyVerificationTo__c'
|
18
|
+
field :all_emails, from: 'All_Emails__c'
|
19
|
+
field :confirmed_emails, from: 'Confirmed_Emails__c'
|
20
|
+
field :adoption_status, from: 'Adoption_Status__c'
|
21
|
+
field :grant_tutor_access, from: 'Grant_Tutor_Access__c', as: :boolean
|
22
|
+
field :b_r_i_marketing, from: 'BRI_Marketing__c', as: :boolean # Bill of Rights Institute (book) marketing
|
23
|
+
field :title_1_school, from: 'Title_1_school__c', as: :boolean
|
23
24
|
|
24
25
|
self.table_name = 'Contact'
|
25
26
|
end
|
@@ -5,42 +5,43 @@ module OpenStax::Salesforce::Remote
|
|
5
5
|
pending_faculty
|
6
6
|
confirmed_faculty
|
7
7
|
rejected_faculty
|
8
|
-
no_faculty_info
|
9
8
|
].freeze
|
10
9
|
|
11
10
|
VALID_WHO_CHOOSES_BOOKS = %w[instructor committee coordinator].freeze
|
12
11
|
|
13
|
-
field :
|
14
|
-
field :
|
15
|
-
field :
|
16
|
-
field :
|
17
|
-
field :
|
18
|
-
field :
|
19
|
-
field :
|
20
|
-
field :
|
21
|
-
field :
|
22
|
-
field :
|
23
|
-
field :
|
24
|
-
field :
|
25
|
-
field :
|
26
|
-
field :
|
27
|
-
field :
|
28
|
-
field :
|
29
|
-
field :
|
30
|
-
field :
|
31
|
-
field :
|
32
|
-
field :
|
33
|
-
field :
|
34
|
-
field :
|
35
|
-
field :
|
36
|
-
field :
|
37
|
-
field :
|
38
|
-
field :
|
39
|
-
field :
|
40
|
-
field :
|
41
|
-
field :
|
42
|
-
field :
|
43
|
-
field :
|
12
|
+
field :id, from: 'Id'
|
13
|
+
field :name, from: 'Name'
|
14
|
+
field :first_name, from: 'FirstName'
|
15
|
+
field :last_name, from: 'LastName'
|
16
|
+
field :salutation, from: 'Salutation'
|
17
|
+
field :title, from: 'Title'
|
18
|
+
field :subject, from: 'Subject__c'
|
19
|
+
field :school, from: 'Company'
|
20
|
+
field :city, from: 'City'
|
21
|
+
field :state, from: 'State'
|
22
|
+
field :state_code, from: 'StateCode'
|
23
|
+
field :country, from: 'Country'
|
24
|
+
field :phone, from: 'Phone'
|
25
|
+
field :website, from: 'Website'
|
26
|
+
field :status, from: 'Status'
|
27
|
+
field :email, from: 'Email'
|
28
|
+
field :source, from: 'LeadSource'
|
29
|
+
field :newsletter, from: 'Newsletter__c'
|
30
|
+
field :newsletter_opt_in, from: 'Newsletter_Opt_In__c'
|
31
|
+
field :adoption_status, from: 'Adoption_Status__c'
|
32
|
+
field :adoption_json, from: 'AdoptionsJSON__c'
|
33
|
+
field :num_students, from: 'Number_of_Students__c'
|
34
|
+
field :os_accounts_id, from: 'Accounts_ID__c'
|
35
|
+
field :accounts_uuid, from: 'Accounts_UUID__c'
|
36
|
+
field :application_source, from: 'Application_Source__c'
|
37
|
+
field :role, from: 'Role__c'
|
38
|
+
field :position, from: 'Position__c'
|
39
|
+
field :who_chooses_books, from: 'who_chooses_books__c'
|
40
|
+
field :verification_status, from: 'FV_Status__c'
|
41
|
+
field :b_r_i_marketing, from: 'BRI_Marketing__c', as: :boolean # Bill of Rights Institute (book) marketing
|
42
|
+
field :title_1_school, from: 'Title_1_school__c', as: :boolean
|
43
|
+
field :sheerid_school_name, from: 'SheerID_School_Name__c'
|
44
|
+
field :instant_conversion, from: 'Instant_Conversion__c', as: :boolean
|
44
45
|
|
45
46
|
# These 2 fields both hold the Account (School) ID, but have different data types and uses in SF
|
46
47
|
field :account_id, from: 'Account_ID__c'
|
data/lib/openstax_salesforce.rb
CHANGED
@@ -15,6 +15,7 @@ require "openstax/salesforce/remote/contact"
|
|
15
15
|
require "openstax/salesforce/remote/lead"
|
16
16
|
require "openstax/salesforce/remote/campaign"
|
17
17
|
require "openstax/salesforce/remote/campaign_member"
|
18
|
+
require "openstax/salesforce/remote/account_contact_relation"
|
18
19
|
|
19
20
|
module OpenStax
|
20
21
|
module Salesforce
|
@@ -32,7 +33,7 @@ module OpenStax
|
|
32
33
|
attr_accessor :username, :password, :security_token, :consumer_key, :consumer_secret
|
33
34
|
|
34
35
|
def api_version
|
35
|
-
@api_version ||= '
|
36
|
+
@api_version ||= '51.0'
|
36
37
|
end
|
37
38
|
|
38
39
|
def login_domain
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openstax_salesforce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JP Slavinsky
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-
|
12
|
+
date: 2021-11-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -117,6 +117,7 @@ files:
|
|
117
117
|
- lib/openstax/salesforce/active_force.rb
|
118
118
|
- lib/openstax/salesforce/client.rb
|
119
119
|
- lib/openstax/salesforce/engine.rb
|
120
|
+
- lib/openstax/salesforce/remote/account_contact_relation.rb
|
120
121
|
- lib/openstax/salesforce/remote/book.rb
|
121
122
|
- lib/openstax/salesforce/remote/campaign.rb
|
122
123
|
- lib/openstax/salesforce/remote/campaign_member.rb
|
@@ -149,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
150
|
- !ruby/object:Gem::Version
|
150
151
|
version: '0'
|
151
152
|
requirements: []
|
152
|
-
rubygems_version: 3.2.
|
153
|
+
rubygems_version: 3.2.5
|
153
154
|
signing_key:
|
154
155
|
specification_version: 4
|
155
156
|
summary: Interface gem for accessing OpenStax's Salesforce instance
|