Compare commits

..

8 Commits

Author SHA1 Message Date
wulkanat@gmail.com
3d9d28c60c 0.44.0 2021-04-12 15:06:04 +02:00
Wieland Schöbl
913c5691da feat: add support for multiple values in the value filter 2021-04-08 08:06:38 +00:00
Rainer Killinger
03cdbc6f9b docs: update changelog 2021-04-07 13:34:33 +02:00
Rainer Killinger
9f886a8968 0.43.0 2021-04-07 13:34:29 +02:00
openstappsbot
e80afe2c93 refactor: update all 2021-04-06 16:12:49 +00:00
Rainer Killinger
6b10cc86d8 refactor: update @types/node for node version 14 2021-04-06 14:08:42 +02:00
openstappsbot
1aedd6332f refactor: update all 2021-03-29 04:15:38 +00:00
Rainer Killinger
790c8bbc3f docs: update changelog 2021-02-16 14:04:46 +01:00
4 changed files with 391 additions and 396 deletions

View File

@@ -1,3 +1,11 @@
# [0.43.0](https://gitlab.com/openstapps/core/compare/v0.42.0...v0.43.0) (2021-04-07)
# [0.42.0](https://gitlab.com/openstapps/core/compare/v0.41.0...v0.42.0) (2021-02-16)
# [0.41.0](https://gitlab.com/openstapps/core/compare/v0.40.0...v0.41.0) (2021-02-08)

757
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@openstapps/core",
"version": "0.42.0",
"version": "0.44.0",
"description": "StAppsCore - Generalized model of data",
"keywords": [
"Model",
@@ -43,28 +43,28 @@
"Wieland Schöbl"
],
"dependencies": {
"@openstapps/core-tools": "0.17.0",
"@openstapps/core-tools": "0.19.0",
"@types/geojson": "1.0.6",
"@types/json-patch": "0.0.30",
"@types/json-schema": "7.0.7",
"@types/node": "10.17.44",
"@types/node": "14.14.37",
"fast-clone": "1.5.13",
"fast-deep-equal": "3.1.3",
"http-status-codes": "2.1.4",
"json-patch": "0.7.0",
"json-schema": "0.2.5",
"json-schema": "0.3.0",
"ts-optchain": "0.1.8"
},
"devDependencies": {
"@openstapps/configuration": "0.25.0",
"@openstapps/logger": "0.5.0",
"@openstapps/configuration": "0.27.0",
"@openstapps/logger": "0.6.0",
"@testdeck/mocha": "0.1.2",
"@types/chai": "4.2.15",
"@types/chai": "4.2.16",
"@types/rimraf": "3.0.0",
"chai": "4.3.0",
"chai": "4.3.4",
"conditional-type-checks": "1.0.5",
"conventional-changelog-cli": "2.1.1",
"mocha": "8.3.0",
"mocha": "8.3.2",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",

View File

@@ -32,7 +32,7 @@ export interface SCValueFilterArguments extends SCSearchAbstractFilterArguments
field: SCThingsField;
/**
* Value to filter. Value has to match the field exactly.
* Value to filter. One or more values has to match the field exactly.
*/
value: string;
value: string | string[];
}