This commit is contained in:
Shuchang Zheng
2026-02-19 12:42:59 -08:00
committed by GitHub
parent 1a63fa797b
commit 4dbe0f9772
13 changed files with 47 additions and 32 deletions

View File

@@ -26,8 +26,8 @@ export class SkyvernClient {
"x-api-key": _options?.apiKey,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@skyvern/client",
"X-Fern-SDK-Version": "1.0.15",
"User-Agent": "@skyvern/client/1.0.15",
"X-Fern-SDK-Version": "1.0.16",
"User-Agent": "@skyvern/client/1.0.16",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},

View File

@@ -1,7 +1,9 @@
// This file was auto-generated by Fern from our API Definition.
/**
* Response model for credit card credentials, containing only the last four digits and brand.
* Response model for credit card credentials — non-sensitive fields only.
*
* SECURITY: Must NEVER include full card number, CVV, expiration date, or card holder name.
*/
export interface CreditCardCredentialResponse {
/** Last four digits of the credit card number */

View File

@@ -3,7 +3,9 @@
import type * as Skyvern from "../index.js";
/**
* Response model for password credentials, containing only the username.
* Response model for password credentials — non-sensitive fields only.
*
* SECURITY: Must NEVER include password, TOTP secret, or TOTP identifier.
*/
export interface PasswordCredentialResponse {
/** The username associated with the credential */

View File

@@ -1,7 +1,9 @@
// This file was auto-generated by Fern from our API Definition.
/**
* Response model for secret credentials.
* Response model for secret credentials — non-sensitive fields only.
*
* SECURITY: Must NEVER include the secret_value.
*/
export interface SecretCredentialResponse {
/** Optional label for the stored secret */

View File

@@ -1 +1 @@
export const SDK_VERSION = "1.0.15";
export const SDK_VERSION = "1.0.16";