wisp-schema 1.20.1 → 1.21.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 653807b192af36015233a6d6e9f9a601c089f05e5258b6223692b81576db1931
4
- data.tar.gz: 90ace1a39a18711a83ac5e2526d2a374b9f1b1262f141b2ad343978ab34dd85f
3
+ metadata.gz: b92e1d7fabb20ea1e6c9d611a9f34320150cad9d401d80afe8ab6be7d3040e67
4
+ data.tar.gz: 2f9ab5264b35598eaef288c8cc304596797ddc2df75ba6dfff861fea5bf989e9
5
5
  SHA512:
6
- metadata.gz: bfc7175ee3e7ec264114ea4913d84d161ea9ed870f6fbb2e9c8c57bf79633d0f293c80bf786a8229969a90f7cee0fc5626b52cbbd4d4e008ffaf4998acf206aa
7
- data.tar.gz: 5454cef0a29c5637c36f01792f1ba4aaff7eaf707d0e4c361697874d2560c8c05322fa85fbc3923fc520e154ea70a219a893d8308b12662fd3fc3126f7783ed3
6
+ metadata.gz: e88cb6791b3d8e91449c08282a8b386b62cfdd66dcc1760d63f631e5b40bc1233625ef1b865f70b7556a3b4f2de871926697f68466a2ee2cbc6e288d418960b6
7
+ data.tar.gz: 21edd47543a861cb5c4f499c5057cebd13110946fced074772ca34a376d638260ac8c3e424454260038fce2c71abde7af8014a957654afcae98553f348724a02
data/lib/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = "1.20.1"
5
- STABLE_VERSION = "1.20.1"
4
+ VERSION = "1.21.0"
5
+ STABLE_VERSION = "1.21.0"
6
6
  end
data/lib/wisp-schema.rb CHANGED
@@ -34,6 +34,7 @@ module Wisp
34
34
  "store_value",
35
35
  "tester_confirmation",
36
36
  "tester_instruction",
37
+ "triple_click",
37
38
  "type",
38
39
  "wait",
39
40
  ].freeze
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "action_type": "action",
5
+ "title": "Triple-click",
6
+ "description": "Triple-clicks on the UI element",
7
+ "properties": {
8
+ "action": {
9
+ "enum": ["triple_click"]
10
+ },
11
+ "id": {"title": "Action ID", "type": "integer"},
12
+ "uniform_id": { "title": "Preserved Action ID", "type": "string" },
13
+ "job_step_id": {
14
+ "title": "The id of the action's related job step",
15
+ "type": "integer"
16
+ },
17
+ "delay_after": {"title": "Delay after in seconds", "type": "integer"},
18
+ "target": {
19
+ "title": "Target",
20
+ "$ref": "ui_element_reference.json"
21
+ },
22
+ "version": {
23
+ "type": "string",
24
+ "title": "Version"
25
+ }
26
+ },
27
+ "additionalProperties": false,
28
+ "required": ["action", "target", "version"]
29
+ }
data/stable/verbs.json CHANGED
@@ -10,6 +10,7 @@
10
10
  {"$ref": "actions/comment.json"},
11
11
  {"$ref": "actions/conditional_observe.json"},
12
12
  {"$ref": "actions/double_click.json"},
13
+ {"$ref": "actions/triple_click.json"},
13
14
  {"$ref": "actions/fill.json"},
14
15
  {"$ref": "actions/generate_steps.json"},
15
16
  {"$ref": "actions/type.json"},
data/wisp.json CHANGED
@@ -153,6 +153,7 @@
153
153
  {"$ref": "#/definitions/comment"},
154
154
  {"$ref": "#/definitions/conditional_observe"},
155
155
  {"$ref": "#/definitions/double_click"},
156
+ {"$ref": "#/definitions/triple_click"},
156
157
  {"$ref": "#/definitions/fill"},
157
158
  {"$ref": "#/definitions/generate_steps"},
158
159
  {"$ref": "#/definitions/type"},
@@ -346,6 +347,32 @@
346
347
  "additionalProperties": false,
347
348
  "required": ["action", "target"]
348
349
  },
350
+ "triple_click": {
351
+ "type": "object",
352
+ "action_type": "action",
353
+ "title": "Triple-click",
354
+ "description": "Triple-clicks on the UI element",
355
+ "properties": {
356
+ "action": {
357
+ "enum": ["triple_click"]
358
+ },
359
+ "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
360
+ "id": {"title": "Action ID", "type": "integer"},
361
+ "uniform_id": { "title": "Preserved Action ID", "type": "string" },
362
+ "job_step_id": {
363
+ "title": "The id of the action's related job step",
364
+ "type": "integer"
365
+ },
366
+ "delay_after": {"title": "Delay after in seconds", "type": "integer"},
367
+ "target": {
368
+ "title": "Target",
369
+ "$ref": "#/definitions/noun",
370
+ "type": "ui_element_reference"
371
+ }
372
+ },
373
+ "additionalProperties": false,
374
+ "required": ["action", "target"]
375
+ },
349
376
  "fill": {
350
377
  "type": "object",
351
378
  "action_type": "action",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wisp-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.1
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski
@@ -98,6 +98,7 @@ files:
98
98
  - stable/actions/store_value.json
99
99
  - stable/actions/tester_confirmation.json
100
100
  - stable/actions/tester_instruction.json
101
+ - stable/actions/triple_click.json
101
102
  - stable/actions/type.json
102
103
  - stable/actions/ui_element_reference.json
103
104
  - stable/actions/wait.json