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

@aphro/schema-api

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aphro/schema-api - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

6

CHANGELOG.md
# @aphro/schema-api
## 0.1.1
### Patch Changes
- in-memory model support
## 0.1.0

@@ -4,0 +10,0 @@

6

lib/index.d.ts

@@ -6,4 +6,4 @@ export declare type ValidationError = {

};
export declare type StorageEngine = 'sqlite' | 'postgres';
export declare type StorageType = 'sql';
export declare type StorageEngine = 'sqlite' | 'postgres' | 'memory';
export declare type StorageType = 'sql' | 'memory';
export declare type SchemaFileAst = {

@@ -92,3 +92,3 @@ preamble: {

export declare type StorageConfig = {
type: 'sql';
type: StorageType;
db: string;

@@ -95,0 +95,0 @@ tablish: string;

{
"name": "@aphro/schema-api",
"version": "0.1.0",
"version": "0.1.1",
"main": "lib/index.js",

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

@@ -14,4 +14,4 @@ export type ValidationError = {

export type StorageEngine = 'sqlite' | 'postgres'; //| 'mysql' | 'sqlite'; // | maria | neo4j | redis ...
export type StorageType = 'sql'; // opencypher
export type StorageEngine = 'sqlite' | 'postgres' | 'memory';
export type StorageType = 'sql' | 'memory';

@@ -115,3 +115,3 @@ export type SchemaFileAst = {

export type StorageConfig = {
type: 'sql'; // | cypher | gremlin | ...
type: StorageType;
db: string;

@@ -118,0 +118,0 @@ tablish: string;

Sorry, the diff of this file is not supported yet

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