@lingk/sync 0.0.60 → 0.0.62
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.
- package/build/css/lightning.css +4 -0
- package/build/lightning.js +55 -21
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +22 -22
- package/build/lingk.js.map +1 -1
- package/build/main.js +70 -902
- package/build/main.js.map +1 -1
- package/build/reducer.js +2 -1
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/main.js
CHANGED
|
@@ -5514,12 +5514,17 @@ module.exports =
|
|
|
5514
5514
|
value: function addDefaultEntity(groupIndex, v, rscIndex, section) {
|
|
5515
5515
|
var _this3 = this;
|
|
5516
5516
|
|
|
5517
|
+
var resourceGroups = this.props.resourceGroups;
|
|
5518
|
+
|
|
5519
|
+
var group = resourceGroups[this.state.resourceGroupIndex];
|
|
5520
|
+
if (group.resources && group.resources.length > 0) {
|
|
5521
|
+
setTimeout(function () {
|
|
5522
|
+
var sel = [].concat(_toConsumableArray(_this3.state.selectedEntities));
|
|
5523
|
+
sel[_this3.state.resourceGroupIndex] = { name: v };
|
|
5524
|
+
_this3.setState({ selectedEntities: sel });
|
|
5525
|
+
}, 40);
|
|
5526
|
+
}
|
|
5517
5527
|
this.props.addDefaultEntity(groupIndex, v, rscIndex, section);
|
|
5518
|
-
setTimeout(function () {
|
|
5519
|
-
var sel = [].concat(_toConsumableArray(_this3.state.selectedEntities));
|
|
5520
|
-
sel[_this3.state.resourceGroupIndex] = { name: v };
|
|
5521
|
-
_this3.setState({ selectedEntities: sel });
|
|
5522
|
-
}, 40);
|
|
5523
5528
|
}
|
|
5524
5529
|
}, {
|
|
5525
5530
|
key: 'unPick',
|
|
@@ -16893,7 +16898,8 @@ module.exports =
|
|
|
16893
16898
|
/* 172 */,
|
|
16894
16899
|
/* 173 */,
|
|
16895
16900
|
/* 174 */,
|
|
16896
|
-
/* 175
|
|
16901
|
+
/* 175 */,
|
|
16902
|
+
/* 176 */
|
|
16897
16903
|
/***/ function(module, exports, __webpack_require__) {
|
|
16898
16904
|
|
|
16899
16905
|
'use strict';
|
|
@@ -17468,879 +17474,6 @@ module.exports =
|
|
|
17468
17474
|
}
|
|
17469
17475
|
}*/
|
|
17470
17476
|
|
|
17471
|
-
/***/ },
|
|
17472
|
-
/* 176 */
|
|
17473
|
-
/***/ function(module, exports) {
|
|
17474
|
-
|
|
17475
|
-
'use strict';
|
|
17476
|
-
|
|
17477
|
-
Object.defineProperty(exports, "__esModule", {
|
|
17478
|
-
value: true
|
|
17479
|
-
});
|
|
17480
|
-
var wizards = exports.wizards = {
|
|
17481
|
-
1: { // Banner to Salesforce
|
|
17482
|
-
title: 'Banner to Salesforce',
|
|
17483
|
-
sourceProvider: 'Banner',
|
|
17484
|
-
sourceProviderType: 'Banner',
|
|
17485
|
-
destinationProvider: 'Salesforce',
|
|
17486
|
-
destinationProviderType: 'Salesforce',
|
|
17487
|
-
customStep: {
|
|
17488
|
-
type: 'bannerAdapter',
|
|
17489
|
-
title: 'Banner Adapter'
|
|
17490
|
-
},
|
|
17491
|
-
deployment: {
|
|
17492
|
-
'once': 'Run Once',
|
|
17493
|
-
'scheduled': 'Timed Schedule'
|
|
17494
|
-
},
|
|
17495
|
-
sourceDefaultSchema: [{
|
|
17496
|
-
name: 'Staff',
|
|
17497
|
-
properties: [{ name: 'First Name' }, { name: 'Last Name' }, { name: 'External Id' }, { name: 'Birthdate' }, { name: 'Gender' }, { name: 'Institution External Id' }, { name: 'Suffix' }, { name: 'US Citizenship Status' }, { name: 'Highest Education Level Completed' }, { name: 'Identification System' }]
|
|
17498
|
-
}, {
|
|
17499
|
-
name: 'Student',
|
|
17500
|
-
properties: [{ name: 'First Name' }, { name: 'Last Name' }, { name: 'External Id' }, { name: 'Birthdate' }, { name: 'Gender' }, { name: 'Institution External Id' }, { name: 'Suffix' }, { name: 'US Citizenship Status' }, { name: 'Highest Education Level Completed' }, { name: 'Identification System' }]
|
|
17501
|
-
}, {
|
|
17502
|
-
name: 'Student Email',
|
|
17503
|
-
properties: [{ name: 'Student External Id' }, { name: 'Email Address' }, { name: 'Email Address Type' }, { name: 'Last Modified' }, { name: 'Is Primary' }]
|
|
17504
|
-
}, {
|
|
17505
|
-
name: 'Program',
|
|
17506
|
-
properties: [{ name: 'Capacity' }, { name: 'CurrentEnrollment' }, { name: 'Name' }, { name: 'Last Modified' }, { name: 'Length Hours' }, { name: 'External Id' }, { name: 'Classification Of Instructional Program Code' }, { name: 'Classification Of Instructional Program Version' }, { name: 'Length Hours Type' }, { name: 'Normal Length of Time for Completion' }, { name: 'Normal Length of Time for Completion Units' }, { name: 'Postsecondary Program Level' }]
|
|
17507
|
-
}, {
|
|
17508
|
-
name: 'Student Program',
|
|
17509
|
-
properties: [{ name: 'Last Modified' }, { name: 'Participation Start Date' }, { name: 'Participation Exit Date' }, { name: 'Student External Id' }, { name: 'Program External Id' }, { name: 'Program Participation Status' }, { name: 'Transfer Out Indicator' }, { name: 'Work Based Learning Opportunity Type' }, { name: 'Classification Of Instructional Program Use' }]
|
|
17510
|
-
}],
|
|
17511
|
-
/*sourceDefaultSchema: [
|
|
17512
|
-
{
|
|
17513
|
-
name: 'Staff',
|
|
17514
|
-
properties: {
|
|
17515
|
-
'Birthdate': true,
|
|
17516
|
-
'Last Modified': true,
|
|
17517
|
-
'Birthdate Verification': true,
|
|
17518
|
-
'Hispanic Latino Ethnicity': true,
|
|
17519
|
-
'External Id': true,
|
|
17520
|
-
'Prefix': true,
|
|
17521
|
-
'First Name': true,
|
|
17522
|
-
'Last Name': true,
|
|
17523
|
-
'Middle Name': true,
|
|
17524
|
-
'Other First Name': true,
|
|
17525
|
-
'Other Last Name': true,
|
|
17526
|
-
'Other Middle Name': true,
|
|
17527
|
-
'Other Name': true,
|
|
17528
|
-
'Other Name Type': true,
|
|
17529
|
-
'Suffix': true,
|
|
17530
|
-
'Gender': true,
|
|
17531
|
-
'US Citizenship Status': true,
|
|
17532
|
-
'Proof Of Residency Type': true,
|
|
17533
|
-
'State Of Residence': true,
|
|
17534
|
-
'Visa Type': true,
|
|
17535
|
-
'Highest Education Level Completed': true,
|
|
17536
|
-
'Identifier': true,
|
|
17537
|
-
'Identification System': true,
|
|
17538
|
-
'Personal Verification Identification Type': true,
|
|
17539
|
-
}
|
|
17540
|
-
},
|
|
17541
|
-
{
|
|
17542
|
-
name: 'Student',
|
|
17543
|
-
properties: {
|
|
17544
|
-
'Birthdate': true,
|
|
17545
|
-
'Birthdate Verification': true,
|
|
17546
|
-
'Last Modified': true,
|
|
17547
|
-
'Hispanic Latino Ethnicity': true,
|
|
17548
|
-
'Disability Status': true,
|
|
17549
|
-
'Gender': true,
|
|
17550
|
-
'US Citizenship Status': true,
|
|
17551
|
-
'Proof Of Residency Type': true,
|
|
17552
|
-
'External Id': true,
|
|
17553
|
-
'Prefix': true,
|
|
17554
|
-
'First Name': true,
|
|
17555
|
-
'Last Name': true,
|
|
17556
|
-
'Middle Name': true,
|
|
17557
|
-
'Other First Name': true,
|
|
17558
|
-
'Other Last Name': true,
|
|
17559
|
-
'Other Middle Name': true,
|
|
17560
|
-
'Other Name': true,
|
|
17561
|
-
'Other Name Type': true,
|
|
17562
|
-
'Suffix': true,
|
|
17563
|
-
'State Of Residence': true,
|
|
17564
|
-
'Visa Type': true,
|
|
17565
|
-
'Highest Education Level Completed': true,
|
|
17566
|
-
'Identifier': true,
|
|
17567
|
-
'Identification System': true,
|
|
17568
|
-
'Personal Verification Identification Type': true,
|
|
17569
|
-
'Accommodations Needed Type': true,
|
|
17570
|
-
'Disability ConditionStatus Type': true,
|
|
17571
|
-
'Disability Condition Type': true,
|
|
17572
|
-
'Disability Determination Source Type': true,
|
|
17573
|
-
'Primary Disability Type': true,
|
|
17574
|
-
}
|
|
17575
|
-
},
|
|
17576
|
-
{
|
|
17577
|
-
name:'Course',
|
|
17578
|
-
properties: {
|
|
17579
|
-
'Facility External Id': true,
|
|
17580
|
-
'Institution External Id': true,
|
|
17581
|
-
'Department External Id': true,
|
|
17582
|
-
'Last Modified': true,
|
|
17583
|
-
'NCAA Eligibility': true,
|
|
17584
|
-
'Instructional Minutes': true,
|
|
17585
|
-
'External Id': true,
|
|
17586
|
-
'Course Title': true,
|
|
17587
|
-
'Course Number': true,
|
|
17588
|
-
'Description': true,
|
|
17589
|
-
'Classification Of Instructional Program Code': true,
|
|
17590
|
-
'Credit Units Type': true,
|
|
17591
|
-
'Credit Value': true,
|
|
17592
|
-
'NCES College Course Map Code': true,
|
|
17593
|
-
'Certification Description': true,
|
|
17594
|
-
'Course Applicable Education Level': true,
|
|
17595
|
-
'Course Level Characteristics': true,
|
|
17596
|
-
'Credit Basis Type': true,
|
|
17597
|
-
'Credit Level Type': true,
|
|
17598
|
-
'Instruction Langauge': true,
|
|
17599
|
-
'Agency Course Identifier': true,
|
|
17600
|
-
'Original Course Identifier': true,
|
|
17601
|
-
'Override School Course Number': true,
|
|
17602
|
-
'Sequence Of Course': true,
|
|
17603
|
-
'Subject Abbreviation': true,
|
|
17604
|
-
}
|
|
17605
|
-
},
|
|
17606
|
-
{
|
|
17607
|
-
name:'Course Section',
|
|
17608
|
-
properties: {
|
|
17609
|
-
'Course Credit Value': true,
|
|
17610
|
-
'Time Required For Completion': true,
|
|
17611
|
-
'Last Modified': true,
|
|
17612
|
-
'Virtual Indicator': true,
|
|
17613
|
-
'Work Based Learning Opportunity Type': true,
|
|
17614
|
-
'Institution External Id': true,
|
|
17615
|
-
'Additional Credit Type': true,
|
|
17616
|
-
'Advanced Placement Course Code': true,
|
|
17617
|
-
'Class Beginning Time': true,
|
|
17618
|
-
'Class Ending Time': true,
|
|
17619
|
-
'Class Meeting Days': true,
|
|
17620
|
-
'Course Level Type': true,
|
|
17621
|
-
'Course Section Delivery Mode': true,
|
|
17622
|
-
'Credit Type Earned': true,
|
|
17623
|
-
'Honors Type': true,
|
|
17624
|
-
'Instruction Method': true,
|
|
17625
|
-
'Instruction Site Name': true,
|
|
17626
|
-
'Instruction Site Type': true,
|
|
17627
|
-
'Related Learning Standards': true,
|
|
17628
|
-
'Single Sex Class Status': true,
|
|
17629
|
-
'Class Period': true,
|
|
17630
|
-
'External Id': true,
|
|
17631
|
-
'Course Section Number': true,
|
|
17632
|
-
'Course External Id': true,
|
|
17633
|
-
'Calendar Session External Id': true,
|
|
17634
|
-
'Classification Of Instructional Program Code': true,
|
|
17635
|
-
'Time Day Identifier': true,
|
|
17636
|
-
'Developmental Education Type': true,
|
|
17637
|
-
'Grade Point Average Applicability': true,
|
|
17638
|
-
}
|
|
17639
|
-
},
|
|
17640
|
-
{
|
|
17641
|
-
name: 'Program',
|
|
17642
|
-
properties: {
|
|
17643
|
-
'Capacity': true,
|
|
17644
|
-
'CurrentEnrollment': true,
|
|
17645
|
-
'Name': true,
|
|
17646
|
-
'Last Modified': true,
|
|
17647
|
-
'Length Hours': true,
|
|
17648
|
-
'External Id': true,
|
|
17649
|
-
'Classification Of Instructional Program Code': true,
|
|
17650
|
-
'Classification Of Instructional Program Version': true,
|
|
17651
|
-
'Length Hours Type': true,
|
|
17652
|
-
'Normal Length of Time for Completion': true,
|
|
17653
|
-
'Normal Length of Time for Completion Units': true,
|
|
17654
|
-
'Postsecondary Program Level': true,
|
|
17655
|
-
}
|
|
17656
|
-
},
|
|
17657
|
-
{
|
|
17658
|
-
name:'Student Enrollment',
|
|
17659
|
-
properties: {
|
|
17660
|
-
'Entry Date Into Postsecondary': true,
|
|
17661
|
-
'Last Modified': true,
|
|
17662
|
-
'Postsecondary Entering Student Ind': true,
|
|
17663
|
-
'First Time Postsecondary Student': true,
|
|
17664
|
-
'Distance Education Program Enrollment Indicator': true,
|
|
17665
|
-
'Degree Or Certificate Seeking Student': true,
|
|
17666
|
-
'Instructional Activity Hours Attempted': true,
|
|
17667
|
-
'Student External Id': true,
|
|
17668
|
-
'Enrollment Type': true,
|
|
17669
|
-
'Student Level Id': true,
|
|
17670
|
-
'Initial Enrollment Term': true,
|
|
17671
|
-
'Term Enrollment Status': true,
|
|
17672
|
-
'Developmental Education Type': true,
|
|
17673
|
-
'Enrollment In Postsecondary Award Type': true,
|
|
17674
|
-
'Developmental Education Referral Status': true,
|
|
17675
|
-
'Directory Information Block Status': true,
|
|
17676
|
-
'Enrollment Award Type': true,
|
|
17677
|
-
'Instructional Activity Hours Type': true,
|
|
17678
|
-
'Transfer Ready': true,
|
|
17679
|
-
}
|
|
17680
|
-
},
|
|
17681
|
-
{
|
|
17682
|
-
name: 'Student Program',
|
|
17683
|
-
properties: {
|
|
17684
|
-
'Last Modified': true,
|
|
17685
|
-
'Participation Start Date': true,
|
|
17686
|
-
'Participation Exit Date': true,
|
|
17687
|
-
'Student External Id': true,
|
|
17688
|
-
'Program External Id': true,
|
|
17689
|
-
'Program Participation Status': true,
|
|
17690
|
-
'Transfer Out Indicator': true,
|
|
17691
|
-
'Work Based Learning Opportunity Type': true,
|
|
17692
|
-
'Classification Of Instructional Program Use': true,
|
|
17693
|
-
}
|
|
17694
|
-
},
|
|
17695
|
-
{
|
|
17696
|
-
name: 'Institution',
|
|
17697
|
-
properties: {
|
|
17698
|
-
'Virtual Indicator': true,
|
|
17699
|
-
'External Id': true,
|
|
17700
|
-
'Name': true,
|
|
17701
|
-
'Carnegie Basic Classification': true,
|
|
17702
|
-
'Control Of Institution': true,
|
|
17703
|
-
'Level Of Institution': true,
|
|
17704
|
-
'Predominant Calendar System': true,
|
|
17705
|
-
}
|
|
17706
|
-
},
|
|
17707
|
-
{
|
|
17708
|
-
name: 'Learner Action',
|
|
17709
|
-
properties: {
|
|
17710
|
-
'Performed At': true,
|
|
17711
|
-
'Last Modified': true,
|
|
17712
|
-
'Learner Action Guid': true,
|
|
17713
|
-
'Actor Id': true,
|
|
17714
|
-
'Student External Id': true,
|
|
17715
|
-
'Object Description': true,
|
|
17716
|
-
'Object Id': true,
|
|
17717
|
-
'Object Type': true,
|
|
17718
|
-
'Action Type': true,
|
|
17719
|
-
'Value': true,
|
|
17720
|
-
}
|
|
17721
|
-
},
|
|
17722
|
-
{
|
|
17723
|
-
name: 'Student Email',
|
|
17724
|
-
properties: {
|
|
17725
|
-
'Student External Id': true,
|
|
17726
|
-
'Email Address': true,
|
|
17727
|
-
'Email Address Type': true,
|
|
17728
|
-
'Last Modified': true,
|
|
17729
|
-
'Is Primary': true,
|
|
17730
|
-
}
|
|
17731
|
-
},
|
|
17732
|
-
{
|
|
17733
|
-
name: 'Student Address',
|
|
17734
|
-
properties: {
|
|
17735
|
-
'Student External Id': true,
|
|
17736
|
-
'Last Modified': true,
|
|
17737
|
-
'Is Primary': true,
|
|
17738
|
-
'Street Number And Name': true,
|
|
17739
|
-
'Apartment Room Or Suite Number': true,
|
|
17740
|
-
'City': true,
|
|
17741
|
-
'State': true,
|
|
17742
|
-
'Postal Code': true,
|
|
17743
|
-
'County': true,
|
|
17744
|
-
'Country Code': true,
|
|
17745
|
-
'Latitude': true,
|
|
17746
|
-
'Longitude': true,
|
|
17747
|
-
'Personal Verification Identification Type': true,
|
|
17748
|
-
'Address Type': true,
|
|
17749
|
-
}
|
|
17750
|
-
},
|
|
17751
|
-
{
|
|
17752
|
-
name: 'Student Telephone',
|
|
17753
|
-
properties: {
|
|
17754
|
-
'Last Modified': true,
|
|
17755
|
-
'Is Primary': true,
|
|
17756
|
-
'Student External Id': true,
|
|
17757
|
-
'Telephone Number Type': true,
|
|
17758
|
-
'Telephone Number': true
|
|
17759
|
-
}
|
|
17760
|
-
},
|
|
17761
|
-
{
|
|
17762
|
-
name: 'Student Section',
|
|
17763
|
-
properties: {
|
|
17764
|
-
'Course Add Date': true,
|
|
17765
|
-
'Course Drop Date': true,
|
|
17766
|
-
'Last Modified': true,
|
|
17767
|
-
'Degree Applicability': true,
|
|
17768
|
-
'Number Of Credits Earned': true,
|
|
17769
|
-
'Quality Points Earned': true,
|
|
17770
|
-
'Student External Id': true,
|
|
17771
|
-
'Course Section External Id': true,
|
|
17772
|
-
'Academic Grade Scale Code': true,
|
|
17773
|
-
'Course Repeat Code': true,
|
|
17774
|
-
'Academic Grade': true,
|
|
17775
|
-
'Academic Grade Status Code': true,
|
|
17776
|
-
'Course Override School': true,
|
|
17777
|
-
'Enrollment Guid': true,
|
|
17778
|
-
'Grade Narrative': true,
|
|
17779
|
-
'Narrative Explanation Grade': true,
|
|
17780
|
-
}
|
|
17781
|
-
},
|
|
17782
|
-
{
|
|
17783
|
-
name: 'Staff Email',
|
|
17784
|
-
properties: {
|
|
17785
|
-
'Last Modified': true,
|
|
17786
|
-
'Is Primary': true,
|
|
17787
|
-
'Staff External Id': true,
|
|
17788
|
-
'Email Address': true,
|
|
17789
|
-
'Email Address Type': true,
|
|
17790
|
-
}
|
|
17791
|
-
},
|
|
17792
|
-
{
|
|
17793
|
-
name: 'Staff Address',
|
|
17794
|
-
properties: {
|
|
17795
|
-
'Last Modified': true,
|
|
17796
|
-
'Is Primary': true,
|
|
17797
|
-
'Staff External Id': true,
|
|
17798
|
-
'Street Number And Name': true,
|
|
17799
|
-
'Apartment Room Or Suite Number': true,
|
|
17800
|
-
'City': true,
|
|
17801
|
-
'State': true,
|
|
17802
|
-
'Postal Code': true,
|
|
17803
|
-
'County': true,
|
|
17804
|
-
'Country Code': true,
|
|
17805
|
-
'Latitude': true,
|
|
17806
|
-
'Longitude': true,
|
|
17807
|
-
'Personal Verification Identification Type': true,
|
|
17808
|
-
'Address Type': true,
|
|
17809
|
-
}
|
|
17810
|
-
},
|
|
17811
|
-
{
|
|
17812
|
-
name: 'Staff Telephone',
|
|
17813
|
-
properties: {
|
|
17814
|
-
'Last Modified': true,
|
|
17815
|
-
'Is Primary': true,
|
|
17816
|
-
'Staff External Id': true,
|
|
17817
|
-
'Telephone Number Type': true,
|
|
17818
|
-
'Telephone Number': true,
|
|
17819
|
-
}
|
|
17820
|
-
},
|
|
17821
|
-
{
|
|
17822
|
-
name: 'Calendar Session',
|
|
17823
|
-
properties: {
|
|
17824
|
-
'Begin Date': true,
|
|
17825
|
-
'End Date': true,
|
|
17826
|
-
'First Instruction Date': true,
|
|
17827
|
-
'Last Instruction Date': true,
|
|
17828
|
-
'Last Modified': true,
|
|
17829
|
-
'Marking Term Indicator': true,
|
|
17830
|
-
'Instructional Minutes': true,
|
|
17831
|
-
'Days In Session': true,
|
|
17832
|
-
'Minutes Per Day': true,
|
|
17833
|
-
'External Id': true,
|
|
17834
|
-
'Designator': true,
|
|
17835
|
-
'Description': true,
|
|
17836
|
-
'Session Type': true,
|
|
17837
|
-
'Scheduling Term Indicator': true,
|
|
17838
|
-
'Attendance Term Indicator': true,
|
|
17839
|
-
'Session Start Time': true,
|
|
17840
|
-
'Session End Time': true,
|
|
17841
|
-
}
|
|
17842
|
-
},
|
|
17843
|
-
{
|
|
17844
|
-
name: 'Student Authentication',
|
|
17845
|
-
properties: {
|
|
17846
|
-
'Identity Provider Name': true,
|
|
17847
|
-
'Identity Provider Uri': true,
|
|
17848
|
-
'Start Date': true,
|
|
17849
|
-
'End Date': true,
|
|
17850
|
-
'Last Modified': true,
|
|
17851
|
-
'Login Identifier': true,
|
|
17852
|
-
'External Id': true,
|
|
17853
|
-
'Student External Id': true,
|
|
17854
|
-
}
|
|
17855
|
-
},
|
|
17856
|
-
{
|
|
17857
|
-
name: 'Section Instructor',
|
|
17858
|
-
properties: {
|
|
17859
|
-
'Last Modified': true,
|
|
17860
|
-
'Course Section External Id': true,
|
|
17861
|
-
'Staff External Id': true,
|
|
17862
|
-
}
|
|
17863
|
-
},
|
|
17864
|
-
{
|
|
17865
|
-
name: 'Staff Authentication',
|
|
17866
|
-
properties: {
|
|
17867
|
-
'Start Date': true,
|
|
17868
|
-
'End Date': true,
|
|
17869
|
-
'Last Modified': true,
|
|
17870
|
-
'External Id': true,
|
|
17871
|
-
'Staff External Id': true,
|
|
17872
|
-
'Identity Provider Name': true,
|
|
17873
|
-
'Identity Provider Uri': true,
|
|
17874
|
-
'Login Identifier': true,
|
|
17875
|
-
}
|
|
17876
|
-
},
|
|
17877
|
-
{
|
|
17878
|
-
name: 'Department',
|
|
17879
|
-
properties: {
|
|
17880
|
-
'External Id': true,
|
|
17881
|
-
'Name': true,
|
|
17882
|
-
'Short Name': true,
|
|
17883
|
-
'Last Modified': true,
|
|
17884
|
-
}
|
|
17885
|
-
},
|
|
17886
|
-
{
|
|
17887
|
-
name: 'Course Section Schedule',
|
|
17888
|
-
properties: {
|
|
17889
|
-
'External Id': true,
|
|
17890
|
-
'Course Section External ID': true,
|
|
17891
|
-
'Class Beginning Time': true,
|
|
17892
|
-
'Class Ending Time': true,
|
|
17893
|
-
'Class Meeting Days': true,
|
|
17894
|
-
'Instruction Site Name': true,
|
|
17895
|
-
'Instruction Site Type': true,
|
|
17896
|
-
'Time Day Identifier': true,
|
|
17897
|
-
'Last Modified': true,
|
|
17898
|
-
'Class Period': true,
|
|
17899
|
-
'Instruction Method': true,
|
|
17900
|
-
}
|
|
17901
|
-
},
|
|
17902
|
-
{
|
|
17903
|
-
name: 'Facility',
|
|
17904
|
-
properties: {
|
|
17905
|
-
'External Id': true,
|
|
17906
|
-
'Identifier': true,
|
|
17907
|
-
'Building Name': true,
|
|
17908
|
-
'Space Description': true,
|
|
17909
|
-
'Space Use Type': true,
|
|
17910
|
-
'Binlding Site Number': true,
|
|
17911
|
-
'Building Use Type': true,
|
|
17912
|
-
'Last Modified': true,
|
|
17913
|
-
}
|
|
17914
|
-
}
|
|
17915
|
-
],*/
|
|
17916
|
-
destinationDefaultSchema: [{
|
|
17917
|
-
name: 'Account',
|
|
17918
|
-
properties: {
|
|
17919
|
-
'Account Description': true,
|
|
17920
|
-
'Account Fax': true,
|
|
17921
|
-
'Account ID': true,
|
|
17922
|
-
'Account Name': true,
|
|
17923
|
-
'Account Phone': true,
|
|
17924
|
-
'Account Source': true,
|
|
17925
|
-
'Account Type': true,
|
|
17926
|
-
'Annual Revenue': true,
|
|
17927
|
-
'Billing Address': true,
|
|
17928
|
-
'Billing City': true,
|
|
17929
|
-
'Billing Country': true,
|
|
17930
|
-
'Billing Geocode Accuracy': true,
|
|
17931
|
-
'Billing Latitude': true,
|
|
17932
|
-
'Billing Longitude': true,
|
|
17933
|
-
'Billing State/Province': true,
|
|
17934
|
-
'Billing Street': true,
|
|
17935
|
-
'Billing Zip/Postal Code': true,
|
|
17936
|
-
'Created By ID': true,
|
|
17937
|
-
'Created Date': true,
|
|
17938
|
-
'Current Address': true,
|
|
17939
|
-
'Customer Portal Account': true,
|
|
17940
|
-
'Deleted': true,
|
|
17941
|
-
'Employees': true,
|
|
17942
|
-
'Industry': true,
|
|
17943
|
-
'Jigsaw Company ID': true,
|
|
17944
|
-
'Last Activity': true,
|
|
17945
|
-
'Last Modified By ID': true,
|
|
17946
|
-
'Last Modified Date': true,
|
|
17947
|
-
'Last Referenced Date': true,
|
|
17948
|
-
'Last Viewed Date': true,
|
|
17949
|
-
'Master Record ID': true,
|
|
17950
|
-
'Owner ID': true,
|
|
17951
|
-
'Parent Account ID': true,
|
|
17952
|
-
'Photo URL': true,
|
|
17953
|
-
'Record Type ID': true,
|
|
17954
|
-
'Shipping Address': true,
|
|
17955
|
-
'Shipping City': true,
|
|
17956
|
-
'Shipping Country': true,
|
|
17957
|
-
'Shipping Geocode Accuracy': true,
|
|
17958
|
-
'Shipping Latitude': true,
|
|
17959
|
-
'Shipping Longitude': true,
|
|
17960
|
-
'Shipping State/Province': true,
|
|
17961
|
-
'Shipping Street': true,
|
|
17962
|
-
'Shipping Zip/Postal Code': true,
|
|
17963
|
-
'SIC Description': true,
|
|
17964
|
-
'System Modstamp': true,
|
|
17965
|
-
'Website': true
|
|
17966
|
-
}
|
|
17967
|
-
}, {
|
|
17968
|
-
name: 'Contact',
|
|
17969
|
-
properties: {
|
|
17970
|
-
'Alternate Email': true,
|
|
17971
|
-
"Assistant Name": true,
|
|
17972
|
-
"Assistant Phone": true,
|
|
17973
|
-
'Birthdate': true,
|
|
17974
|
-
'Business Fax': true,
|
|
17975
|
-
'Business Phone': true,
|
|
17976
|
-
'Citizenship': true,
|
|
17977
|
-
'Contact Description': true,
|
|
17978
|
-
'Contact ID': true,
|
|
17979
|
-
'Country of Origin': true,
|
|
17980
|
-
'Created By ID': true,
|
|
17981
|
-
'Created Date': true,
|
|
17982
|
-
'Current Address': true,
|
|
17983
|
-
'Deceased': true,
|
|
17984
|
-
'Deleted': true,
|
|
17985
|
-
'Department': true,
|
|
17986
|
-
'Do Not Automatically Update': true,
|
|
17987
|
-
'Do Not Call': true,
|
|
17988
|
-
'Do Not Contact': true,
|
|
17989
|
-
'Email': true,
|
|
17990
|
-
'Email Bounced Date': true,
|
|
17991
|
-
'Email Bounced Reason': true,
|
|
17992
|
-
'Email Opt Out': true,
|
|
17993
|
-
'Ethnicity': true,
|
|
17994
|
-
'Exclude from Household Formal Greeting': true,
|
|
17995
|
-
'Exclude from Household Informal Greeting': true,
|
|
17996
|
-
'Exclude from Household Name': true,
|
|
17997
|
-
'Fax Opt Out': true,
|
|
17998
|
-
'FERPA': true,
|
|
17999
|
-
'Financial Aid Applicant': true,
|
|
18000
|
-
'First Name': true,
|
|
18001
|
-
'Full Name': true,
|
|
18002
|
-
'Gender': true,
|
|
18003
|
-
'HIPAA': true,
|
|
18004
|
-
'HIPAA Detail': true,
|
|
18005
|
-
'Home Phone': true,
|
|
18006
|
-
'Is Email Bounced': true,
|
|
18007
|
-
'Jigsaw Contact ID': true,
|
|
18008
|
-
'Last Activity': true,
|
|
18009
|
-
'Last Modified By ID': true,
|
|
18010
|
-
'Last Name': true,
|
|
18011
|
-
'Last Referenced Date': true,
|
|
18012
|
-
'Last Stay-in-Touch Request Date': true,
|
|
18013
|
-
'Last Stay-in-Touch Save Date': true,
|
|
18014
|
-
'Last Viewed Date': true,
|
|
18015
|
-
'Lead Source': true,
|
|
18016
|
-
'Mailing Address': true,
|
|
18017
|
-
'Mailing City': true,
|
|
18018
|
-
'Mailing Country': true,
|
|
18019
|
-
'Mailing Geocode Accuracy': true,
|
|
18020
|
-
'Mailing Latitude': true,
|
|
18021
|
-
'Mailing Longitude': true,
|
|
18022
|
-
'Mailing State/Province': true,
|
|
18023
|
-
'Mailing Street': true,
|
|
18024
|
-
'Mailing Zip/Postal Code': true,
|
|
18025
|
-
'Master Record ID': true,
|
|
18026
|
-
'Military Background': true,
|
|
18027
|
-
'Military Service': true,
|
|
18028
|
-
'Mobile Phone': true,
|
|
18029
|
-
'Naming Exclusions': true,
|
|
18030
|
-
'Other Address': true,
|
|
18031
|
-
'Other City': true,
|
|
18032
|
-
'Other Country': true,
|
|
18033
|
-
'Other Geocode Accuracy': true,
|
|
18034
|
-
'Other Latitude': true,
|
|
18035
|
-
'Other Longitude': true,
|
|
18036
|
-
'Other Phone': true,
|
|
18037
|
-
'Other State/Province': true,
|
|
18038
|
-
'Other Street': true,
|
|
18039
|
-
'Other Zip/Postal Code': true,
|
|
18040
|
-
'Owner ID': true,
|
|
18041
|
-
'Photo URL': true,
|
|
18042
|
-
'Preferred Email': true,
|
|
18043
|
-
'Preferred Phone': true,
|
|
18044
|
-
'Primary Address Type': true,
|
|
18045
|
-
'Primary Business Organization': true,
|
|
18046
|
-
'Primary Household': true,
|
|
18047
|
-
'Religion': true,
|
|
18048
|
-
'Reports To ID': true,
|
|
18049
|
-
'Salutation': true,
|
|
18050
|
-
'Secondary Address Type': true,
|
|
18051
|
-
'Social Security Number': true,
|
|
18052
|
-
'System Modstamp': true,
|
|
18053
|
-
'Title': true,
|
|
18054
|
-
'University Email': true,
|
|
18055
|
-
'Work Address': true,
|
|
18056
|
-
'Work Email': true,
|
|
18057
|
-
'Work Phone': true
|
|
18058
|
-
}
|
|
18059
|
-
}, {
|
|
18060
|
-
name: 'Affiliation',
|
|
18061
|
-
properties: {
|
|
18062
|
-
'Affiliation Key': true,
|
|
18063
|
-
'Affiliation Type': true,
|
|
18064
|
-
'Contact': true,
|
|
18065
|
-
'Created By ID': true,
|
|
18066
|
-
'Created Date': true,
|
|
18067
|
-
'Deleted': true,
|
|
18068
|
-
'Description': true,
|
|
18069
|
-
'End Date': true,
|
|
18070
|
-
'Last Modified By ID': true,
|
|
18071
|
-
'Last Modified Date': true,
|
|
18072
|
-
'Last Referenced Date': true,
|
|
18073
|
-
'Last Viewed Date': true,
|
|
18074
|
-
'Organization': true,
|
|
18075
|
-
'Owner ID': true,
|
|
18076
|
-
'Primary': true,
|
|
18077
|
-
'Record ID': true,
|
|
18078
|
-
'Role': true,
|
|
18079
|
-
'Start Date': true,
|
|
18080
|
-
'Status': true,
|
|
18081
|
-
'System Modstamp': true
|
|
18082
|
-
}
|
|
18083
|
-
}, {
|
|
18084
|
-
name: 'Address',
|
|
18085
|
-
properties: {
|
|
18086
|
-
'Address': true,
|
|
18087
|
-
'Address Type': true,
|
|
18088
|
-
'Created By ID': true,
|
|
18089
|
-
'Created Date': true,
|
|
18090
|
-
'Default Address': true,
|
|
18091
|
-
'Deleted': true,
|
|
18092
|
-
'Geolocation': true,
|
|
18093
|
-
'Geolocation (Latitude)': true,
|
|
18094
|
-
'Geolocation (Longitude)': true,
|
|
18095
|
-
'Last Modified By ID': true,
|
|
18096
|
-
'Last Modified Date': true,
|
|
18097
|
-
'Last Referenced Date': true,
|
|
18098
|
-
'Last Viewed Date': true,
|
|
18099
|
-
'Latest End Date': true,
|
|
18100
|
-
'Latest Start Date': true,
|
|
18101
|
-
'Mailing Address': true,
|
|
18102
|
-
'Mailing City': true,
|
|
18103
|
-
'Mailing Country': true,
|
|
18104
|
-
'Mailing State': true,
|
|
18105
|
-
'Mailing Street': true,
|
|
18106
|
-
'Mailing Street2': true,
|
|
18107
|
-
'Mailing Street Address': true,
|
|
18108
|
-
'Mailing Postal Code': true,
|
|
18109
|
-
'Owner': true,
|
|
18110
|
-
'Parent Account': true,
|
|
18111
|
-
'Parent Contact': true,
|
|
18112
|
-
'Record ID': true,
|
|
18113
|
-
'Seasonal End Day': true,
|
|
18114
|
-
'Seasonal End Month': true,
|
|
18115
|
-
'Seasonal End Year': true,
|
|
18116
|
-
'Seasonal Start Day': true,
|
|
18117
|
-
'Seasonal Start Month': true,
|
|
18118
|
-
'Seasonal Start Year': true,
|
|
18119
|
-
'System Modstamp': true
|
|
18120
|
-
}
|
|
18121
|
-
}, {
|
|
18122
|
-
name: 'Course',
|
|
18123
|
-
properties: {
|
|
18124
|
-
'Course ID': true,
|
|
18125
|
-
'Name': true,
|
|
18126
|
-
'Created By ID': true,
|
|
18127
|
-
'Created Date': true,
|
|
18128
|
-
'Credit Hours': true,
|
|
18129
|
-
'Deleted': true,
|
|
18130
|
-
'Department': true,
|
|
18131
|
-
'Description': true,
|
|
18132
|
-
'Last Modified By ID': true,
|
|
18133
|
-
'Last Modified Date': true,
|
|
18134
|
-
'Last Referenced Date': true,
|
|
18135
|
-
'Last Viewed Date': true,
|
|
18136
|
-
'Record ID': true,
|
|
18137
|
-
'System Modstamp': true
|
|
18138
|
-
}
|
|
18139
|
-
}, {
|
|
18140
|
-
name: 'Course Connection',
|
|
18141
|
-
properties: {
|
|
18142
|
-
'Affiliation': true,
|
|
18143
|
-
'Contact': true,
|
|
18144
|
-
"Contact Academic Program": true,
|
|
18145
|
-
'Course Connection ID': true,
|
|
18146
|
-
'Course Offering ID': true,
|
|
18147
|
-
'Created By ID': true,
|
|
18148
|
-
'Created Date': true,
|
|
18149
|
-
'Credits Attempted': true,
|
|
18150
|
-
'Credits Earned': true,
|
|
18151
|
-
'Deleted': true,
|
|
18152
|
-
'Grade': true,
|
|
18153
|
-
'Last Modified By ID': true,
|
|
18154
|
-
'Last Modified Date': true,
|
|
18155
|
-
'Last Referenced Date': true,
|
|
18156
|
-
'Last Viewed Date': true,
|
|
18157
|
-
'Owner': true,
|
|
18158
|
-
'Primary': true,
|
|
18159
|
-
'Program Enrollment ID': true,
|
|
18160
|
-
'Record ID': true,
|
|
18161
|
-
'Record Type ID': true,
|
|
18162
|
-
'Status': true,
|
|
18163
|
-
'System Modstamp': true
|
|
18164
|
-
}
|
|
18165
|
-
}, {
|
|
18166
|
-
name: 'Course Offering',
|
|
18167
|
-
properties: {
|
|
18168
|
-
'Capacity': true,
|
|
18169
|
-
'Course': true,
|
|
18170
|
-
'Course Offering ID': true,
|
|
18171
|
-
'Created By ID': true,
|
|
18172
|
-
'Created Date': true,
|
|
18173
|
-
'Deleted': true,
|
|
18174
|
-
'End Date': true,
|
|
18175
|
-
'Last Modified By ID': true,
|
|
18176
|
-
'Last Modified Date': true,
|
|
18177
|
-
'Last Referenced Date': true,
|
|
18178
|
-
'Last Viewed Date': true,
|
|
18179
|
-
'Primary Faculty': true,
|
|
18180
|
-
'Record ID': true,
|
|
18181
|
-
'Section ID': true,
|
|
18182
|
-
'Start Date': true,
|
|
18183
|
-
'System Modstamp': true,
|
|
18184
|
-
'Term': true
|
|
18185
|
-
}
|
|
18186
|
-
}, {
|
|
18187
|
-
name: 'Program Enrollment',
|
|
18188
|
-
properties: {
|
|
18189
|
-
'Admission Date': true,
|
|
18190
|
-
'Affiliation': true,
|
|
18191
|
-
'Application Submitted Date': true,
|
|
18192
|
-
'Class Standing': true,
|
|
18193
|
-
'Class Year': true,
|
|
18194
|
-
'Contact': true,
|
|
18195
|
-
'Created By ID': true,
|
|
18196
|
-
'Created Date': true,
|
|
18197
|
-
'Credits Attempted': true,
|
|
18198
|
-
'Credits Earned': true,
|
|
18199
|
-
'Deleted': true,
|
|
18200
|
-
'Eligible to Enroll': true,
|
|
18201
|
-
'End Date': true,
|
|
18202
|
-
'Enrollment Status': true,
|
|
18203
|
-
'GPA': true,
|
|
18204
|
-
'Last Modified By ID': true,
|
|
18205
|
-
'Last Modified Date': true,
|
|
18206
|
-
'Last Referenced Date': true,
|
|
18207
|
-
'Last Viewed Date': true,
|
|
18208
|
-
'Owner ID': true,
|
|
18209
|
-
'Program': true,
|
|
18210
|
-
'Program Enrollment ID': true,
|
|
18211
|
-
'Record ID': true,
|
|
18212
|
-
'Start Date': true,
|
|
18213
|
-
'System Modstamp': true
|
|
18214
|
-
}
|
|
18215
|
-
}, {
|
|
18216
|
-
name: 'Relationship',
|
|
18217
|
-
properties: {
|
|
18218
|
-
'Contact': true,
|
|
18219
|
-
'Created By ID': true,
|
|
18220
|
-
'Created Date': true,
|
|
18221
|
-
'Deleted': true,
|
|
18222
|
-
'Description': true,
|
|
18223
|
-
'Emergency Contact': true,
|
|
18224
|
-
'Last Modified By ID': true,
|
|
18225
|
-
'Last Modified Date': true,
|
|
18226
|
-
'Last Referenced Date': true,
|
|
18227
|
-
'Last Viewed Date': true,
|
|
18228
|
-
'Owner ID': true,
|
|
18229
|
-
'Reciprocal Relationship': true,
|
|
18230
|
-
'Record ID': true,
|
|
18231
|
-
'Related Contact': true,
|
|
18232
|
-
'Relationship Explanation': true,
|
|
18233
|
-
'Relationship Key': true,
|
|
18234
|
-
'Status': true,
|
|
18235
|
-
'System Modstamp': true,
|
|
18236
|
-
'Type': true
|
|
18237
|
-
}
|
|
18238
|
-
}, {
|
|
18239
|
-
name: 'Term',
|
|
18240
|
-
properties: {
|
|
18241
|
-
'Account': true,
|
|
18242
|
-
'Created By ID': true,
|
|
18243
|
-
'Created Date': true,
|
|
18244
|
-
'Deleted': true,
|
|
18245
|
-
'End Date': true,
|
|
18246
|
-
'Last Modified By ID': true,
|
|
18247
|
-
'Last Modified Date': true,
|
|
18248
|
-
'Last Referenced Date': true,
|
|
18249
|
-
'Last Viewed Date': true,
|
|
18250
|
-
'Record ID': true,
|
|
18251
|
-
'Start Date': true,
|
|
18252
|
-
'System Modstamp': true,
|
|
18253
|
-
'Term Name': true
|
|
18254
|
-
}
|
|
18255
|
-
}],
|
|
18256
|
-
autoMapData: {
|
|
18257
|
-
'Student.First Name': 'Contact.First Name',
|
|
18258
|
-
'Student.Last Name': 'Contact.Last Name',
|
|
18259
|
-
'Student.Gender': 'Contact.Gender',
|
|
18260
|
-
'Student.Birthdate': 'Contact.Birthdate',
|
|
18261
|
-
'Student Telephone.Telephone Number': 'Contact.Preferred Phone',
|
|
18262
|
-
'Student Email.Email Address': 'Contact.Email',
|
|
18263
|
-
'Student Address.Student External Id': 'Address.Owner',
|
|
18264
|
-
'Student Address.City': 'Address.Mailing City',
|
|
18265
|
-
'Student Address.State': 'Address.Mailing State',
|
|
18266
|
-
'Student Address.Postal Code': 'Address.Mailing Postal Code',
|
|
18267
|
-
'Student Address.County': 'Address.Mailing Country',
|
|
18268
|
-
'Staff.First Name': 'Contact.First Name',
|
|
18269
|
-
'Staff.Last Name': 'Contact.Last Name',
|
|
18270
|
-
'Staff.Gender': 'Contact.Gender',
|
|
18271
|
-
'Staff.Birthdate': 'Contact.Birthdate',
|
|
18272
|
-
'Staff Telephone.Telephone Number': 'Contact.Preferred Phone',
|
|
18273
|
-
'Staff Email.Email Address': 'Contact.Email',
|
|
18274
|
-
'Staff Address.Staff External Id': 'Address.Owner',
|
|
18275
|
-
'Staff Address.City': 'Address.Mailing City',
|
|
18276
|
-
'Staff Address.State': 'Address.Mailing State',
|
|
18277
|
-
'Staff Address.Postal Code': 'Address.Mailing Postal Code',
|
|
18278
|
-
'Staff Address.County': 'Address.Mailing Country',
|
|
18279
|
-
'Course.Course Title': 'Course.Name',
|
|
18280
|
-
'Course.Description': 'Course.Description',
|
|
18281
|
-
'Student Section.Student External Id': 'Course Connection.Owner',
|
|
18282
|
-
'Student Section.Academic Grade': 'Course Connection.Grade'
|
|
18283
|
-
},
|
|
18284
|
-
dummyData: {
|
|
18285
|
-
'Student.First Name': 'Carlos',
|
|
18286
|
-
'Student.Last Name': 'Robertson',
|
|
18287
|
-
'Student.Gender': 'Male',
|
|
18288
|
-
'Student.External Id': 'ee106749-8b53-445e-8bc9-1babc72372ff',
|
|
18289
|
-
'Student.Birthdate': '1998-10-27',
|
|
18290
|
-
'Student.Hispanic Latino Ethnicity': 'Hispanic',
|
|
18291
|
-
'Student.Last Modified': '2017-1-10',
|
|
18292
|
-
'Student Telephone.Telephone Number': '530-753-3067',
|
|
18293
|
-
'Student Email.Email Address': 'carlosr98@gmail.com',
|
|
18294
|
-
'Student Address.Student External Id': 'ee106749-8b53-445e-8bc9-1babc72372ff',
|
|
18295
|
-
'Student Address.Address Type': 'residence',
|
|
18296
|
-
'Student Address.Street Number And Name': '2400 Rivendell Lane',
|
|
18297
|
-
'Student Address.City': 'Davis',
|
|
18298
|
-
'Student Address.State': 'CA',
|
|
18299
|
-
'Student Address.Postal Code': '95616',
|
|
18300
|
-
'Student Address.County': 'United States',
|
|
18301
|
-
'Student Address.Latitude': '38.5449° N',
|
|
18302
|
-
'Student Address.Longitude': '121.7405° W',
|
|
18303
|
-
'Staff.First Name': 'Amy',
|
|
18304
|
-
'Staff.Last Name': 'Harrison',
|
|
18305
|
-
'Staff.Gender': 'Female',
|
|
18306
|
-
'Staff.External Id': '9d0f1999-c14f-466a-b078-eac5dceb8c1e',
|
|
18307
|
-
'Staff.Birthdate': '1986-10-18',
|
|
18308
|
-
'Staff.Hispanic Latino Ethnicity': 'White',
|
|
18309
|
-
'Staff.Last Modified': '2017-1-10',
|
|
18310
|
-
'Staff Telephone.Telephone Number': '530-756-8268',
|
|
18311
|
-
'Staff Email.Email Address': 'asharon@ucdavis.edu',
|
|
18312
|
-
'Staff Address.Staff External Id': '9d0f1999-c14f-466a-b078-eac5dceb8c1e',
|
|
18313
|
-
'Staff Address.Address Type': 'residence',
|
|
18314
|
-
'Staff Address.Street Number And Name': '131 Bombadil Drive',
|
|
18315
|
-
'Staff Address.City': 'Davis',
|
|
18316
|
-
'Staff Address.State': 'CA',
|
|
18317
|
-
'Staff Address.Postal Code': '95616',
|
|
18318
|
-
'Staff Address.County': 'United States',
|
|
18319
|
-
'Staff Address.Latitude': '38.5449° N',
|
|
18320
|
-
'Staff Address.Longitude': '121.7405° W',
|
|
18321
|
-
'Calendar Session.Designator': 'Fall',
|
|
18322
|
-
'Calendar Session.Begin Date': '2017-3-11',
|
|
18323
|
-
'Calendar Session.End Date': '2017-6-21',
|
|
18324
|
-
'Calendar Session.Last Modified': '2017-1-10',
|
|
18325
|
-
'Calendar Session.External Id': 'e8484fb0bdf7955ade3eafc0134d46c1',
|
|
18326
|
-
'Course.External Id': 'de3eafc0134d4e8484fb0bdf7955a6c1',
|
|
18327
|
-
'Course.Course Title': 'Research Strategies and Technology',
|
|
18328
|
-
'Course.Description': 'This course is intended to familiarize students with the resources and the technology available for writing and presenting papers',
|
|
18329
|
-
'Course.Department External Id': 'Social Sciences',
|
|
18330
|
-
'Course.Credit Value': '4',
|
|
18331
|
-
'Course.Last Modified': '2017-1-10',
|
|
18332
|
-
'Course Section.Last Modified': '2017-1-10',
|
|
18333
|
-
'Course Section.External Id': '624163984-7',
|
|
18334
|
-
'Course Section.Course External Id': '639846241-9',
|
|
18335
|
-
'Course Section Schedule.Course Section External ID': '349996241-1',
|
|
18336
|
-
'Student Section.Student External Id': 'ee106749-8b53-445e-8bc9-1babc72372ff',
|
|
18337
|
-
'Student Section.Number Of Credits Earned': '4',
|
|
18338
|
-
'Student Section.Academic Grade': 'B',
|
|
18339
|
-
'Student Section.Last Modified': '2017-1-10'
|
|
18340
|
-
}
|
|
18341
|
-
}
|
|
18342
|
-
};
|
|
18343
|
-
|
|
18344
17477
|
/***/ },
|
|
18345
17478
|
/* 177 */
|
|
18346
17479
|
/***/ function(module, exports) {
|
|
@@ -19910,15 +19043,14 @@ module.exports =
|
|
|
19910
19043
|
args[_key] = arguments[_key];
|
|
19911
19044
|
}
|
|
19912
19045
|
|
|
19913
|
-
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = DefaultDatasetStep.__proto__ || Object.getPrototypeOf(DefaultDatasetStep)).call.apply(_ref, [this].concat(args))), _this), _this.select = function (
|
|
19046
|
+
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = DefaultDatasetStep.__proto__ || Object.getPrototypeOf(DefaultDatasetStep)).call.apply(_ref, [this].concat(args))), _this), _this.select = function (o) {
|
|
19914
19047
|
var _this$props = _this.props,
|
|
19915
19048
|
step = _this$props.step,
|
|
19916
|
-
actions = _this$props.actions
|
|
19049
|
+
actions = _this$props.actions,
|
|
19050
|
+
change = _this$props.change;
|
|
19917
19051
|
|
|
19918
|
-
|
|
19919
|
-
|
|
19920
|
-
});
|
|
19921
|
-
actions.callGetScenario(step.magicNumber, scenario.bundleGuid, scenario.mappingGuid);
|
|
19052
|
+
actions.callGetScenario(step.magicNumber, o.bundleGuid, o.mappingGuid);
|
|
19053
|
+
change('scenario', o.name);
|
|
19922
19054
|
}, _temp), _possibleConstructorReturn(_this, _ret);
|
|
19923
19055
|
}
|
|
19924
19056
|
|
|
@@ -19948,14 +19080,19 @@ module.exports =
|
|
|
19948
19080
|
}, {
|
|
19949
19081
|
key: 'render',
|
|
19950
19082
|
value: function render() {
|
|
19083
|
+
var _this2 = this;
|
|
19084
|
+
|
|
19951
19085
|
var _props2 = this.props,
|
|
19952
19086
|
inputs = _props2.inputs,
|
|
19953
19087
|
handleSubmit = _props2.handleSubmit,
|
|
19954
19088
|
nav = _props2.nav,
|
|
19955
19089
|
step = _props2.step,
|
|
19956
19090
|
reset = _props2.reset,
|
|
19957
|
-
wizard = _props2.wizard
|
|
19091
|
+
wizard = _props2.wizard,
|
|
19092
|
+
formValues = _props2.formValues;
|
|
19958
19093
|
|
|
19094
|
+
var Radio = inputs.Radio;
|
|
19095
|
+
var scenario = formValues['scenario'];
|
|
19959
19096
|
|
|
19960
19097
|
return _react2.default.createElement(
|
|
19961
19098
|
'form',
|
|
@@ -19971,14 +19108,30 @@ module.exports =
|
|
|
19971
19108
|
_react2.default.createElement(
|
|
19972
19109
|
'p',
|
|
19973
19110
|
null,
|
|
19974
|
-
'
|
|
19111
|
+
'Each scenario is designed to get you started with new data-driven reports, dashboards and notifications. Extend the scenarios to include your own custom objects in the following steps.'
|
|
19975
19112
|
),
|
|
19976
19113
|
_react2.default.createElement('br', null),
|
|
19977
19114
|
_react2.default.createElement(
|
|
19978
19115
|
'div',
|
|
19979
19116
|
{ style: { marginLeft: 16 } },
|
|
19980
|
-
|
|
19981
|
-
|
|
19117
|
+
step.options.map(function (o, i) {
|
|
19118
|
+
return _react2.default.createElement(
|
|
19119
|
+
'div',
|
|
19120
|
+
{ key: i },
|
|
19121
|
+
_react2.default.createElement(Radio, { label: o.title, checked: o.name === scenario, style: { cursor: 'pointer' },
|
|
19122
|
+
onClick: function onClick() {
|
|
19123
|
+
return _this2.select(o);
|
|
19124
|
+
} }),
|
|
19125
|
+
_react2.default.createElement('br', null),
|
|
19126
|
+
_react2.default.createElement(
|
|
19127
|
+
'span',
|
|
19128
|
+
{ className: 'labelz' },
|
|
19129
|
+
o.label
|
|
19130
|
+
),
|
|
19131
|
+
_react2.default.createElement('br', null),
|
|
19132
|
+
_react2.default.createElement('br', null)
|
|
19133
|
+
);
|
|
19134
|
+
})
|
|
19982
19135
|
),
|
|
19983
19136
|
_react2.default.createElement('br', null),
|
|
19984
19137
|
_react2.default.createElement(_navButtons2.default, { nextDisabled: !wizard.gotScenario, handleSubmit: handleSubmit,
|
|
@@ -20211,8 +19364,6 @@ module.exports =
|
|
|
20211
19364
|
|
|
20212
19365
|
var resourceGroups = [].concat(_toConsumableArray(formValues['resourceGroups']));
|
|
20213
19366
|
var group = resourceGroups[groupIndex];
|
|
20214
|
-
console.log(group);
|
|
20215
|
-
console.log(entity);
|
|
20216
19367
|
if (group.customExternalKeys) {
|
|
20217
19368
|
if (group.sourceKeysObjects.find(function (sko) {
|
|
20218
19369
|
return sko === entity;
|
|
@@ -20641,7 +19792,7 @@ module.exports =
|
|
|
20641
19792
|
});
|
|
20642
19793
|
|
|
20643
19794
|
var sourceKeys = resourceGroups[bundleIndex].sourceKeys && resourceGroups[bundleIndex].sourceKeys.length > 0 ? resourceGroups[bundleIndex].sourceKeys : [''];
|
|
20644
|
-
var destinationKeys = resourceGroups[bundleIndex].destinationKeys && resourceGroups[bundleIndex].destinationKeys > 0 ? resourceGroups[bundleIndex].destinationKeys : [''];
|
|
19795
|
+
var destinationKeys = resourceGroups[bundleIndex].destinationKeys && resourceGroups[bundleIndex].destinationKeys.length > 0 ? resourceGroups[bundleIndex].destinationKeys : [''];
|
|
20645
19796
|
|
|
20646
19797
|
return _react2.default.createElement(
|
|
20647
19798
|
Modal,
|
|
@@ -22382,7 +21533,7 @@ module.exports =
|
|
|
22382
21533
|
|
|
22383
21534
|
var _reactRedux = __webpack_require__(141);
|
|
22384
21535
|
|
|
22385
|
-
var _wizard = __webpack_require__(
|
|
21536
|
+
var _wizard = __webpack_require__(176);
|
|
22386
21537
|
|
|
22387
21538
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
22388
21539
|
|
|
@@ -22392,10 +21543,6 @@ module.exports =
|
|
|
22392
21543
|
|
|
22393
21544
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
22394
21545
|
|
|
22395
|
-
var _exampleWizardData = __webpack_require__(176);
|
|
22396
|
-
|
|
22397
|
-
var example = _interopRequireWildcard(_exampleWizardData);
|
|
22398
|
-
|
|
22399
21546
|
var _providerData = __webpack_require__(177);
|
|
22400
21547
|
|
|
22401
21548
|
var providerData = _interopRequireWildcard(_providerData);
|
|
@@ -22430,11 +21577,34 @@ module.exports =
|
|
|
22430
21577
|
customStep: false
|
|
22431
21578
|
},
|
|
22432
21579
|
deployment: ['once', 'daily', 'repeating'],
|
|
22433
|
-
autoMapData: example.wizards[1].autoMapData,
|
|
22434
|
-
dummyData: example.wizards[1].dummyData,
|
|
22435
21580
|
scenarios: [{
|
|
21581
|
+
name: 'students',
|
|
21582
|
+
title: 'Simple Student Demographics to Contact Sync',
|
|
21583
|
+
label: 'Sync students with Contacts to drive Student Population reports and dashboards',
|
|
21584
|
+
bundleGuid: 'd10440051e2a46aaa181b72b8ee6af67',
|
|
21585
|
+
mappingGuid: 'e98da65935534fdbb4c7b4280f07f1ae'
|
|
21586
|
+
}, {
|
|
21587
|
+
name: 'staff',
|
|
21588
|
+
title: 'Simple Staff Demographics to Contact Sync',
|
|
21589
|
+
label: 'Sync staff demographics with Contacts to drive Staff reports and dashboards',
|
|
21590
|
+
bundleGuid: 'd10440051e2a46aaa181b72b8ee6af67',
|
|
21591
|
+
mappingGuid: 'e98da65935534fdbb4c7b4280f07f1ae'
|
|
21592
|
+
}, {
|
|
22436
21593
|
name: 'applicants',
|
|
22437
|
-
|
|
21594
|
+
title: 'HEDA Applicant Sync',
|
|
21595
|
+
label: 'Sync applicants with HEDA Contacts and Affiliations to add Applicant data to Admissions reports and dashboards.',
|
|
21596
|
+
bundleGuid: 'd10440051e2a46aaa181b72b8ee6af67',
|
|
21597
|
+
mappingGuid: 'e98da65935534fdbb4c7b4280f07f1ae'
|
|
21598
|
+
}, {
|
|
21599
|
+
name: 'studentenrollment',
|
|
21600
|
+
title: 'HEDA Student Enrollments',
|
|
21601
|
+
label: 'Sync students and institutions with Contacts and Affiliated Educational Institution Accounts',
|
|
21602
|
+
bundleGuid: 'f30c27957e6a4a4e97dc37266980ca1a',
|
|
21603
|
+
mappingGuid: '00627b04bc1e43c1a6d0c51d7c57c57c'
|
|
21604
|
+
}, {
|
|
21605
|
+
name: 'courseroster',
|
|
21606
|
+
title: 'HEDA Course Roster Sync',
|
|
21607
|
+
label: 'Sync course roster with HEDA Contacts, Courses, Affiliations, and Course Enrollments to add Course Roster data to Student Success reports and dashboards.',
|
|
22438
21608
|
bundleGuid: 'd10440051e2a46aaa181b72b8ee6af67',
|
|
22439
21609
|
mappingGuid: 'e98da65935534fdbb4c7b4280f07f1ae'
|
|
22440
21610
|
}],
|
|
@@ -22565,13 +21735,11 @@ module.exports =
|
|
|
22565
21735
|
}
|
|
22566
21736
|
} else if (step.type === 'schema') {
|
|
22567
21737
|
step.customizable = wizard.source.customizable;
|
|
22568
|
-
step.defaultSchema = wizard.source.defaultSchema || null; //remove this
|
|
22569
21738
|
stepList.push(step);
|
|
22570
21739
|
} else if (step.type === 'filter' && wizard.filterStep) {
|
|
22571
21740
|
step.provider = wizard.source.name;
|
|
22572
21741
|
stepList.push(step);
|
|
22573
21742
|
} else if (step.type === 'map') {
|
|
22574
|
-
step.autoMapData = wizard.autoMapData || null;
|
|
22575
21743
|
step.defaultSchema = wizard.source.defaultSchema || null; //remove this
|
|
22576
21744
|
stepList.push(step);
|
|
22577
21745
|
} else if (step.type === 'preview') {
|