bump to 1.0.17 (#4819)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "skyvern"
|
name = "skyvern"
|
||||||
version = "1.0.16"
|
version = "1.0.17"
|
||||||
description = ""
|
description = ""
|
||||||
authors = [{ name = "Skyvern AI", email = "info@skyvern.com" }]
|
authors = [{ name = "Skyvern AI", email = "info@skyvern.com" }]
|
||||||
requires-python = ">=3.11,<3.14"
|
requires-python = ">=3.11,<3.14"
|
||||||
|
|||||||
360
skyvern-ts/client/package-lock.json
generated
360
skyvern-ts/client/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@skyvern/client",
|
"name": "@skyvern/client",
|
||||||
"version": "1.0.16",
|
"version": "1.0.17",
|
||||||
"private": false,
|
"private": false,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
@@ -26,8 +26,8 @@ export class SkyvernClient {
|
|||||||
"x-api-key": _options?.apiKey,
|
"x-api-key": _options?.apiKey,
|
||||||
"X-Fern-Language": "JavaScript",
|
"X-Fern-Language": "JavaScript",
|
||||||
"X-Fern-SDK-Name": "@skyvern/client",
|
"X-Fern-SDK-Name": "@skyvern/client",
|
||||||
"X-Fern-SDK-Version": "1.0.16",
|
"X-Fern-SDK-Version": "1.0.17",
|
||||||
"User-Agent": "@skyvern/client/1.0.16",
|
"User-Agent": "@skyvern/client/1.0.17",
|
||||||
"X-Fern-Runtime": core.RUNTIME.type,
|
"X-Fern-Runtime": core.RUNTIME.type,
|
||||||
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export const SDK_VERSION = "1.0.16";
|
export const SDK_VERSION = "1.0.17";
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ class BaseClientWrapper:
|
|||||||
|
|
||||||
def get_headers(self) -> typing.Dict[str, str]:
|
def get_headers(self) -> typing.Dict[str, str]:
|
||||||
headers: typing.Dict[str, str] = {
|
headers: typing.Dict[str, str] = {
|
||||||
"User-Agent": "skyvern/1.0.16",
|
"User-Agent": "skyvern/1.0.17",
|
||||||
"X-Fern-Language": "Python",
|
"X-Fern-Language": "Python",
|
||||||
"X-Fern-SDK-Name": "skyvern",
|
"X-Fern-SDK-Name": "skyvern",
|
||||||
"X-Fern-SDK-Version": "1.0.16",
|
"X-Fern-SDK-Version": "1.0.17",
|
||||||
**(self.get_custom_headers() or {}),
|
**(self.get_custom_headers() or {}),
|
||||||
}
|
}
|
||||||
if self._api_key is not None:
|
if self._api_key is not None:
|
||||||
|
|||||||
@@ -31,13 +31,18 @@ pytest tests/sdk/python_sdk/test_sdk_simple_actions.py::test_clicks
|
|||||||
**Location:** `tests/sdk/typescript_sdk/`
|
**Location:** `tests/sdk/typescript_sdk/`
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
- Requires `.env` with `SKYVERN_API_KEY`
|
- Requires `.env` with `SKYVERN_API_KEY` — copy from the repo root: `cp .env tests/sdk/typescript_sdk/.env`
|
||||||
- Requires Chrome with CDP on `localhost:9222`
|
- Requires the Skyvern server running: `skyvern run server`
|
||||||
|
- Requires Chrome/Chromium with CDP on `localhost:9222` (see below)
|
||||||
- Web server auto-starts via `run-test.js`
|
- Web server auto-starts via `run-test.js`
|
||||||
|
|
||||||
**Launch Chrome with CDP:**
|
**Launch Chromium with CDP:**
|
||||||
```bash
|
```bash
|
||||||
/Users/stas/Library/Caches/ms-playwright/chromium-1194/chrome-mac/Chromium.app/Contents/MacOS/Chromium \
|
# Find your Playwright Chromium path
|
||||||
|
ls ~/Library/Caches/ms-playwright/
|
||||||
|
|
||||||
|
# Then launch it (adjust the chromium-XXXX version to match yours)
|
||||||
|
~/Library/Caches/ms-playwright/chromium-XXXX/chrome-mac/Chromium.app/Contents/MacOS/Chromium \
|
||||||
--remote-debugging-port=9222 \
|
--remote-debugging-port=9222 \
|
||||||
--user-data-dir=~/tmp/chrome-playwright \
|
--user-data-dir=~/tmp/chrome-playwright \
|
||||||
about:blank
|
about:blank
|
||||||
|
|||||||
Reference in New Issue
Block a user