Comparing version 0.0.12 to 0.0.13
declare type Repository = { | ||
schema: Schema, | ||
insert?: (context: ISqlContext, entity: any) => {}, | ||
update?: (context: ISqlContext, entity: any) => {}, | ||
delete?: (context: ISqlContext, key: any) => {}, | ||
get?: (context: ISqlContext, key: any) => {}, | ||
select?: (context: ISqlContext, specification?: Specification, pageRequest?: PageRequest) => {}; | ||
count?: (context: ISqlContext, specification?: Specification) => {}; | ||
insert: (context: ISqlContext, entity: any) => {}, | ||
update: (context: ISqlContext, entity: any) => {}, | ||
delete: (context: ISqlContext, key: any) => {}, | ||
get: (context: ISqlContext, key: any) => {}, | ||
select: (context: ISqlContext, specification?: Specification, pageRequest?: PageRequest) => {}; | ||
count: (context: ISqlContext, specification?: Specification) => {}; | ||
} | ||
@@ -10,0 +10,0 @@ |
{ | ||
"name": "js-jpa", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"description": "jpa for node", | ||
@@ -5,0 +5,0 @@ "author": "stone", |
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
26016