Comparing version 0.0.4 to 0.0.5-alpha.1
export {ApiEdgeDefinition} from "./src/ApiEdgeDefinition"; | ||
export {ApiEdgeRelation} from "./src/ApiEdgeRelation"; | ||
export {ApiEdgeQueryType} from "./src/ApiEdgeQueryType"; | ||
export {ApiEdgeQuery} from "./src/ApiEdgeQuery"; |
{ | ||
"name": "api-core", | ||
"version": "0.0.4", | ||
"version": "0.0.5-alpha.1", | ||
"description": "Core classes for the api-provider package.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,5 +0,2 @@ | ||
/** | ||
* Created by ajuhos on 2016. 10. 20.. | ||
*/ | ||
"use strict"; | ||
//# sourceMappingURL=ApiEdgeDefinition.js.map |
@@ -1,4 +0,2 @@ | ||
/** | ||
* Created by ajuhos on 2016. 10. 20.. | ||
*/ | ||
import {ApiEdgeRelation} from "./ApiEdgeRelation"; | ||
@@ -9,11 +7,12 @@ export interface ApiEdgeDefinition { | ||
methods: Object; | ||
relations: ApiEdgeRelation[]; | ||
getEntry: (id: string) => any; | ||
listEntries: (filters: any[]) => any[]; | ||
createEntry: (entry: any) => any; | ||
updateEntry: (id: string, entryFields: any) => any; | ||
updateEntries: (filters: any[], entryFields: any) => any; | ||
removeEntry: (id: string) => any; | ||
removeEntries: (filters: any[]) => any[]; | ||
getEntry: (id: string) => Promise<any>; | ||
listEntries: (filters: any[]) => Promise<any[]>; | ||
createEntry: (entry: any) => Promise<any>; | ||
updateEntry: (id: string, entryFields: any) => Promise<any>; | ||
updateEntries: (filters: any[], entryFields: any) => Promise<any>; | ||
removeEntry: (id: string) => Promise<any>; | ||
removeEntries: (filters: any[]) => Promise<any[]>; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
145019
35
2634
0