@thisisagile/easy
Advanced tools
Comparing version 17.11.24 to 17.11.25
@@ -14,3 +14,3 @@ import { PageOptions } from '../types/PageList'; | ||
readonly take: Optional<number>; | ||
constructor(path: Json, query: Json, body: T, headers: Record<string, OneOrMore<string>>); | ||
constructor(path: Json | undefined, query: Json | undefined, body: T, headers: Record<string, OneOrMore<string>>); | ||
get id(): Id; | ||
@@ -17,0 +17,0 @@ get q(): JsonValue; |
{ | ||
"name": "@thisisagile/easy", | ||
"version": "17.11.24", | ||
"version": "17.11.25", | ||
"description": "Straightforward library for building domain-driven microservice architectures", | ||
@@ -5,0 +5,0 @@ "author": "Sander Hoogendoorn", |
@@ -60,3 +60,3 @@ import { Property, PropertyOptions } from './Property'; | ||
private get droppedOut(): List<string> { | ||
return this.get('droppedOut', () => this.properties.filter(([, p]) => !this.keys.some(k => k === p.property ?? '')).map(([k]) => k)); | ||
return this.get('droppedOut', () => this.properties.filter(([, p]) => !this.keys.some(k => k === (p.property ?? ''))).map(([k]) => k)); | ||
} | ||
@@ -63,0 +63,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1121623