@vinctus/oql 1.2.0 → 1.3.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -68,14 +68,12 @@ Add the following lines to your `build.sbt`:
68
68
  ```sbt
69
69
  externalResolvers += "OQL" at "https://maven.pkg.github.com/vinctustech/oql"
70
70
 
71
- libraryDependencies += "com.vinctus" %%% "-vinctus-oql" % "1.2.0"
71
+ libraryDependencies += "com.vinctus" %%% "-vinctus-oql" % "1.1.33"
72
72
 
73
73
  Compile / npmDependencies ++= Seq(
74
- "pg" -> "8.10.0",
75
- "@types/pg" -> "8.6.6",
74
+ "pg" -> "8.13.1",
75
+ "@types/pg" -> "8.11.11",
76
76
  "source-map-support" -> "0.5.21",
77
- "big.js" -> "6.1.1",
78
- "@types/big.js" -> "6.1.3"
79
77
  )
80
78
  ```
81
79
 
package/index.d.ts CHANGED
@@ -34,6 +34,8 @@ export class Mutation {
34
34
 
35
35
  delete(id: any): Promise<void>
36
36
 
37
+ bulkDelete(id: any[]): Promise<void>
38
+
37
39
  }
38
40
 
39
41
  export class OQL {
@@ -44,8 +46,6 @@ export class OQL {
44
46
 
45
47
  showQuery(): void
46
48
 
47
- define(name: string, definition: string, parameters: string[]): void
48
-
49
49
  entity(name: string): Mutation
50
50
 
51
51
  queryBuilder<T = any>(fixed?: string, at?: any): QueryBuilder<T>
@@ -68,8 +68,6 @@ export class OQL_MEM {
68
68
 
69
69
  showQuery(): void
70
70
 
71
- define(name: string, definition: string, parameters: string[]): void
72
-
73
71
  entity(name: string): Mutation
74
72
 
75
73
  queryBuilder<T = any>(fixed?: string, at?: any): QueryBuilder<T>