alsmanager_lib 2.0.70 → 2.0.71

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.
Files changed (2) hide show
  1. package/lib/modules.js +2 -2
  2. package/package.json +1 -1
package/lib/modules.js CHANGED
@@ -2149,12 +2149,12 @@ function existsDisplayPartProperties(db_used, id_device) {
2149
2149
  }
2150
2150
 
2151
2151
  function insertDisplayPartPropertiesSQLite(id_device, dev_prop) {
2152
- var query = "insert into display_part (id_device, touch, size_inch, format, tecnology, is_removable) values ";
2152
+ var query = "insert into display_part (id_device, touch, size_inch, format, technology, is_removable) values ";
2153
2153
  query += "(" + id_device + ", " + dev_prop.touch + ", " + dev_prop.size + ", '" + dev_prop.format + "', '" + dev_prop.technology + "', " + dev_prop.is_removable + ")";
2154
2154
  return query;
2155
2155
  }
2156
2156
  function insertDisplayPartPropertiesMySQL() {
2157
- var query = "insert into display_part (id_device, touch, size_inch, format, tecnology, is_removable) values ";
2157
+ var query = "insert into display_part (id_device, touch, size_inch, format, technology, is_removable) values ";
2158
2158
  query += "(:id_device, :touch, :size, :format, :technology, :is_removable)";
2159
2159
  return query;
2160
2160
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  ".": "./lib/modules.js",
5
5
  "./dbconn": "./lib/dbconn.js"
6
6
  },
7
- "version": "2.0.70",
7
+ "version": "2.0.71",
8
8
  "description": "Funzioni per ALSManager",
9
9
  "license": "ISC",
10
10
  "author": "Luca Cattani",