Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fms-js

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fms-js - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc