Skip to content

Commit

Permalink
Ykeremy/add ie proxy (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykeremy authored Jul 31, 2024
1 parent b2d692f commit d1292d6
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"""Add RESIDENTIAL_IE to ProxyLocation enum
Revision ID: c5ed5a3a14eb
Revises: 94bc3829eed6
Create Date: 2024-07-31 09:32:03.548241+00:00
"""

from typing import Sequence, Union

from alembic import op

# revision identifiers, used by Alembic.
revision: str = "c5ed5a3a14eb"
down_revision: Union[str, None] = "94bc3829eed6"
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! ###
op.execute("ALTER TYPE proxylocation ADD VALUE 'RESIDENTIAL_IE'")
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
1 change: 1 addition & 0 deletions skyvern/forge/sdk/schemas/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class ProxyLocation(StrEnum):
US_WA = "US-WA"
RESIDENTIAL = "RESIDENTIAL"
RESIDENTIAL_ES = "RESIDENTIAL_ES"
RESIDENTIAL_IE = "RESIDENTIAL_IE"
NONE = "NONE"


Expand Down

0 comments on commit d1292d6

Please sign in to comment.