Sign In

@applitools/utils

Package Overview
Dependencies
Maintainers
48
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/utils - npm Package Compare versions

Comparing version
1.13.0
to
1.14.0
+7
-0
CHANGELOG.md
# Changelog
## [1.14.0](https://github.com/Applitools-Dev/sdk/compare/js/utils@1.13.0...js/utils@1.14.0) (2025-11-19)
### Features
* disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
## [1.13.0](https://github.com/Applitools-Dev/sdk/compare/js/utils@1.12.0...js/utils@1.13.0) (2025-11-09)

@@ -4,0 +11,0 @@

+1
-1
{
"name": "@applitools/utils",
"version": "1.13.0",
"version": "1.14.0",
"keywords": [

@@ -5,0 +5,0 @@ "applitools",

@@ -14,3 +14,3 @@ export declare function getEnvValue<T extends 'boolean' | 'number' | 'string' = 'string'>(name: string, type?: T): T extends 'boolean' ? boolean : T extends 'number' ? number : T extends 'string' ? string : string | undefined;

export declare function jwtDecode(token: string): Record<string, any>;
export declare function sleep(ms: number): Promise<unknown> | undefined;
export declare function sleep(ms: number): Promise<void>;
export declare function toJSON<TObject extends Record<PropertyKey, any>, TKey extends string, TProps extends Readonly<TKey[]>>(object: TObject, props: TProps): {

@@ -17,0 +17,0 @@ [key in TProps[number]]: TObject[key] extends {