foxhound 2.0.27 → 2.0.28

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/docs/schema.md CHANGED
@@ -143,4 +143,4 @@ Only these columns are modified:
143
143
 
144
144
  ## Stricture Integration
145
145
 
146
- Schemas are typically defined using [Stricture](https://github.com/stevenvelozo/stricture), a companion tool that generates schema definitions from a DDL-like JSON format. Stricture produces the exact schema array format that FoxHound expects.
146
+ Schemas are typically defined using [Stricture](https://github.com/fable-retold/stricture), a companion tool that generates schema definitions from a DDL-like JSON format. Stricture produces the exact schema array format that FoxHound expects.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foxhound",
3
- "version": "2.0.27",
3
+ "version": "2.0.28",
4
4
  "description": "A Database Query generation library.",
5
5
  "main": "source/FoxHound.js",
6
6
  "scripts": {
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "repository": {
36
36
  "type": "git",
37
- "url": "https://github.com/stevenvelozo/foxhound.git"
37
+ "url": "https://github.com/fable-retold/foxhound.git"
38
38
  },
39
39
  "keywords": [
40
40
  "orm",
@@ -44,15 +44,15 @@
44
44
  "author": "Steven Velozo <steven@velozo.com> (http://velozo.com/)",
45
45
  "license": "MIT",
46
46
  "bugs": {
47
- "url": "https://github.com/stevenvelozo/foxhound/issues"
47
+ "url": "https://github.com/fable-retold/foxhound/issues"
48
48
  },
49
- "homepage": "https://github.com/stevenvelozo/foxhound",
49
+ "homepage": "https://github.com/fable-retold/foxhound",
50
50
  "devDependencies": {
51
- "pict-docuserve": "^0.1.5",
52
- "quackage": "^1.1.0"
51
+ "pict-docuserve": "^1.4.12",
52
+ "quackage": "^1.3.0"
53
53
  },
54
54
  "dependencies": {
55
- "fable": "^3.1.63",
55
+ "fable": "^3.1.75",
56
56
  "typescript": "^5.9.3"
57
57
  }
58
58
  }
@@ -9,6 +9,7 @@ let getDialects = () =>
9
9
  tmpDialects.MySQL = require('./dialects/MySQL/FoxHound-Dialect-MySQL.js');
10
10
  tmpDialects.MSSQL = require('./dialects/MicrosoftSQL/FoxHound-Dialect-MSSQL.js');
11
11
  tmpDialects.PostgreSQL = require('./dialects/PostgreSQL/FoxHound-Dialect-PostgreSQL.js');
12
+ tmpDialects.Oracle = require('./dialects/Oracle/FoxHound-Dialect-Oracle.js');
12
13
  tmpDialects.MongoDB = require('./dialects/MongoDB/FoxHound-Dialect-MongoDB.js');
13
14
  tmpDialects.DGraph = require('./dialects/DGraph/FoxHound-Dialect-DGraph.js');
14
15
  tmpDialects.Solr = require('./dialects/Solr/FoxHound-Dialect-Solr.js');