Skip to content

Commit 484b4e0

Browse files
committed
🔄 synced local 'skyvern-frontend/src/' with remote 'skyvern-frontend/src/'
- **Add org index to the actions table** - **Add DE Proxy** <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Add support for 'RESIDENTIAL_DE' proxy location across database, configuration, proxy management, and frontend components. > > - **Database**: > - Add 'RESIDENTIAL_DE' to `proxylocation` enum in `add_residential_de_proxy.py`. > - **Configuration**: > - Add `WEBSHARE_IO_RESIDENTIAL_PROXY_USERNAME_DE` to `CloudSettings` in `config.py`. > - Update `job-definition-production.json`, `job-definition-staging.json`, `observer-definition-production.json`, `observer-definition-staging.json`, `task-definition-staging.json`, `worker-staging-terraform/temporal_worker.tf`, `worker-terraform/temporal_worker.tf`, `workflow-job-definition-production.json`, and `workflow-job-definition-staging.json` to include `WEBSHARE_IO_RESIDENTIAL_PROXY_USERNAME_DE`. > - **Proxy Management**: > - Add `RESIDENTIAL_DE` to `ProxyLocation` in `proxy.py` and handle it in `build_proxy_config_webshare_io()` and `build_proxy_config()`. > - **Frontend**: > - Add `ResidentialDE` to `ProxyLocation` in `types.ts`. > - Update `ProxySelector.tsx` to include 'Residential (Germany)'. > - **Miscellaneous**: > - Update `get_tzinfo_from_proxy()` in `tasks.py` to return `ZoneInfo("Europe/Berlin")` for `RESIDENTIAL_DE`. > > <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral)<sup> for b0ca88184450448608fe17f2880c3d0dfd2748cc. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
1 parent fba94e2 commit 484b4e0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

‎skyvern-frontend/src/api/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export const ProxyLocation = {
3737
ResidentialJP: "RESIDENTIAL_JP",
3838
ResidentialGB: "RESIDENTIAL_GB",
3939
ResidentialFR: "RESIDENTIAL_FR",
40+
ResidentialDE: "RESIDENTIAL_DE",
4041
None: "NONE",
4142
} as const;
4243

‎skyvern-frontend/src/components/ProxySelector.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ function ProxySelector({ value, onChange, className }: Props) {
3939
<SelectItem value={ProxyLocation.ResidentialFR}>
4040
Residential (France)
4141
</SelectItem>
42+
<SelectItem value={ProxyLocation.ResidentialDE}>
43+
Residential (Germany)
44+
</SelectItem>
4245
</SelectContent>
4346
</Select>
4447
);

0 commit comments

Comments
 (0)