@vinctus/oql 1.1.23 → 1.1.25

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,7 +68,7 @@ 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.1.23"
71
+ libraryDependencies += "com.vinctus" %%% "-vinctus-oql" % "1.1.25"
72
72
 
73
73
  Compile / npmDependencies ++= Seq(
74
74
  "pg" -> "8.10.0",
package/index.d.ts CHANGED
@@ -44,8 +44,6 @@ export class OQL {
44
44
 
45
45
  showQuery(): void
46
46
 
47
- define(name: string, definition: string, parameters: string[]): void
48
-
49
47
  entity(name: string): Mutation
50
48
 
51
49
  queryBuilder<T = any>(fixed?: string, at?: any): QueryBuilder<T>
@@ -68,8 +66,6 @@ export class OQL_MEM {
68
66
 
69
67
  showQuery(): void
70
68
 
71
- define(name: string, definition: string, parameters: string[]): void
72
-
73
69
  entity(name: string): Mutation
74
70
 
75
71
  queryBuilder<T = any>(fixed?: string, at?: any): QueryBuilder<T>