feat(api): changed build script
feat(api): changed search payload schema
This commit is contained in:
parent
e02afe51da
commit
de1d9d08f7
2 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ function build_api(){
|
|||
[[ $PUSH_IMAGE -eq 1 ]] && {
|
||||
docker push ${DOCKER_REPO:-'local'}/api:${git_sha1}
|
||||
docker tag ${DOCKER_REPO:-'local'}/api:${git_sha1} ${DOCKER_REPO:-'local'}/api:${tag}latest
|
||||
docker push ${DOCKER_REPO:-'local'}/api:${tag}latest
|
||||
docker push ${DOCKER_REPO:-'local'}/api:${tag}api
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -433,7 +433,7 @@ class SessionsSearchPayloadSchema(BaseModel):
|
|||
endDate: int = Field(None)
|
||||
sort: str = Field(...)
|
||||
order: str = Field(default="DESC")
|
||||
platform: Optional[PlatformType] = Field(None)
|
||||
# platform: Optional[PlatformType] = Field(None)
|
||||
events_order: Optional[SearchEventOrder] = Field(default=SearchEventOrder._then)
|
||||
|
||||
class Config:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue