diff --git a/core-java/pom.xml b/core-java/pom.xml
index 384c214af..5c4855830 100644
--- a/core-java/pom.xml
+++ b/core-java/pom.xml
@@ -54,7 +54,7 @@
3.11.0
3.3.0
1.1.0
- 10.12.3
+ 10.12.4
1.9.20.1
testng
test-suites/${suite-name}.xml
diff --git a/core-java/src/main/java/com/github/wasiqb/boyka/actions/device/DeviceActions.java b/core-java/src/main/java/com/github/wasiqb/boyka/actions/device/DeviceActions.java
index 7ad294d96..07d4ac621 100644
--- a/core-java/src/main/java/com/github/wasiqb/boyka/actions/device/DeviceActions.java
+++ b/core-java/src/main/java/com/github/wasiqb/boyka/actions/device/DeviceActions.java
@@ -21,7 +21,6 @@
import static com.github.wasiqb.boyka.enums.DeviceType.CLOUD;
import static com.github.wasiqb.boyka.enums.ListenerType.DEVICE_ACTION;
import static com.github.wasiqb.boyka.enums.Message.NO_KEYBOARD_ERROR;
-import static com.github.wasiqb.boyka.enums.Message.RECORDING_NOT_SUPPORTED;
import static com.github.wasiqb.boyka.enums.PlatformType.ANDROID;
import static com.github.wasiqb.boyka.enums.PlatformType.IOS;
import static com.github.wasiqb.boyka.enums.PlatformType.WEB;
@@ -92,27 +91,29 @@ public boolean isKeyboardVisible () {
@Override
public void startRecording () {
final var platform = getSession ().getPlatformType ();
- checkVideoSupported (platform);
- final var mobileSetting = getSession ().getMobileSetting ()
- .getDevice ();
- final var setting = mobileSetting.getVideo ();
- if (setting.isEnabled () && mobileSetting.getType () != CLOUD) {
- final var screen = (CanRecordScreen) getSession ().getDriver ();
- startRecording (screen, setting, platform);
+ if (platform == ANDROID || platform == IOS) {
+ final var mobileSetting = getSession ().getMobileSetting ()
+ .getDevice ();
+ final var setting = mobileSetting.getVideo ();
+ if (mobileSetting.getType () != CLOUD && setting.isEnabled ()) {
+ final var screen = (CanRecordScreen) getSession ().getDriver ();
+ startRecording (screen, setting, platform);
+ }
}
}
@Override
public void stopRecording () {
final var platform = getSession ().getPlatformType ();
- checkVideoSupported (platform);
- final var mobileSetting = getSession ().getMobileSetting ()
- .getDevice ();
- final var setting = mobileSetting.getVideo ();
- if (setting.isEnabled () && mobileSetting.getType () != CLOUD) {
- final var screen = (CanRecordScreen) getSession ().getDriver ();
- final var content = stopRecording (screen, platform);
- saveVideo (content);
+ if (platform == ANDROID || platform == IOS) {
+ final var mobileSetting = getSession ().getMobileSetting ()
+ .getDevice ();
+ final var setting = mobileSetting.getVideo ();
+ if (mobileSetting.getType () != CLOUD && setting.isEnabled ()) {
+ final var screen = (CanRecordScreen) getSession ().getDriver ();
+ final var content = stopRecording (screen, platform);
+ saveVideo (content);
+ }
}
}
@@ -123,12 +124,6 @@ private void checkKeyboardSupported () {
}
}
- private void checkVideoSupported (final PlatformType platform) {
- if (platform != ANDROID && platform != IOS) {
- throwError (RECORDING_NOT_SUPPORTED, platform);
- }
- }
-
private AndroidStartScreenRecordingOptions getAndroidRecordOptions (final VideoSetting setting) {
final var androidSetting = setting.getAndroid ();
final var options = AndroidStartScreenRecordingOptions.startScreenRecordingOptions ();
diff --git a/core-java/src/main/java/com/github/wasiqb/boyka/enums/Message.java b/core-java/src/main/java/com/github/wasiqb/boyka/enums/Message.java
index d284b42dd..26e0a5ef3 100644
--- a/core-java/src/main/java/com/github/wasiqb/boyka/enums/Message.java
+++ b/core-java/src/main/java/com/github/wasiqb/boyka/enums/Message.java
@@ -206,10 +206,6 @@ public enum Message {
* Protocol is required for host name
*/
PROTOCOL_REQUIRED_FOR_HOST ("Protocol is required for host ({0})..."),
- /**
- * Video recording is not supported.
- */
- RECORDING_NOT_SUPPORTED ("Video recording is not supported for ({0}) platform..."),
/**
* Schema validation assert failure
*/
diff --git a/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/saucedemo/SauceDemoTest.java b/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/saucedemo/SauceDemoTest.java
index 8b73c4be1..f5a9bf997 100644
--- a/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/saucedemo/SauceDemoTest.java
+++ b/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/saucedemo/SauceDemoTest.java
@@ -1,5 +1,6 @@
package com.github.wasiqb.boyka.testng.ui.saucedemo;
+import static com.github.wasiqb.boyka.actions.device.DeviceActions.onDevice;
import static com.github.wasiqb.boyka.actions.drivers.ContextActions.withContext;
import static com.github.wasiqb.boyka.actions.drivers.DriverActions.withDriver;
import static com.github.wasiqb.boyka.actions.drivers.WindowActions.onWindow;
@@ -46,6 +47,7 @@ public void afterMethod (final ITestResult result) {
@Parameters ({ "platformType", "driverKey" })
public void setupTestClass (final PlatformType platformType, final String driverKey) {
createSession (format ("SauceDemoTest-{0}", platformType), platformType, driverKey);
+ onDevice ().startRecording ();
this.sauceDemo = new SauceDemoActions ();
}
@@ -54,6 +56,7 @@ public void setupTestClass (final PlatformType platformType, final String driver
*/
@AfterClass (description = "Tear down test class", alwaysRun = true)
public void tearDownTestClass () {
+ onDevice ().stopRecording ();
withDriver ().saveLogs ();
clearSession ();
}
diff --git a/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/theinternet/LoginTest.java b/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/theinternet/LoginTest.java
index 11f7c91ac..a4760774e 100644
--- a/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/theinternet/LoginTest.java
+++ b/core-java/src/test/java/com/github/wasiqb/boyka/testng/ui/theinternet/LoginTest.java
@@ -22,7 +22,6 @@
import static com.github.wasiqb.boyka.actions.elements.ClickableActions.withMouse;
import static com.github.wasiqb.boyka.actions.elements.ElementActions.onElement;
import static com.github.wasiqb.boyka.actions.elements.TextBoxActions.onTextBox;
-import static com.github.wasiqb.boyka.enums.PlatformType.WEB;
import static com.github.wasiqb.boyka.manager.ParallelSession.clearSession;
import static com.github.wasiqb.boyka.manager.ParallelSession.createSession;
import static com.github.wasiqb.boyka.testng.ui.theinternet.pages.LoginPage.loginPage;
@@ -67,9 +66,7 @@ public void afterMethod (final ITestResult result) {
public void setupClass (final PlatformType platformType, final String driverKey) {
createSession ("LoginTest", platformType, driverKey);
this.platformType = platformType;
- if (platformType != WEB) {
- onDevice ().startRecording ();
- }
+ onDevice ().startRecording ();
navigate ().to (URL);
}
@@ -78,9 +75,7 @@ public void setupClass (final PlatformType platformType, final String driverKey)
*/
@AfterClass (description = "Tear down test class")
public void tearDownClass () {
- if (this.platformType != WEB) {
- onDevice ().stopRecording ();
- }
+ onDevice ().stopRecording ();
clearSession ();
}
diff --git a/package.json b/package.json
index 8a12dc4d8..3037a6a8b 100644
--- a/package.json
+++ b/package.json
@@ -33,9 +33,9 @@
"@commitlint/config-conventional": "^18.0.0",
"@lerna/child-process": "^7.4.1",
"@lerna/version": "^6.6.2",
- "@types/node": "^20.8.7",
- "@typescript-eslint/eslint-plugin": "^6.8.0",
- "@typescript-eslint/parser": "^6.8.0",
+ "@types/node": "^20.8.8",
+ "@typescript-eslint/eslint-plugin": "^6.9.0",
+ "@typescript-eslint/parser": "^6.9.0",
"commitlint": "^18.0.0",
"eslint": "^8.52.0",
"eslint-config-google": "^0.14.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 46b5c663f..02177b68d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -21,14 +21,14 @@ importers:
specifier: ^6.6.2
version: 6.6.2
'@types/node':
- specifier: ^20.8.7
- version: 20.8.7
+ specifier: ^20.8.8
+ version: 20.8.8
'@typescript-eslint/eslint-plugin':
- specifier: ^6.8.0
- version: 6.8.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ^6.9.0
+ version: 6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@5.2.2)
'@typescript-eslint/parser':
- specifier: ^6.8.0
- version: 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ^6.9.0
+ version: 6.9.0(eslint@8.52.0)(typescript@5.2.2)
commitlint:
specifier: ^18.0.0
version: 18.0.0
@@ -43,10 +43,10 @@ importers:
version: 9.0.0(eslint@8.52.0)
eslint-import-resolver-typescript:
specifier: ^3.6.1
- version: 3.6.1(@typescript-eslint/parser@6.8.0)(eslint-plugin-import@2.29.0)(eslint@8.52.0)
+ version: 3.6.1(@typescript-eslint/parser@6.9.0)(eslint-plugin-import@2.29.0)(eslint@8.52.0)
eslint-plugin-import:
specifier: ^2.29.0
- version: 2.29.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
+ version: 2.29.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.0.1(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@3.0.3)
@@ -88,7 +88,7 @@ importers:
version: 5.0.5
ts-node:
specifier: ^10.9.1
- version: 10.9.1(@types/node@20.8.7)(typescript@5.2.2)
+ version: 10.9.1(@types/node@20.8.8)(typescript@5.2.2)
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -4134,6 +4134,10 @@ packages:
/@types/json-schema@7.0.13:
resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==}
+ /@types/json-schema@7.0.14:
+ resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==}
+ dev: true
+
/@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
@@ -4173,8 +4177,8 @@ packages:
/@types/node@20.8.3:
resolution: {integrity: sha512-jxiZQFpb+NlH5kjW49vXxvxTjeeqlbsnTAdBTKpzEdPs9itay7MscYXz3Fo9VYFEsfQ6LJFitHad3faerLAjCw==}
- /@types/node@20.8.7:
- resolution: {integrity: sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==}
+ /@types/node@20.8.8:
+ resolution: {integrity: sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==}
dependencies:
undici-types: 5.25.3
dev: true
@@ -4242,8 +4246,8 @@ packages:
/@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- /@types/semver@7.5.3:
- resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==}
+ /@types/semver@7.5.4:
+ resolution: {integrity: sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==}
dev: true
/@types/send@0.17.1:
@@ -4285,8 +4289,8 @@ packages:
dependencies:
'@types/yargs-parser': 21.0.0
- /@typescript-eslint/eslint-plugin@6.8.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-GosF4238Tkes2SHPQ1i8f6rMtG6zlKwMEB0abqSJ3Npvos+doIlc/ATG+vX1G9coDF3Ex78zM3heXHLyWEwLUw==}
+ /@typescript-eslint/eslint-plugin@6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-lgX7F0azQwRPB7t7WAyeHWVfW1YJ9NIgd9mvGhfQpRY56X6AVf8mwM8Wol+0z4liE7XX3QOt8MN1rUKCfSjRIA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -4297,11 +4301,11 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.9.1
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.8.0
- '@typescript-eslint/type-utils': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.8.0
+ '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.9.0
+ '@typescript-eslint/type-utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.9.0
debug: 4.3.4
eslint: 8.52.0
graphemer: 1.4.0
@@ -4314,8 +4318,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.8.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-5tNs6Bw0j6BdWuP8Fx+VH4G9fEPDxnVI7yH1IAPkQH5RUtvKwRoqdecAPdQXv4rSOADAaz1LFBZvZG7VbXivSg==}
+ /@typescript-eslint/parser@6.9.0(eslint@8.52.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-GZmjMh4AJ/5gaH4XF2eXA8tMnHWP+Pm1mjQR2QN4Iz+j/zO04b9TOvJYOX2sCNIQHtRStKTxRY1FX7LhpJT4Gw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -4324,10 +4328,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.8.0
- '@typescript-eslint/types': 6.8.0
- '@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.8.0
+ '@typescript-eslint/scope-manager': 6.9.0
+ '@typescript-eslint/types': 6.9.0
+ '@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.9.0
debug: 4.3.4
eslint: 8.52.0
typescript: 5.2.2
@@ -4335,16 +4339,16 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@6.8.0:
- resolution: {integrity: sha512-xe0HNBVwCph7rak+ZHcFD6A+q50SMsFwcmfdjs9Kz4qDh5hWhaPhFjRs/SODEhroBI5Ruyvyz9LfwUJ624O40g==}
+ /@typescript-eslint/scope-manager@6.9.0:
+ resolution: {integrity: sha512-1R8A9Mc39n4pCCz9o79qRO31HGNDvC7UhPhv26TovDsWPBDx+Sg3rOZdCELIA3ZmNoWAuxaMOT7aWtGRSYkQxw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.8.0
- '@typescript-eslint/visitor-keys': 6.8.0
+ '@typescript-eslint/types': 6.9.0
+ '@typescript-eslint/visitor-keys': 6.9.0
dev: true
- /@typescript-eslint/type-utils@6.8.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-RYOJdlkTJIXW7GSldUIHqc/Hkto8E+fZN96dMIFhuTJcQwdRoGN2rEWA8U6oXbLo0qufH7NPElUb+MceHtz54g==}
+ /@typescript-eslint/type-utils@6.9.0(eslint@8.52.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-XXeahmfbpuhVbhSOROIzJ+b13krFmgtc4GlEuu1WBT+RpyGPIA4Y/eGnXzjbDj5gZLzpAXO/sj+IF/x2GtTMjQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -4353,8 +4357,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2)
- '@typescript-eslint/utils': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
debug: 4.3.4
eslint: 8.52.0
ts-api-utils: 1.0.3(typescript@5.2.2)
@@ -4363,13 +4367,13 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/types@6.8.0:
- resolution: {integrity: sha512-p5qOxSum7W3k+llc7owEStXlGmSl8FcGvhYt8Vjy7FqEnmkCVlM3P57XQEGj58oqaBWDQXbJDZxwUWMS/EAPNQ==}
+ /@typescript-eslint/types@6.9.0:
+ resolution: {integrity: sha512-+KB0lbkpxBkBSiVCuQvduqMJy+I1FyDbdwSpM3IoBS7APl4Bu15lStPjgBIdykdRqQNYqYNMa8Kuidax6phaEw==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/typescript-estree@6.8.0(typescript@5.2.2):
- resolution: {integrity: sha512-ISgV0lQ8XgW+mvv5My/+iTUdRmGspducmQcDw5JxznasXNnZn3SKNrTRuMsEXv+V/O+Lw9AGcQCfVaOPCAk/Zg==}
+ /@typescript-eslint/typescript-estree@6.9.0(typescript@5.2.2):
+ resolution: {integrity: sha512-NJM2BnJFZBEAbCfBP00zONKXvMqihZCrmwCaik0UhLr0vAgb6oguXxLX1k00oQyD+vZZ+CJn3kocvv2yxm4awQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -4377,8 +4381,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.8.0
- '@typescript-eslint/visitor-keys': 6.8.0
+ '@typescript-eslint/types': 6.9.0
+ '@typescript-eslint/visitor-keys': 6.9.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -4389,18 +4393,18 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@6.8.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-dKs1itdE2qFG4jr0dlYLQVppqTE+Itt7GmIf/vX6CSvsW+3ov8PbWauVKyyfNngokhIO9sKZeRGCUo1+N7U98Q==}
+ /@typescript-eslint/utils@6.9.0(eslint@8.52.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-5Wf+Jsqya7WcCO8me504FBigeQKVLAMPmUzYgDbWchINNh1KJbxCgVya3EQ2MjvJMVeXl3pofRmprqX6mfQkjQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 6.8.0
- '@typescript-eslint/types': 6.8.0
- '@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2)
+ '@types/json-schema': 7.0.14
+ '@types/semver': 7.5.4
+ '@typescript-eslint/scope-manager': 6.9.0
+ '@typescript-eslint/types': 6.9.0
+ '@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2)
eslint: 8.52.0
semver: 7.5.4
transitivePeerDependencies:
@@ -4408,11 +4412,11 @@ packages:
- typescript
dev: true
- /@typescript-eslint/visitor-keys@6.8.0:
- resolution: {integrity: sha512-oqAnbA7c+pgOhW2OhGvxm0t1BULX5peQI/rLsNDpGM78EebV3C9IGbX5HNZabuZ6UQrYveCLjKo8Iy/lLlBkkg==}
+ /@typescript-eslint/visitor-keys@6.9.0:
+ resolution: {integrity: sha512-dGtAfqjV6RFOtIP8I0B4ZTBRrlTT8NHHlZZSchQx3qReaoDeXhYM++M4So2AgFK9ZB0emRPA6JI1HkafzA2Ibg==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.8.0
+ '@typescript-eslint/types': 6.9.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -6943,7 +6947,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.8.0)(eslint-plugin-import@2.29.0)(eslint@8.52.0):
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.9.0)(eslint-plugin-import@2.29.0)(eslint@8.52.0):
resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -6953,8 +6957,8 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.52.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
fast-glob: 3.3.1
get-tsconfig: 4.7.2
is-core-module: 2.13.0
@@ -6966,7 +6970,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -6987,16 +6991,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
debug: 3.2.7
eslint: 8.52.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.8.0)(eslint-plugin-import@2.29.0)(eslint@8.52.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.9.0)(eslint-plugin-import@2.29.0)(eslint@8.52.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0):
+ /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0):
resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
engines: {node: '>=4'}
peerDependencies:
@@ -7006,7 +7010,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
@@ -7015,7 +7019,7 @@ packages:
doctrine: 2.1.0
eslint: 8.52.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
hasown: 2.0.0
is-core-module: 2.13.1
is-glob: 4.0.3
@@ -13761,7 +13765,7 @@ packages:
yn: 3.1.1
dev: true
- /ts-node@10.9.1(@types/node@20.8.7)(typescript@5.2.2):
+ /ts-node@10.9.1(@types/node@20.8.8)(typescript@5.2.2):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -13780,7 +13784,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.3
- '@types/node': 20.8.7
+ '@types/node': 20.8.8
acorn: 8.9.0
acorn-walk: 8.2.0
arg: 4.1.3