File tree 1 file changed +9
-0
lines changed 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ import { Boolean } from '../model/attributes/types/Boolean'
10
10
import { Uid } from '../model/attributes/types/Uid'
11
11
import { Relation } from '../model/attributes/relations/Relation'
12
12
import { HasOne } from '../model/attributes/relations/HasOne'
13
+ import { BelongsTo } from '../model/attributes/relations/BelongsTo'
13
14
import { HasMany } from '../model/attributes/relations/HasMany'
15
+ import { HasManyBy } from '../model/attributes/relations/HasManyBy'
16
+ import { MorphOne } from '../model/attributes/relations/MorphOne'
14
17
import { Repository } from '../repository/Repository'
15
18
import { Interpreter } from '../interpreter/Interpreter'
16
19
import { Query } from '../query/Query'
@@ -42,7 +45,10 @@ export interface VuexORMPluginComponents {
42
45
Uid : typeof Uid
43
46
Relation : typeof Relation
44
47
HasOne : typeof HasOne
48
+ BelongsTo : typeof BelongsTo
45
49
HasMany : typeof HasMany
50
+ HasManyBy : typeof HasManyBy
51
+ MorphOne : typeof MorphOne
46
52
Repository : typeof Repository
47
53
Interpreter : typeof Interpreter
48
54
Query : typeof Query
@@ -72,7 +78,10 @@ export const components: VuexORMPluginComponents = {
72
78
Uid,
73
79
Relation,
74
80
HasOne,
81
+ BelongsTo,
75
82
HasMany,
83
+ HasManyBy,
84
+ MorphOne,
76
85
Repository,
77
86
Interpreter,
78
87
Query,
You can’t perform that action at this time.
0 commit comments