Skip to content

Commit 5d4b96c

Browse files
author
Edward Keeble
committed
Updated PgstacSearch to include two new optional properties for pgstac v0.4.0
1 parent c844034 commit 5d4b96c

File tree

1 file changed

+2
-0
lines changed
  • stac_fastapi/pgstac/stac_fastapi/pgstac/types

1 file changed

+2
-0
lines changed

stac_fastapi/pgstac/stac_fastapi/pgstac/types/search.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,14 @@ class PgstacSearch(Search):
9191

9292
# Make collections optional, default to searching all collections if none are provided
9393
collections: Optional[List[str]] = None
94+
conf: Optional[Dict]
9495
ids: Optional[List[str]] = None
9596
# Override default field extension to include default fields and pydantic includes/excludes factory
9697
fields: FieldsExtension = Field(FieldsExtension())
9798
# Override query extension with supported operators
9899
query: Optional[Dict[str, Dict[Operator, Any]]]
99100
filter: Optional[Dict]
101+
filter_lang: Optional[str] = Field(alias="filter-lang")
100102
token: Optional[str] = None
101103
datetime: Optional[str] = None
102104
sortby: Any

0 commit comments

Comments
 (0)