wisp-schema 1.18.7 → 1.19.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 816e9286c4e1568afa1719fe1357c99455c97e617787da1587ee199ecde1dc76
4
- data.tar.gz: 4ce2c02c53a8ecb0bfa6bafbbb2d76acb0ad36b0efa230c077d66be15354ff60
3
+ metadata.gz: 2ee3d80483890bbbf8b4e8291ec8fea256a43f12298fe838be3a50cd76c66530
4
+ data.tar.gz: b8e1695a06e8069db93dd3dbd3b4efb28ede70cc6128b435fa7e936c6e7d3b33
5
5
  SHA512:
6
- metadata.gz: 7a2d7a230e674b809b3b56a4de6b25c7fac37945f04caa00df4b6980415ecc458f57d84926e00c5e227f0c1c06cf3ba6b63862e2d865b11c184df0705a077bd7
7
- data.tar.gz: 568d7d09e2798b8bffd0fd7b9cdc6c9cd3f69c4ceab5d85de7c79b93bfdb23ae6c91d08a5cd93128537ffc6cc40a514f98b68657d5928209e70fbf2664d803c0
6
+ metadata.gz: dcfdbc98b572dae49b6783e25dd6c923009b111195ab1491c5beab9b99a19a8af828ed67095eefa94248ea915e3bb91eee0845a997f7095c155f605adf8e0cef
7
+ data.tar.gz: 1a811d63db37a46269f68363db4eeeb205f8439d646b9e005b963e9ede17bbd34f46d75cf588eb4184952031c4fd877e95bd25e82c4c7be39e1bf94a876fb6c8
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.1"
5
+ STABLE_VERSION = "1.19.1"
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/stable/verbs.json CHANGED
@@ -24,6 +24,7 @@
24
24
  {"$ref": "actions/drag_and_drop.json"},
25
25
  {"$ref": "actions/tester_instruction.json"},
26
26
  {"$ref": "actions/observe.json"},
27
+ {"$ref": "actions/store_value.json"},
27
28
  {"$ref": "actions/tester_confirmation.json"},
28
29
  {"$ref": "embeddings/embedded_test.json"}
29
30
  ]
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.1
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