openstax_salesforce 6.3.0 → 6.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/openstax/salesforce/remote/school.rb +10 -9
- data/lib/openstax/salesforce/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2635171843c6b8901f9352a514eeadea2b74915ca5a207c03d4c39dbb5084182
|
4
|
+
data.tar.gz: a8af4c2b7b726e8f458023a3b8a2907fb417db1e3852d899867014d2e365c7ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fa6f1daff3c9bdbf37e86a2a6c947e7a1e6eae9f661dfc06989029d36c02a6d2ef142d4f12600c0dfd18b3c89f360c4404acb67196f35d5698347b61152f164
|
7
|
+
data.tar.gz: fe7ffea8d08eeb497612918fa81dfa78df58c9ac3bcbf5e01a6675283646657fc0063cb56000b09b6b5b3489b26817075f6fbf301cf6737386631bc0fcb08c46
|
@@ -1,14 +1,15 @@
|
|
1
1
|
module OpenStax::Salesforce::Remote
|
2
2
|
class School < ActiveForce::SObject
|
3
|
-
field :name,
|
4
|
-
field :city,
|
5
|
-
field :state,
|
6
|
-
field :country,
|
7
|
-
field :type,
|
8
|
-
field :school_location,
|
9
|
-
field :sheerid_school_name,
|
10
|
-
field :is_kip,
|
11
|
-
field :is_child_of_kip,
|
3
|
+
field :name, from: 'Name'
|
4
|
+
field :city, from: 'BillingCity'
|
5
|
+
field :state, from: 'BillingState'
|
6
|
+
field :country, from: 'BillingCountry'
|
7
|
+
field :type, from: 'Type'
|
8
|
+
field :school_location, from: 'School_Location__c'
|
9
|
+
field :sheerid_school_name, from: 'SheerID_School_Name__c'
|
10
|
+
field :is_kip, from: 'K_I_P__c', as: :boolean
|
11
|
+
field :is_child_of_kip, from: 'child_of_kip__c', as: :boolean
|
12
|
+
field :total_school_enrollment, from: 'Total_School_Enrollment__c', as: :integer
|
12
13
|
|
13
14
|
self.table_name = 'Account'
|
14
15
|
|
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: 6.
|
4
|
+
version: 6.4.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: 2022-
|
12
|
+
date: 2022-02-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|