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