Comparing version 0.3.0 to 0.4.0
@@ -57,3 +57,6 @@ /// <reference path="type_declarations/index.d.ts" /> | ||
exports.db.SelectOne('kiosk') | ||
.whereEqual({ bcycle_id: kiosk.Id }) | ||
.whereEqual({ | ||
program_id: program_id, | ||
bcycle_id: kiosk.Id, | ||
}) | ||
.execute(function (error, existing_kiosk) { | ||
@@ -67,4 +70,4 @@ if (error) | ||
.set({ | ||
program_id: program_id, | ||
bcycle_id: kiosk.Id, | ||
program_id: program_id, | ||
name: kiosk.Name, | ||
@@ -71,0 +74,0 @@ description: kiosk.PublicText, |
@@ -99,3 +99,6 @@ /// <reference path="type_declarations/index.d.ts" /> | ||
db.SelectOne('kiosk') | ||
.whereEqual({bcycle_id: kiosk.Id}) | ||
.whereEqual({ | ||
program_id: program_id, | ||
bcycle_id: kiosk.Id, | ||
}) | ||
.execute((error: Error, existing_kiosk: Kiosk) => { | ||
@@ -108,4 +111,4 @@ if (error) return callback(error); | ||
.set({ | ||
program_id: program_id, | ||
bcycle_id: kiosk.Id, | ||
program_id: program_id, | ||
name: kiosk.Name, | ||
@@ -112,0 +115,0 @@ description: kiosk.PublicText, |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "0.3.0", | ||
"version": "0.4.0", | ||
"homepage": "https://github.com/chbrown/bcycle", | ||
@@ -10,0 +10,0 @@ "repository": "git://github.com/chbrown/bcycle.git", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131448
2906