openstax_salesforce 7.2.0 → 7.3.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: 0c51d6255750102028c42d0f4fc0b288629646e3647076e12d7bef19994f7053
|
|
4
|
+
data.tar.gz: e5313901e98670efb227fc3017038a98ca18e37c12484433d8f95a3e0c53e709
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60658e903942414d7cfda0f22ea5e107f7dee50602fac914681ecf21966c326709417b5d30f9f1ab1d3af37bea3635a3c9887d11c5b731e42a603a43caa144fc
|
|
7
|
+
data.tar.gz: 2940b0eb8c75f9e923fd099febef9dead814c27bebfa58e0481f6f6d07caa30fb9e95b32b5962611e9580287bc2ea3f9e93cffcdd502795ed7caa94307c2a8d6
|
|
@@ -28,7 +28,7 @@ module OpenStax
|
|
|
28
28
|
field :title_1_school, from: 'Title_1_school__c', as: :boolean
|
|
29
29
|
field :accounts_uuid, from: 'Accounts_UUID__c'
|
|
30
30
|
field :lead_source, from: 'LeadSource'
|
|
31
|
-
field :signup_date,
|
|
31
|
+
field :signup_date, from: 'Signup_Date__c', as: :datetime
|
|
32
32
|
|
|
33
33
|
self.table_name = 'Contact'
|
|
34
34
|
end
|
|
@@ -47,7 +47,7 @@ module OpenStax
|
|
|
47
47
|
field :title_1_school, from: 'Title_1_school__c', as: :boolean
|
|
48
48
|
field :sheerid_school_name, from: 'SheerID_School_Name__c'
|
|
49
49
|
field :instant_conversion, from: 'Instant_Conversion__c', as: :boolean
|
|
50
|
-
field :signup_date,
|
|
50
|
+
field :signup_date, from: 'Signup_Date__c', as: :datetime
|
|
51
51
|
|
|
52
52
|
# These 2 fields both hold the Account (School) ID, but have different data types and uses in SF
|
|
53
53
|
field :account_id, from: 'Account_ID__c'
|
|
@@ -30,8 +30,8 @@ module OpenStax
|
|
|
30
30
|
field :number_of_students, from: 'Students__c'
|
|
31
31
|
field :student_number_status, from: 'Student_No_Status__c'
|
|
32
32
|
field :time_period, from: 'Time_Period__c'
|
|
33
|
-
field :class_start_date, from: 'Class_Start_Date__c',
|
|
34
|
-
field :renewal_class_start_date, from: 'CSDInput__c',
|
|
33
|
+
field :class_start_date, from: 'Class_Start_Date__c', as: :datetime
|
|
34
|
+
field :renewal_class_start_date, from: 'CSDInput__c', as: :datetime
|
|
35
35
|
field :school_id, from: 'AccountId'
|
|
36
36
|
field :book_id, from: 'Book__c'
|
|
37
37
|
field :contact_id, from: 'Contact__c'
|
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openstax_salesforce
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JP Slavinsky
|
|
8
8
|
- Dante Soares
|
|
9
9
|
- Michael Harrison
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-02
|
|
13
|
+
date: 2022-03-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rails
|
|
@@ -165,7 +165,7 @@ homepage: https://github.com/openstax/openstax_salesforce
|
|
|
165
165
|
licenses:
|
|
166
166
|
- MIT
|
|
167
167
|
metadata: {}
|
|
168
|
-
post_install_message:
|
|
168
|
+
post_install_message:
|
|
169
169
|
rdoc_options: []
|
|
170
170
|
require_paths:
|
|
171
171
|
- lib
|
|
@@ -180,8 +180,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
180
180
|
- !ruby/object:Gem::Version
|
|
181
181
|
version: '0'
|
|
182
182
|
requirements: []
|
|
183
|
-
rubygems_version: 3.2.
|
|
184
|
-
signing_key:
|
|
183
|
+
rubygems_version: 3.2.33
|
|
184
|
+
signing_key:
|
|
185
185
|
specification_version: 4
|
|
186
186
|
summary: Interface gem for accessing OpenStax's Salesforce instance
|
|
187
187
|
test_files: []
|