Comparing version 0.2.3 to 0.2.4
{ | ||
"name": "fms-js", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "FileMaker Server Connection for Node and the browser", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -151,11 +151,11 @@ # fms-js | ||
* takes an options object with all data and query options | ||
* returns a request object that finds a random record. send it with .send | ||
* returns a request object that will create a record. send it with .send | ||
##### layout.edit({options}) | ||
* takes an options object with all data and query options. IT MUST include the record-id field | ||
* returns a request object that finds a random record. send it with .send | ||
* takes an options object with all data and query options. IT MUST include the recid field | ||
* returns a request object that will edit a record. send it with .send | ||
##### layout.delete({options}) | ||
* takes an options object with all data and query options. IT MUST include the record-id field | ||
* returns a request object that finds a random record. send it with .send | ||
* takes an options object with all data and query options. IT MUST include the recid field | ||
* returns a request object that will delete the record. send it with .send | ||
@@ -162,0 +162,0 @@ ##### request.set(name, value) |
@@ -73,4 +73,4 @@ /** | ||
} | ||
obj.mod_id= record.$['mod-id']; | ||
obj.record_id = record.$['record-id']; | ||
obj.modid= record.$['mod-id']; | ||
obj.recid = record.$['record-id']; | ||
return obj | ||
@@ -124,4 +124,4 @@ }) | ||
var obj = remapFields(record.field); | ||
obj.mod_id= record.$['mod-id']; | ||
obj.record_id = record.$['record-id']; | ||
obj.modid= record.$['mod-id']; | ||
obj.recid = record.$['record-id']; | ||
return obj | ||
@@ -128,0 +128,0 @@ }) |
@@ -35,3 +35,3 @@ /** | ||
describe('#layoutnames', function () { | ||
it('should return a object with a prop an array prop "data"', function (done) { | ||
it.only('should return a object with a prop an array prop "data"', function (done) { | ||
@@ -38,0 +38,0 @@ connection |
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
11759079