events initated first endpoint tested
This commit is contained in:
@@ -22,6 +22,7 @@ class MetaDataRow(BaseModel):
|
||||
class Credentials(BaseModel):
|
||||
person_id: int
|
||||
person_name: str
|
||||
full_name: Optional[str] = None
|
||||
|
||||
|
||||
class CrudActions(SystemFields):
|
||||
|
||||
@@ -118,8 +118,8 @@ class Pagination:
|
||||
"totalCount": self.total_count,
|
||||
"totalPages": self.total_pages,
|
||||
"pageCount": self.page_count,
|
||||
"order_field": self.orderField,
|
||||
"order_type": self.orderType,
|
||||
"orderField": self.orderField,
|
||||
"orderType": self.orderType,
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@ adding convenience methods for accessing data and managing query state.
|
||||
from typing import Any, Dict, Optional, TypeVar, Generic, Union
|
||||
from sqlalchemy.orm import Query
|
||||
|
||||
|
||||
T = TypeVar("T")
|
||||
|
||||
|
||||
@@ -16,7 +17,6 @@ class PostgresResponse(Generic[T]):
|
||||
Wrapper for PostgreSQL/SQLAlchemy query results.
|
||||
|
||||
Attributes:
|
||||
query: SQLAlchemy query object
|
||||
metadata: Additional metadata for the query
|
||||
|
||||
Properties:
|
||||
|
||||
Reference in New Issue
Block a user