mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
update seach source connector schema
This commit is contained in:
parent
9abaf4fd2a
commit
f96afe0e2a
3 changed files with 22 additions and 26 deletions
13
surfsense_backend/app/schemas/google_auth_credentials.py
Normal file
13
surfsense_backend/app/schemas/google_auth_credentials.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from datetime import datetime
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class GoogleAuthCredentialsBase(BaseModel):
|
||||
token: str
|
||||
refresh_token: str
|
||||
token_uri: str
|
||||
client_id: str
|
||||
expiry: datetime
|
||||
scopes: list[str]
|
||||
client_secret: str
|
||||
Loading…
Add table
Add a link
Reference in a new issue