wisp-schema 1.18.7 → 1.19.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: 816e9286c4e1568afa1719fe1357c99455c97e617787da1587ee199ecde1dc76
4
- data.tar.gz: 4ce2c02c53a8ecb0bfa6bafbbb2d76acb0ad36b0efa230c077d66be15354ff60
3
+ metadata.gz: f238ddf83f62d52f13a9f5a3adc5a89df52fda6de66d2fca735d34d15d53dda9
4
+ data.tar.gz: 5d0995319247890a36a325cfedd1c4ccac777b6275173d982fba2f5718fadab5
5
5
  SHA512:
6
- metadata.gz: 7a2d7a230e674b809b3b56a4de6b25c7fac37945f04caa00df4b6980415ecc458f57d84926e00c5e227f0c1c06cf3ba6b63862e2d865b11c184df0705a077bd7
7
- data.tar.gz: 568d7d09e2798b8bffd0fd7b9cdc6c9cd3f69c4ceab5d85de7c79b93bfdb23ae6c91d08a5cd93128537ffc6cc40a514f98b68657d5928209e70fbf2664d803c0
6
+ metadata.gz: 859677f701e8de5f8a6ec6be3e4bdfddc1469ac76e7c0600c3113927d8aa225720116aa8b0ac7adfd362b62f10e9fbe60ca62a1dff37ed10e4ea4fd5fc6a4e5d
7
+ data.tar.gz: f7a2e9aad0777cc94fdbfa1c58005f10de60d998bfb19908d5c5289df27d24a156a4e6b3302821e51026bcc31fa0d080de18b629708fbcf39a6aff1ec0a6c454
data/lib/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = "1.18.7"
5
- STABLE_VERSION = "1.18.7"
4
+ VERSION = "1.19.0"
5
+ STABLE_VERSION = "1.19.0"
6
6
  end
data/lib/wisp-schema.rb CHANGED
@@ -30,6 +30,7 @@ module Wisp
30
30
  "scroll",
31
31
  "select",
32
32
  "send_key",
33
+ "store_value",
33
34
  "tester_confirmation",
34
35
  "tester_instruction",
35
36
  "type",
@@ -0,0 +1,33 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "action_type": "action",
5
+ "title": "Store Value",
6
+ "description": "Stores value of text under the mask in a temporary variable",
7
+ "properties": {
8
+ "action": {
9
+ "enum": ["store_value"]
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
+ "object": {
19
+ "title": "Object",
20
+ "$ref": "ui_element_reference.json"
21
+ },
22
+ "variable_name": {
23
+ "title": "The temporary variable name that will hold the text under the mask",
24
+ "type": "string"
25
+ },
26
+ "version": {
27
+ "type": "string",
28
+ "title": "Version"
29
+ }
30
+ },
31
+ "additionalProperties": false,
32
+ "required": ["action", "object", "variable_name", "version"]
33
+ }
data/wisp.json CHANGED
@@ -154,6 +154,7 @@
154
154
  {"$ref": "#/definitions/tester_instruction"},
155
155
  {"$ref": "#/definitions/embedded_test"},
156
156
  {"$ref": "#/definitions/observe"},
157
+ {"$ref": "#/definitions/store_value"},
157
158
  {"$ref": "#/definitions/tester_confirmation"}
158
159
  ]
159
160
  },
@@ -752,6 +753,35 @@
752
753
  "additionalProperties": false,
753
754
  "required": ["action", "object", "visibility"]
754
755
  },
756
+ "store_value": {
757
+ "type": "object",
758
+ "action_type": "action",
759
+ "title": "Store Value",
760
+ "description": "Stores value of text under the mask in a temporary variable",
761
+ "properties": {
762
+ "action": {
763
+ "enum": ["store_value"]
764
+ },
765
+ "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
766
+ "id": {"title": "Action ID", "type": "integer"},
767
+ "uniform_id": { "title": "Preserved Action ID", "type": "string" },
768
+ "job_step_id": {
769
+ "title": "The id of the action's related job step",
770
+ "type": "integer"
771
+ },
772
+ "delay_after": {"title": "Delay after in seconds", "type": "integer"},
773
+ "object": {
774
+ "title": "Object",
775
+ "$ref": "#/definitions/noun"
776
+ },
777
+ "variable_name": {
778
+ "title": "The temporary variable name that will hold the text under the mask",
779
+ "type": "string"
780
+ }
781
+ },
782
+ "additionalProperties": false,
783
+ "required": ["action", "object", "variable_name"]
784
+ },
755
785
  "tester_confirmation": {
756
786
  "type": "object",
757
787
  "action_type": "assertion",
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.18.7
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski
@@ -93,6 +93,7 @@ files:
93
93
  - stable/actions/scroll.json
94
94
  - stable/actions/select.json
95
95
  - stable/actions/send_key.json
96
+ - stable/actions/store_value.json
96
97
  - stable/actions/tester_confirmation.json
97
98
  - stable/actions/tester_instruction.json
98
99
  - stable/actions/type.json