Skip to content

Commit

Permalink
feat(odbc): adding odbc data source to config
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Feb 23, 2024
1 parent 9e10ca0 commit b5a6a38
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions netsuite/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ class TokenAuth(BaseModel):
class Config(BaseModel):
account: str
auth: TokenAuth

log_level: t.Optional[str] = None

# TODO ODBC is not yet fully supported, but this is the first step
odbc_data_source: t.Literal["NetSuite.com", "NetSuite2.com"] = "NetSuite.com"

# TODO: Support OAuth2
# auth: Union[OAuth2, TokenAuth]

Expand Down

0 comments on commit b5a6a38

Please sign in to comment.