graphile-settings 2.6.10 → 2.6.12
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 +1 -1
- package/esm/index.js +1 -1
- package/index.js +2 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -115,7 +115,7 @@ app.listen(settings.port);
|
|
|
115
115
|
## 🔌 Included Plugins
|
|
116
116
|
|
|
117
117
|
* `postgraphile-plugin-connection-filter`
|
|
118
|
-
*
|
|
118
|
+
* `graphile-plugin-fulltext-filter`
|
|
119
119
|
* `@pyramation/postgis`
|
|
120
120
|
* `postgraphile-plugin-connection-filter-postgis`
|
|
121
121
|
* `postgraphile-derived-upload-field`
|
package/esm/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import PgManyToMany from '@graphile-contrib/pg-many-to-many';
|
|
|
2
2
|
import { getEnvOptions } from '@launchql/env';
|
|
3
3
|
import PgPostgis from '@pyramation/postgis';
|
|
4
4
|
// @ts-ignore
|
|
5
|
-
import FulltextFilterPlugin from '
|
|
5
|
+
import FulltextFilterPlugin from 'graphile-plugin-fulltext-filter';
|
|
6
6
|
import { NodePlugin } from 'graphile-build';
|
|
7
7
|
import { additionalGraphQLContextFromRequest as langAdditional, LangPlugin } from 'graphile-i18n';
|
|
8
8
|
import PgMetaschema from 'graphile-meta-schema';
|
package/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const pg_many_to_many_1 = __importDefault(require("@graphile-contrib/pg-many-to-
|
|
|
8
8
|
const env_1 = require("@launchql/env");
|
|
9
9
|
const postgis_1 = __importDefault(require("@pyramation/postgis"));
|
|
10
10
|
// @ts-ignore
|
|
11
|
-
const
|
|
11
|
+
const graphile_plugin_fulltext_filter_1 = __importDefault(require("graphile-plugin-fulltext-filter"));
|
|
12
12
|
const graphile_build_1 = require("graphile-build");
|
|
13
13
|
const graphile_i18n_1 = require("graphile-i18n");
|
|
14
14
|
const graphile_meta_schema_1 = __importDefault(require("graphile-meta-schema"));
|
|
@@ -35,7 +35,7 @@ const getGraphileSettings = (rawOpts) => {
|
|
|
35
35
|
const resolveUpload = uploader.resolveUpload.bind(uploader);
|
|
36
36
|
const plugins = [
|
|
37
37
|
postgraphile_plugin_connection_filter_1.default,
|
|
38
|
-
|
|
38
|
+
graphile_plugin_fulltext_filter_1.default,
|
|
39
39
|
types_1.default,
|
|
40
40
|
upload_postgraphile_plugin_1.default,
|
|
41
41
|
graphile_meta_schema_1.default,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-settings",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.12",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "graphile settings",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@graphile-contrib/pg-many-to-many": "^1.0.2",
|
|
33
33
|
"@launchql/env": "^2.5.5",
|
|
34
|
-
"@launchql/s3-streamer": "^2.6.
|
|
34
|
+
"@launchql/s3-streamer": "^2.6.7",
|
|
35
35
|
"@launchql/types": "^2.8.5",
|
|
36
36
|
"@launchql/upload-names": "^2.2.9",
|
|
37
37
|
"@pyramation/postgis": "^0.1.1",
|
|
38
|
-
"@pyramation/postgraphile-plugin-fulltext-filter": "^2.0.0",
|
|
39
38
|
"cors": "^2.8.5",
|
|
40
39
|
"express": "^5.1.0",
|
|
41
40
|
"graphile-build": "^4.14.1",
|
|
42
|
-
"graphile-i18n": "^0.1.
|
|
43
|
-
"graphile-meta-schema": "^0.2.
|
|
44
|
-
"graphile-
|
|
45
|
-
"graphile-
|
|
46
|
-
"graphile-
|
|
41
|
+
"graphile-i18n": "^0.1.4",
|
|
42
|
+
"graphile-meta-schema": "^0.2.9",
|
|
43
|
+
"graphile-plugin-fulltext-filter": "^2.0.1",
|
|
44
|
+
"graphile-query": "^2.3.10",
|
|
45
|
+
"graphile-search-plugin": "^0.1.12",
|
|
46
|
+
"graphile-simple-inflector": "^0.1.7",
|
|
47
47
|
"graphql": "15.10.1",
|
|
48
48
|
"graphql-tag": "2.12.6",
|
|
49
49
|
"graphql-upload": "^13.0.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"launchql",
|
|
72
72
|
"graphql"
|
|
73
73
|
],
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "ff477433074d91c28be6017e858b601fa99aa568"
|
|
75
75
|
}
|