wisp-schema 1.4.0 → 1.5.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: 7d6c5db386137d2c3c2358c69b49a21ed2955075ebb05187af035da1f75a57e2
4
- data.tar.gz: 97d49c11d2114fc0d10b0bfa33ed13c4143108576567146a0efd80ac4c1f2a9b
3
+ metadata.gz: e73f98b159f41d1a474b97c805a6524cdcb074f78c87814ce3d45ea656476b10
4
+ data.tar.gz: 5fe655578655fa555a51b9780125a81c17671dc8ebc3a0c5adcf6b49a793df52
5
5
  SHA512:
6
- metadata.gz: cacf8234ad27ef74ec2dc8a46acd626a1335f9f8f3d2833ee4b9bf7232c60b3f939b50448bf97b4f3562384215c2d865f3fd455d920ee9dccf53d6fce6fa7f9d
7
- data.tar.gz: 3bd1b7278d12c686a63f97334a5b8b6c6478c073f6b7e6daa366ce9849138a27a56958070f98f84f26fb6eda6d3e0f2d428402d2741e488210b79565a5580900
6
+ metadata.gz: 0ccd31577de8f3874228b0b8cbcadb3bcd9db61c080dbb24403cf894e0f55097807a3803436c553e111ed8f48abd80009e8fffe06a14c3fc497ac2f2ed9f9b44
7
+ data.tar.gz: d568bfc9df99e0d1a470e16a867c851dd8f93214546a90b0f34bb79f9f90c7700b74cdf0148fb2fea38d5fb2c5134a7558b2fc7a6ba2b5ac6f99e918446348a9
data/canary-nouns.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
14
14
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
15
15
  "match_mode": {
16
- "enum": ["pixel", "pixel_and_ocr"]
16
+ "enum": ["pixel", "pixel_and_ocr", "semantic"]
17
17
  },
18
18
  "ocr_expression": {
19
19
  "title": "Expression to use for text matching",
data/canary-wisp.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
21
21
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
22
22
  "match_mode": {
23
- "enum": ["pixel", "pixel_and_ocr"]
23
+ "enum": ["pixel", "pixel_and_ocr", "semantic"]
24
24
  },
25
25
  "ocr_expression": {
26
26
  "title": "Expression to use for text matching",
@@ -62,6 +62,7 @@
62
62
  "title": "Wisp Verb",
63
63
  "oneOf": [
64
64
  {"$ref": "#/definitions/click"},
65
+ {"$ref": "#/definitions/comment"},
65
66
  {"$ref": "#/definitions/double_click"},
66
67
  {"$ref": "#/definitions/fill"},
67
68
  {"$ref": "#/definitions/type"},
@@ -113,6 +114,8 @@
113
114
  "action": {
114
115
  "enum": ["comment"]
115
116
  },
117
+ "delay_after": {"title": "Delay after in seconds", "type": "integer"},
118
+ "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
116
119
  "id": {"title": "Action ID", "type": "integer"},
117
120
  "text": {"title": "Text", "type": "string"}
118
121
  },
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = '1.4.0'
5
- STABLE_VERSION = '1.4.0'
4
+ VERSION = '1.5.0'
5
+ STABLE_VERSION = '1.5.0'
6
6
  CANARY_VERSION = '2.0.0'
7
7
  end
data/nouns.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
14
14
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
15
15
  "match_mode": {
16
- "enum": ["pixel", "pixel_and_ocr"]
16
+ "enum": ["pixel", "pixel_and_ocr", "semantic"]
17
17
  },
18
18
  "ocr_expression": {
19
19
  "title": "Expression to use for text matching",
@@ -9,6 +9,7 @@
9
9
  "enum": ["comment"]
10
10
  },
11
11
  "id": {"title": "Action ID", "type": "integer"},
12
+ "delay_after": {"title": "Delay after in seconds", "type": "integer"},
12
13
  "text": {"title": "Text", "type": "string"},
13
14
  "version": {
14
15
  "type": "string",
data/wisp.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
21
21
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
22
22
  "match_mode": {
23
- "enum": ["pixel", "pixel_and_ocr"]
23
+ "enum": ["pixel", "pixel_and_ocr", "semantic"]
24
24
  },
25
25
  "ocr_expression": {
26
26
  "title": "Expression to use for text matching",
@@ -62,6 +62,7 @@
62
62
  "title": "Wisp Verb",
63
63
  "oneOf": [
64
64
  {"$ref": "#/definitions/click"},
65
+ {"$ref": "#/definitions/comment"},
65
66
  {"$ref": "#/definitions/double_click"},
66
67
  {"$ref": "#/definitions/fill"},
67
68
  {"$ref": "#/definitions/type"},
@@ -113,6 +114,8 @@
113
114
  "action": {
114
115
  "enum": ["comment"]
115
116
  },
117
+ "delay_after": {"title": "Delay after in seconds", "type": "integer"},
118
+ "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
116
119
  "id": {"title": "Action ID", "type": "integer"},
117
120
  "text": {"title": "Text", "type": "string"}
118
121
  },
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.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski