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: 4b309dbc0f894f58d2071e3213a6b28bcae2052202e1d8278dcd1791df894fc5
4
- data.tar.gz: fbc7c6ad009b43e63956730a597ed4700e7c21113a4dee58ce621aa629c25c44
3
+ metadata.gz: a79d8082d76d1c17877af2efa021e2005f36b3dc03b7e76905a58937d75adc51
4
+ data.tar.gz: 70ef82eee5c1f1cc02e6e3aa7f4c63ae209c6094449ba3873cffe889cbb15b6f
5
5
  SHA512:
6
- metadata.gz: f0d2d49b9025a1aa4410d952a20609a511a92330cb034c319939f9e58c0fab36daf3465f764184eb6f960ec00372e820871347efe4f6999dbec0944961424eee
7
- data.tar.gz: 1b7a1d36281555ae5574b6566fbcce617fab2ef0e8810728847293fc6dc571426237df7261b52eb0f1360eef52a7706d3975e3ce6adcb1f71f60e26c98e96ea0
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 :name, from: "Name"
7
- field :first_name, from: "FirstName"
8
- field :last_name, from: "LastName"
9
- field :email, from: "Email"
10
- field :email_alt, from: "Email_alt__c"
11
- field :faculty_confirmed_date, from: "Faculty_Confirmed_Date__c", as: :datetime
12
- field :faculty_verified, from: "Faculty_Verified__c"
13
- field :last_modified_at, from: "LastModifiedDate"
14
- field :school_id, from: "AccountId"
15
- field :school_type, from: "School_Type__c"
16
- field :send_faculty_verification_to, from: "SendFacultyVerificationTo__c"
17
- field :all_emails, from: "All_Emails__c"
18
- field :confirmed_emails, from: "Confirmed_Emails__c"
19
- field :adoption_status, from: "Adoption_Status__c"
20
- field :grant_tutor_access, from: "Grant_Tutor_Access__c", as: :boolean
21
- field :b_r_i_marketing, from: "BRI_Marketing__c", as: :boolean # Bill of Rights Institute (book) marketing
22
- field :title_1_school, from: "Title_1_school__c", as: :boolean
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 :name, from: "Name"
14
- field :first_name, from: "FirstName"
15
- field :last_name, from: "LastName"
16
- field :salutation, from: "Salutation"
17
- field :subject, from: "Subject__c"
18
- field :school, from: "Company"
19
- field :city, from: "City"
20
- field :state, from: "State"
21
- field :state_code, from: "StateCode"
22
- field :country, from: "Country"
23
- field :phone, from: "Phone"
24
- field :website, from: "Website"
25
- field :status, from: "Status"
26
- field :email, from: "Email"
27
- field :source, from: "LeadSource"
28
- field :newsletter, from: "Newsletter__c"
29
- field :newsletter_opt_in, from: "Newsletter_Opt_In__c"
30
- field :adoption_status, from: "Adoption_Status__c"
31
- field :num_students, from: "Number_of_Students__c"
32
- field :os_accounts_id, from: "OS_Accounts_ID__c"
33
- field :accounts_uuid, from: "accounts_uuid_c__c"
34
- field :application_source, from: "Application_Source__c"
35
- field :role, from: "Role__c"
36
- field :other_role_name, from: "other_role_name__c"
37
- field :who_chooses_books, from: "who_chooses_books__c"
38
- field :verification_status, from: "FV_Status__c"
39
- field :finalize_educator_signup, from: "FV_Final__c", as: :boolean
40
- field :needs_cs_review, from: "Needs_CS_Review__c", as: :boolean
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"
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'
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Salesforce
3
- VERSION = '5.3.0'
3
+ VERSION = '6.1.0'
4
4
  end
5
5
  end
@@ -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 ||= '37.0'
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: 5.3.0
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-04-07 00:00:00.000000000 Z
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.7
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