wisp-schema 1.15.1 → 1.16.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: 1b4da9e9e52e2f3eb3676060e827663812a8a6cac3b6927d907a202c227648a6
4
- data.tar.gz: a90e56c2d2d3bbb6266f35c4ae43fa64109eb2804e39d377fcf920d37c7691f8
3
+ metadata.gz: f39dcc55023361b361396e14cf3c625718390c33ecccd7d8625c7bc87294c21c
4
+ data.tar.gz: 5233a1b5b06953020b1e1612799067c9da19d346ddc1962c47f3f43ab2b05a74
5
5
  SHA512:
6
- metadata.gz: b5c412a740cf167e099c252d61c9cfd2fe227c07fc9c080ed64134c5c764c8c88498185382718417d67370ec2f9e42c658b0e55ca9f1ca3f258ac168e1775db8
7
- data.tar.gz: b72e814722ff0b81514c0e0cde30d33d14b248d8bf2416a968ead4f066370dda38c07b6e8b955730de41963ef8bb686498b98515d29b3f72e40814eaa8413612
6
+ metadata.gz: d00b491b95f02429559a8b5c4bf384f57a4627d2a117092e2461e45c957c6ef4de7ea5570c43bb8c622698831d5a5031b84b6e094ee2eda1ef499ef16714eef7
7
+ data.tar.gz: 729722e6257b61e96c668c783922176bef9c2f90e7ed48e5c8a1a089043b7862be7e1e2a8540dd75c840523f8507860ff0b6066651745978d7adcc40771b54bc
data/canary-nouns.json CHANGED
@@ -13,12 +13,13 @@
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", "semantic", "strict", "ai_search"]
16
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
17
17
  },
18
18
  "image_match_mode": {
19
19
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
20
20
  },
21
21
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
22
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
22
23
  "ocr_expression": {
23
24
  "title": "Expression to use for text matching",
24
25
  "type": "string",
@@ -83,6 +84,7 @@
83
84
  },
84
85
  "id": {"title": "UI Element ID", "type": "integer"},
85
86
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
87
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
86
88
  "text_matchers": {
87
89
  "type": "array",
88
90
  "title": "Mask text-matching collection",
data/canary-wisp.json CHANGED
@@ -20,12 +20,13 @@
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", "semantic", "strict", "ai_search"]
23
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
24
24
  },
25
25
  "image_match_mode": {
26
26
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
27
27
  },
28
28
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
29
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
29
30
  "ocr_expression": {
30
31
  "title": "Expression to use for text matching",
31
32
  "type": "string",
@@ -90,6 +91,7 @@
90
91
  },
91
92
  "id": {"title": "UI Element ID", "type": "integer"},
92
93
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
94
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
93
95
  "text_matchers": {
94
96
  "type": "array",
95
97
  "title": "Mask text-matching collection",
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = "1.15.1"
5
- STABLE_VERSION = "1.15.1"
4
+ VERSION = "1.16.0"
5
+ STABLE_VERSION = "1.16.0"
6
6
  CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -13,12 +13,13 @@
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", "semantic", "strict", "ai_search"]
16
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
17
17
  },
18
18
  "image_match_mode": {
19
19
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
20
20
  },
21
21
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
22
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
22
23
  "ocr_expression": {
23
24
  "title": "Expression to use for text matching",
24
25
  "type": "string",
@@ -83,6 +84,7 @@
83
84
  },
84
85
  "id": {"title": "UI Element ID", "type": "integer"},
85
86
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
87
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
86
88
  "text_matchers": {
87
89
  "type": "array",
88
90
  "title": "Mask text-matching collection",
@@ -9,6 +9,7 @@
9
9
  },
10
10
  "id": {"title": "UI Element ID", "type": "integer"},
11
11
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
12
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
12
13
  "text_matchers": {
13
14
  "type": "array",
14
15
  "title": "Mask text-matching collection",
data/wisp.json CHANGED
@@ -20,12 +20,13 @@
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", "semantic", "strict", "ai_search"]
23
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
24
24
  },
25
25
  "image_match_mode": {
26
26
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
27
27
  },
28
28
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
29
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
29
30
  "ocr_expression": {
30
31
  "title": "Expression to use for text matching",
31
32
  "type": "string",
@@ -90,6 +91,7 @@
90
91
  },
91
92
  "id": {"title": "UI Element ID", "type": "integer"},
92
93
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
94
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
93
95
  "text_matchers": {
94
96
  "type": "array",
95
97
  "title": "Mask text-matching collection",
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.15.1
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski