leoric 2.11.3 → 2.11.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/spell.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leoric",
3
- "version": "2.11.3",
3
+ "version": "2.11.4",
4
4
  "description": "JavaScript Object-relational mapping alchemy",
5
5
  "main": "index.js",
6
6
  "browser": "dist/browser.js",
package/src/spell.d.ts CHANGED
@@ -98,7 +98,7 @@ export class Spell<T extends typeof AbstractBone, U = InstanceType<T> | Collecti
98
98
  connection: Connection;
99
99
 
100
100
  command: string;
101
- scopes: Array<(spell: this) => void>;
101
+ scopes: Array<ScopeFunction>;
102
102
 
103
103
  select(...names: Array<string | Raw> | Array<(name: string) => boolean>): Spell<T, U>;
104
104
  insert(opts: SetOptions<T>): Spell<T, QueryResult>;