@apollo-annotation/common 0.1.19 → 0.1.21
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/dist/ApolloPlugin.d.ts +9 -0
- package/dist/ApolloPlugin.js +11 -0
- package/dist/ApolloPlugin.js.map +1 -0
- package/dist/AssemblySpecificChange.d.ts +9 -0
- package/dist/AssemblySpecificChange.js +19 -0
- package/dist/AssemblySpecificChange.js.map +1 -0
- package/dist/Change.d.ts +33 -0
- package/dist/Change.js +36 -0
- package/dist/Change.js.map +1 -0
- package/dist/ChangeTypeRegistry.d.ts +10 -0
- package/dist/ChangeTypeRegistry.js +24 -0
- package/dist/ChangeTypeRegistry.js.map +1 -0
- package/dist/Check.d.ts +6 -0
- package/dist/Check.js +7 -0
- package/dist/Check.js.map +1 -0
- package/dist/CheckRegistry.d.ts +10 -0
- package/dist/CheckRegistry.js +27 -0
- package/dist/CheckRegistry.js.map +1 -0
- package/dist/FeatureChange.d.ts +32 -0
- package/dist/FeatureChange.js +88 -0
- package/dist/FeatureChange.js.map +1 -0
- package/dist/Operation.d.ts +60 -0
- package/dist/Operation.js +22 -0
- package/dist/Operation.js.map +1 -0
- package/dist/OperationTypeRegistry.d.ts +10 -0
- package/dist/OperationTypeRegistry.js +24 -0
- package/dist/OperationTypeRegistry.js.map +1 -0
- package/dist/Validation.d.ts +27 -0
- package/dist/Validation.js +26 -0
- package/dist/Validation.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +11 -10
- package/src/Operation.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apollo-annotation/common",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/GMOD/Apollo3.git",
|
|
@@ -11,12 +11,21 @@
|
|
|
11
11
|
"build": "tsc"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@apollo-annotation/schemas": "^0.1.
|
|
14
|
+
"@apollo-annotation/schemas": "^0.1.21",
|
|
15
15
|
"@gmod/gff": "1.2.0",
|
|
16
16
|
"@jbrowse/core": "^2.13.1",
|
|
17
17
|
"bson-objectid": "^2.0.4",
|
|
18
18
|
"tslib": "^2.3.1"
|
|
19
19
|
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@apollo-annotation/mst": "^0.1.21",
|
|
22
|
+
"@nestjs/common": "^10.1.0",
|
|
23
|
+
"@nestjs/core": "^10.1.0",
|
|
24
|
+
"@types/node": "^18.14.2",
|
|
25
|
+
"generic-filehandle": "^3.0.0",
|
|
26
|
+
"mongoose": "^6.12.0",
|
|
27
|
+
"typescript": "^5.5.3"
|
|
28
|
+
},
|
|
20
29
|
"peerDependencies": {
|
|
21
30
|
"@mui/material": "^5.11.14",
|
|
22
31
|
"@mui/x-data-grid": "^7.0.0",
|
|
@@ -29,14 +38,6 @@
|
|
|
29
38
|
"rxjs": "^7.4.0",
|
|
30
39
|
"tss-react": "^4.6.1"
|
|
31
40
|
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@apollo-annotation/mst": "^0.1.19",
|
|
34
|
-
"@nestjs/common": "^10.1.0",
|
|
35
|
-
"@nestjs/core": "^10.1.0",
|
|
36
|
-
"@types/node": "^18.14.2",
|
|
37
|
-
"mongoose": "^6.12.0",
|
|
38
|
-
"typescript": "^5.5.3"
|
|
39
|
-
},
|
|
40
41
|
"publishConfig": {
|
|
41
42
|
"access": "public"
|
|
42
43
|
}
|
package/src/Operation.ts
CHANGED
|
@@ -12,9 +12,11 @@ import {
|
|
|
12
12
|
RefSeqDocument,
|
|
13
13
|
JBrowseConfigDocument,
|
|
14
14
|
UserDocument,
|
|
15
|
+
CheckDocument,
|
|
15
16
|
} from '@apollo-annotation/schemas'
|
|
16
17
|
import type { LoggerService } from '@nestjs/common'
|
|
17
18
|
import type { ClientSession, Model } from 'mongoose'
|
|
19
|
+
import { GenericFilehandle } from 'generic-filehandle'
|
|
18
20
|
|
|
19
21
|
export interface LocalGFF3DataStore {
|
|
20
22
|
typeName: 'LocalGFF3'
|
|
@@ -35,12 +37,14 @@ export interface ServerDataStore {
|
|
|
35
37
|
assemblyModel: Model<AssemblyDocument>
|
|
36
38
|
refSeqModel: Model<RefSeqDocument>
|
|
37
39
|
refSeqChunkModel: Model<RefSeqChunkDocument>
|
|
40
|
+
checkModel: Model<CheckDocument>
|
|
38
41
|
fileModel: Model<FileDocument>
|
|
39
42
|
userModel: Model<UserDocument>
|
|
40
43
|
jbrowseConfigModel: Model<JBrowseConfigDocument>
|
|
41
44
|
session: ClientSession
|
|
42
45
|
filesService: {
|
|
43
46
|
getFileStream(file: FileDocument): ReadStream
|
|
47
|
+
getFileHandle(file: FileDocument): GenericFilehandle
|
|
44
48
|
parseGFF3(stream: ReadStream): ReadStream
|
|
45
49
|
create(createFileDto: CreateFileDto): void
|
|
46
50
|
remove(id: string): void
|