Skip to content

Commit e1de271

Browse files
committed
Add missing type license #325
otherwise npm run build fails
1 parent 0137037 commit e1de271

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/types.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
module.exports = (languages) => `
22
3+
type License {
4+
id: String
5+
}
6+
37
type Collection implements Node {
48
type: String,
59
prefLabel: LanguageMap,
@@ -18,7 +22,8 @@ module.exports = (languages) => `
1822
issued: String,
1923
preferredNamespaceUri: String,
2024
preferredNamespacePrefix: String,
21-
publisher: Concept
25+
publisher: Concept,
26+
license: License
2227
}
2328
2429
type Concept implements Node {

0 commit comments

Comments
 (0)