@skyvern/client 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Client.js +2 -2
- package/dist/cjs/api/types/CreditCardCredentialResponse.d.ts +3 -1
- package/dist/cjs/api/types/PasswordCredentialResponse.d.ts +3 -1
- package/dist/cjs/api/types/SecretCredentialResponse.d.ts +3 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/types/CreditCardCredentialResponse.d.mts +3 -1
- package/dist/esm/api/types/PasswordCredentialResponse.d.mts +3 -1
- package/dist/esm/api/types/SecretCredentialResponse.d.mts +3 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/Client.js
CHANGED
|
@@ -56,8 +56,8 @@ class SkyvernClient {
|
|
|
56
56
|
"x-api-key": _options === null || _options === void 0 ? void 0 : _options.apiKey,
|
|
57
57
|
"X-Fern-Language": "JavaScript",
|
|
58
58
|
"X-Fern-SDK-Name": "@skyvern/client",
|
|
59
|
-
"X-Fern-SDK-Version": "1.0.
|
|
60
|
-
"User-Agent": "@skyvern/client/1.0.
|
|
59
|
+
"X-Fern-SDK-Version": "1.0.16",
|
|
60
|
+
"User-Agent": "@skyvern/client/1.0.16",
|
|
61
61
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
62
62
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
63
63
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Response model for credit card credentials
|
|
2
|
+
* Response model for credit card credentials — non-sensitive fields only.
|
|
3
|
+
*
|
|
4
|
+
* SECURITY: Must NEVER include full card number, CVV, expiration date, or card holder name.
|
|
3
5
|
*/
|
|
4
6
|
export interface CreditCardCredentialResponse {
|
|
5
7
|
/** Last four digits of the credit card number */
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type * as Skyvern from "../index.js";
|
|
2
2
|
/**
|
|
3
|
-
* Response model for password credentials
|
|
3
|
+
* Response model for password credentials — non-sensitive fields only.
|
|
4
|
+
*
|
|
5
|
+
* SECURITY: Must NEVER include password, TOTP secret, or TOTP identifier.
|
|
4
6
|
*/
|
|
5
7
|
export interface PasswordCredentialResponse {
|
|
6
8
|
/** The username associated with the credential */
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Response model for secret credentials.
|
|
2
|
+
* Response model for secret credentials — non-sensitive fields only.
|
|
3
|
+
*
|
|
4
|
+
* SECURITY: Must NEVER include the secret_value.
|
|
3
5
|
*/
|
|
4
6
|
export interface SecretCredentialResponse {
|
|
5
7
|
/** Optional label for the stored secret */
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.0.
|
|
1
|
+
export declare const SDK_VERSION = "1.0.16";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -20,8 +20,8 @@ export class SkyvernClient {
|
|
|
20
20
|
"x-api-key": _options === null || _options === void 0 ? void 0 : _options.apiKey,
|
|
21
21
|
"X-Fern-Language": "JavaScript",
|
|
22
22
|
"X-Fern-SDK-Name": "@skyvern/client",
|
|
23
|
-
"X-Fern-SDK-Version": "1.0.
|
|
24
|
-
"User-Agent": "@skyvern/client/1.0.
|
|
23
|
+
"X-Fern-SDK-Version": "1.0.16",
|
|
24
|
+
"User-Agent": "@skyvern/client/1.0.16",
|
|
25
25
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
26
26
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
27
27
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Response model for credit card credentials
|
|
2
|
+
* Response model for credit card credentials — non-sensitive fields only.
|
|
3
|
+
*
|
|
4
|
+
* SECURITY: Must NEVER include full card number, CVV, expiration date, or card holder name.
|
|
3
5
|
*/
|
|
4
6
|
export interface CreditCardCredentialResponse {
|
|
5
7
|
/** Last four digits of the credit card number */
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type * as Skyvern from "../index.mjs";
|
|
2
2
|
/**
|
|
3
|
-
* Response model for password credentials
|
|
3
|
+
* Response model for password credentials — non-sensitive fields only.
|
|
4
|
+
*
|
|
5
|
+
* SECURITY: Must NEVER include password, TOTP secret, or TOTP identifier.
|
|
4
6
|
*/
|
|
5
7
|
export interface PasswordCredentialResponse {
|
|
6
8
|
/** The username associated with the credential */
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Response model for secret credentials.
|
|
2
|
+
* Response model for secret credentials — non-sensitive fields only.
|
|
3
|
+
*
|
|
4
|
+
* SECURITY: Must NEVER include the secret_value.
|
|
3
5
|
*/
|
|
4
6
|
export interface SecretCredentialResponse {
|
|
5
7
|
/** Optional label for the stored secret */
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.0.
|
|
1
|
+
export declare const SDK_VERSION = "1.0.16";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "1.0.
|
|
1
|
+
export const SDK_VERSION = "1.0.16";
|