suitest-js-api 3.5.0 → 3.6.1
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/lib/constants/keys.js +2 -0
- package/package.json +1 -1
- package/typeDefinition/ApplicationChain.d.ts +1 -1
- package/typeDefinition/BrightScriptExpression.d.ts +1 -1
- package/typeDefinition/ClearAppData.d.ts +1 -1
- package/typeDefinition/CloseAppChain.d.ts +1 -1
- package/typeDefinition/CookieChain.d.ts +2 -2
- package/typeDefinition/ElementChain.d.ts +2 -2
- package/typeDefinition/ExecuteBrightScriptChain.d.ts +1 -1
- package/typeDefinition/ExecuteCommandChain.d.ts +1 -1
- package/typeDefinition/JavascriptExpression.d.ts +1 -1
- package/typeDefinition/LocationChain.d.ts +1 -1
- package/typeDefinition/NetworkRequest.d.ts +1 -1
- package/typeDefinition/OpenAppChain.d.ts +1 -1
- package/typeDefinition/OpenUrl.d.ts +1 -1
- package/typeDefinition/PlayStationVideoChain.d.ts +2 -2
- package/typeDefinition/PollUrl.d.ts +1 -1
- package/typeDefinition/PositionChain.d.ts +1 -1
- package/typeDefinition/PressButton.d.ts +1 -1
- package/typeDefinition/RelativePositionChain.d.ts +1 -1
- package/typeDefinition/SleepChain.d.ts +1 -1
- package/typeDefinition/SuspendAppChain.d.ts +1 -1
- package/typeDefinition/VideoChain.d.ts +2 -2
- package/typeDefinition/WindowChain.d.ts +1 -1
- package/typeDefinition/constants/Keys.d.ts +2 -0
package/lib/constants/keys.js
CHANGED
package/package.json
CHANGED
|
@@ -71,5 +71,5 @@ interface CookieEvalModifiers<T> extends
|
|
|
71
71
|
|
|
72
72
|
interface CookieAbandonedChain extends AbstractChain {}
|
|
73
73
|
|
|
74
|
-
type CookieQueryResult = string |
|
|
75
|
-
type CookieEvalResult = boolean |
|
|
74
|
+
type CookieQueryResult = string | undefined;
|
|
75
|
+
type CookieEvalResult = boolean | undefined;
|
|
@@ -151,5 +151,5 @@ interface ElementBaseEvalChain<TSelf> extends
|
|
|
151
151
|
|
|
152
152
|
interface ElementAbandonedChain extends AbstractChain {}
|
|
153
153
|
|
|
154
|
-
type ElementQueryResult = ElementProps |
|
|
155
|
-
type ElementEvalResult = boolean |
|
|
154
|
+
type ElementQueryResult = ElementProps | undefined;
|
|
155
|
+
type ElementEvalResult = boolean | undefined;
|
|
@@ -47,5 +47,5 @@ interface PlayStationVideoBaseEvalChain<TSelf> extends
|
|
|
47
47
|
|
|
48
48
|
interface PlayStationVideoAbandonedChain extends AbstractChain {}
|
|
49
49
|
|
|
50
|
-
type PlayStationVideoQueryResult = PlayStationVideoProps |
|
|
51
|
-
type PlayStationVideoEvalResult = boolean |
|
|
50
|
+
type PlayStationVideoQueryResult = PlayStationVideoProps | undefined;
|
|
51
|
+
type PlayStationVideoEvalResult = boolean | undefined;
|
|
@@ -52,4 +52,4 @@ interface PositionEmptyChain extends PositionBaseEvalChain<PositionEmptyChain> {
|
|
|
52
52
|
interface PositionAbandonedChain extends AbstractChain {}
|
|
53
53
|
|
|
54
54
|
type PositionQueryResult = string;
|
|
55
|
-
type PositionEvalResult = boolean |
|
|
55
|
+
type PositionEvalResult = boolean | undefined;
|
|
@@ -38,4 +38,4 @@ interface PressButtonEmptyChain extends PressButtonBaseEvalChain<PressButtonEmpt
|
|
|
38
38
|
interface PressButtonAbandonedChain extends AbstractChain {}
|
|
39
39
|
|
|
40
40
|
type PressButtonQueryResult = string;
|
|
41
|
-
type PressButtonEvalResult = boolean |
|
|
41
|
+
type PressButtonEvalResult = boolean | undefined;
|
|
@@ -45,4 +45,4 @@ interface RelativePositionEmptyChain extends RelativePositionBaseEvalChain<Relat
|
|
|
45
45
|
interface RelativePositionAbandonedChain extends AbstractChain {}
|
|
46
46
|
|
|
47
47
|
type RelativePositionQueryResult = string;
|
|
48
|
-
type RelativePositionEvalResult = boolean |
|
|
48
|
+
type RelativePositionEvalResult = boolean | undefined;
|
|
@@ -88,5 +88,5 @@ interface VideoBaseEvalChain<TSelf> extends
|
|
|
88
88
|
|
|
89
89
|
interface VideoAbandonedChain extends AbstractChain {}
|
|
90
90
|
|
|
91
|
-
type VideoQueryResult = ElementProps |
|
|
92
|
-
type VideoEvalResult = boolean |
|
|
91
|
+
type VideoQueryResult = ElementProps | undefined;
|
|
92
|
+
type VideoEvalResult = boolean | undefined;
|