@openneuro/server 4.6.0 → 4.6.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/package.json +3 -3
- package/src/graphql/schema.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openneuro/server",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "Core service for the OpenNeuro platform.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src/server.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@apollo/client": "3.4.17",
|
|
20
20
|
"@elastic/elasticsearch": "7.15.0",
|
|
21
|
-
"@openneuro/search": "^4.6.
|
|
21
|
+
"@openneuro/search": "^4.6.1",
|
|
22
22
|
"@passport-next/passport-google-oauth2": "^1.0.0",
|
|
23
23
|
"@sentry/node": "^4.5.3",
|
|
24
24
|
"apollo-server": "2.25.3",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"publishConfig": {
|
|
106
106
|
"access": "public"
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "ae00df047e53f3a819d7221a491d845ffbb32832"
|
|
109
109
|
}
|
package/src/graphql/schema.js
CHANGED
|
@@ -431,7 +431,7 @@ export const typeDefs = `
|
|
|
431
431
|
# Git commit hash
|
|
432
432
|
head: String
|
|
433
433
|
# Total size in bytes of this draft
|
|
434
|
-
size:
|
|
434
|
+
size: BigInt
|
|
435
435
|
}
|
|
436
436
|
|
|
437
437
|
# Tagged snapshot of a draft
|
|
@@ -464,7 +464,7 @@ export const typeDefs = `
|
|
|
464
464
|
# Is the snapshot available for analysis on Brainlife?
|
|
465
465
|
onBrainlife: Boolean @cacheControl(maxAge: 10080, scope: PUBLIC)
|
|
466
466
|
# Total size in bytes of this snapshot
|
|
467
|
-
size:
|
|
467
|
+
size: BigInt
|
|
468
468
|
}
|
|
469
469
|
|
|
470
470
|
# RelatedObject nature of relationship
|