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

ts-repository-fluent

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-repository-fluent - npm Package Compare versions

Comparing version 0.0.9 to 0.1.1

2

package.json
{
"name": "ts-repository-fluent",
"version": "0.0.9",
"version": "0.1.1",
"description": "A basic data repository framework for Typescript. Includes a fluent-style query interface.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -32,7 +32,7 @@ 'use strict'

{
create(pRecord: T, pRequestContext: any): Promise<T>;
update(pRecord: T, pRequestContext: any): Promise<T>;
upsert(pRecord: T, pRequestContext: any): Promise<T>;
create(pRecord: Partial<T>, pRequestContext: any): Promise<T>;
update(pRecord: Partial<T>, pRequestContext: any): Promise<T>;
upsert(pRecord: Partial<T>, pRequestContext: any): Promise<T>;
delete(pRecord: T | number, pRequestContext: any): Promise<boolean>;
//deletes(pQuery: SimpleQuery<T>, pRequestContext: any): Promise<boolean>;
}
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