Socket
Socket
Sign inDemoInstall

@soliantconsulting/fm-mock-server

Package Overview
Dependencies
89
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0 to 1.2.0

2

dist/script.d.ts

@@ -8,2 +8,3 @@ import type { RouterContext } from "koa-tree-router";

responseSchema: SchemaObject;
metaSchema?: SchemaObject;
};

@@ -17,2 +18,3 @@ export type Script<T = unknown> = {

data: unknown;
meta?: unknown;
} | {

@@ -19,0 +21,0 @@ errors: {

3

dist/script.js

@@ -48,4 +48,5 @@ import { z } from "zod";

data: definition.responseSchema,
meta: definition.metaSchema,
},
required: ["data"],
required: definition.metaSchema ? ["data", "meta"] : ["data"],
},

@@ -52,0 +53,0 @@ },

{
"name": "@soliantconsulting/fm-mock-server",
"version": "1.1.0",
"version": "1.2.0",
"description": "Mock server for FileMaker OData script calls",

@@ -5,0 +5,0 @@ "type": "module",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc