lms-sync 1.0.15 → 1.0.16
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/apiConnections/apiConnects.js +8 -14
 - package/apiConnections/mapping.js +369 -92
 - package/login.json +5 -0
 - package/models/sections.model.js +7 -7
 - package/package.json +1 -1
 - package/recordError.log +4810 -0
 - package/recordSuccess.log +14092 -0
 - package/target.json +9 -0
 
    
        package/login.json
    ADDED
    
    
    
        package/models/sections.model.js
    CHANGED
    
    | 
         @@ -252,13 +252,13 @@ module.exports = (sequelize, DataTypes,schema) => { 
     | 
|
| 
       252 
252 
     | 
    
         
             
                    primaryKey: false,
         
     | 
| 
       253 
253 
     | 
    
         
             
                    defaultValue: 0,
         
     | 
| 
       254 
254 
     | 
    
         
             
                  },
         
     | 
| 
       255 
     | 
    
         
            -
                  gracePeriod: {
         
     | 
| 
       256 
     | 
    
         
            -
             
     | 
| 
       257 
     | 
    
         
            -
             
     | 
| 
       258 
     | 
    
         
            -
             
     | 
| 
       259 
     | 
    
         
            -
             
     | 
| 
       260 
     | 
    
         
            -
             
     | 
| 
       261 
     | 
    
         
            -
                  },
         
     | 
| 
      
 255 
     | 
    
         
            +
                  // gracePeriod: {
         
     | 
| 
      
 256 
     | 
    
         
            +
                  //   type: DataTypes.TIME,
         
     | 
| 
      
 257 
     | 
    
         
            +
                  //   unique: false,
         
     | 
| 
      
 258 
     | 
    
         
            +
                  //   allow: false,
         
     | 
| 
      
 259 
     | 
    
         
            +
                  //   autoIncrement: false,
         
     | 
| 
      
 260 
     | 
    
         
            +
                  //   primaryKey: false
         
     | 
| 
      
 261 
     | 
    
         
            +
                  // },
         
     | 
| 
       262 
262 
     | 
    
         
             
                  status: {
         
     | 
| 
       263 
263 
     | 
    
         
             
                    type: DataTypes.BOOLEAN,
         
     | 
| 
       264 
264 
     | 
    
         
             
                    unique: false,
         
     |