File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
infra/repositories/transformers
test/testHelpers/collections Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export interface Collection {
44 id : number
55 alias : string
66 name : string
7- isReleased : string
7+ isReleased : boolean
88 affiliation ?: string
99 description ?: string
1010 isPartOf : DvObjectOwnerNode
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export interface CollectionPayload {
55 alias : string
66 name : string
77 affiliation ?: string
8- isReleased : string
8+ isReleased : boolean
99 description ?: string
1010 isPartOf : OwnerNodePayload
1111 inputLevels ?: CollectionInputLevelPayload [ ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { NewCollectionRequestPayload } from '../../../src/collections/infra/repo
88import { CollectionFacetPayload } from '../../../src/collections/infra/repositories/transformers/CollectionFacetPayload'
99
1010const COLLECTION_ID = 11111
11- const COLLECTION_IS_RELEASED = ' true'
11+ const COLLECTION_IS_RELEASED = true
1212const COLLECTION_ALIAS_STR = 'secondCollection'
1313const COLLECTION_NAME_STR = 'Laboratory Research'
1414const COLLECTION_AFFILIATION_STR = 'Laboratory Research Corporation'
You can’t perform that action at this time.
0 commit comments