add 1password service token support (#3085)

This commit is contained in:
Shuchang Zheng
2025-08-01 09:21:08 -07:00
committed by GitHub
parent 485dbb9662
commit 7ad7bb05a4
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
"""add 1password service account token type
Revision ID: 9d5586b98530
Revises: 1b2a8b62de61
Create Date: 2025-08-01 15:54:52.039564+00:00
"""
from typing import Sequence, Union
# revision identifiers, used by Alembic.
revision: str = "9d5586b98530"
down_revision: Union[str, None] = "1b2a8b62de61"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###

View File

@@ -3,6 +3,7 @@ from enum import StrEnum
class OrganizationAuthTokenType(StrEnum):
api = "api"
onepassword_service_account = "onepassword_service_account"
class TaskType(StrEnum):