@@ -15530,7 +15530,7 @@ components:
15530
15530
$ref: '#/components/schemas/SyntheticsMobileStepParamsDirection'
15531
15531
element:
15532
15532
$ref: '#/components/schemas/SyntheticsMobileStepParamsElement'
15533
- enable :
15533
+ enabled :
15534
15534
description: Boolean to change the state of the wifi for a `toggleWiFi`
15535
15535
step type.
15536
15536
type: boolean
@@ -15546,8 +15546,7 @@ components:
15546
15546
step type.
15547
15547
type: string
15548
15548
value:
15549
- description: Values used in the step. Used in multiple step types.
15550
- type: string
15549
+ $ref: '#/components/schemas/SyntheticsMobileStepParamsValue'
15551
15550
variable:
15552
15551
$ref: '#/components/schemas/SyntheticsMobileStepParamsVariable'
15553
15552
withEnter:
@@ -15556,12 +15555,12 @@ components:
15556
15555
type: boolean
15557
15556
x:
15558
15557
description: Amount to scroll by on the `x` axis for a `scroll` step type.
15559
- format: int64
15560
- type: integer
15558
+ format: double
15559
+ type: number
15561
15560
y:
15562
15561
description: Amount to scroll by on the `y` axis for a `scroll` step type.
15563
- format: int64
15564
- type: integer
15562
+ format: double
15563
+ type: number
15565
15564
type: object
15566
15565
SyntheticsMobileStepParamsDirection:
15567
15566
description: The direction of the scroll for a `scrollToElement` step type.
@@ -15615,12 +15614,12 @@ components:
15615
15614
properties:
15616
15615
x:
15617
15616
description: The `relativePosition` on the `x` axis for the element.
15618
- format: int64
15619
- type: integer
15617
+ format: double
15618
+ type: number
15620
15619
y:
15621
15620
description: The `relativePosition` on the `y` axis for the element.
15622
- format: int64
15623
- type: integer
15621
+ format: double
15622
+ type: number
15624
15623
type: object
15625
15624
SyntheticsMobileStepParamsElementUserLocator:
15626
15625
description: User locator to find the element.
@@ -15670,13 +15669,25 @@ components:
15670
15669
properties:
15671
15670
x:
15672
15671
description: The `x` position for the flick.
15673
- format: int64
15674
- type: integer
15672
+ format: double
15673
+ type: number
15675
15674
y:
15676
15675
description: The `y` position for the flick.
15677
- format: int64
15678
- type: integer
15676
+ format: double
15677
+ type: number
15679
15678
type: object
15679
+ SyntheticsMobileStepParamsValue:
15680
+ description: Values used in the step for in multiple step types.
15681
+ oneOf:
15682
+ - $ref: '#/components/schemas/SyntheticsMobileStepParamsValueString'
15683
+ - $ref: '#/components/schemas/SyntheticsMobileStepParamsValueNumber'
15684
+ SyntheticsMobileStepParamsValueNumber:
15685
+ description: Value used in the step for in multiple step types.
15686
+ format: int64
15687
+ type: integer
15688
+ SyntheticsMobileStepParamsValueString:
15689
+ description: Value used in the step for in multiple step types.
15690
+ type: string
15680
15691
SyntheticsMobileStepParamsVariable:
15681
15692
description: Variable object for `extractVariable` step type.
15682
15693
properties:
0 commit comments