wisp-schema 1.12.1 → 1.13.0

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: ff23e186661fce2ff889c90f1ab61b2ca8c4bed7dbfba157a9e8534f0c050108
4
- data.tar.gz: 0724637a887f745e9d48a75146ed7f12205c87fb65bbc3f859983d245317b5ef
3
+ metadata.gz: eeb9206257feeb574352100cdddc7676d9fa13363036469f95feb6c8cc4b2ab2
4
+ data.tar.gz: 0561035a8625f45e59e7b189881f8133662b91737e7210fcc51e874de1a7eae9
5
5
  SHA512:
6
- metadata.gz: fdbd9c7363e3730bb8dda9c0bdca307f3368e9d61e1b0c8eba2452b9e43866b926b1bebcd02bc91b0eb7f029504173a1ae9d2c2dbca2c3011edfe4e9a85830a4
7
- data.tar.gz: bd9146ef8e9b3dba32c6de826448bc78455fd5c78a5f68e8c56f045595a7d373f062e376cd65a03a3c44624feb24ad4a0fa9f0cc0972d53fbf38c5918e6f998e
6
+ metadata.gz: e6b0b5dee7147bd901074c81ae712d2e021a93b872ff01b12e5cf047c2159e49722ff18cd4da4140b028f7de9f65eb90901d880ebcb08fccaf3fd019d45761c2
7
+ data.tar.gz: 6fae2b05a79caaf574d9e9d55cdb3dfaeab1a766af15ccc10a9bfeb4c74ed5b9e27ecd904a4a5b7abdc609a2348792b56bbaeeb69e7b68577cb440bfdc653775
data/canary-nouns.json CHANGED
@@ -13,6 +13,9 @@
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"]
17
+ },
18
+ "image_match_mode": {
16
19
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
17
20
  },
18
21
  "ocr_expression": {
@@ -78,6 +81,7 @@
78
81
  "enum": ["ui_element_reference"]
79
82
  },
80
83
  "id": {"title": "UI Element ID", "type": "integer"},
84
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
81
85
  "text_matchers": {
82
86
  "type": "array",
83
87
  "title": "Mask text-matching collection",
data/canary-wisp.json CHANGED
@@ -20,6 +20,9 @@
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"]
24
+ },
25
+ "image_match_mode": {
23
26
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
24
27
  },
25
28
  "ocr_expression": {
@@ -85,6 +88,7 @@
85
88
  "enum": ["ui_element_reference"]
86
89
  },
87
90
  "id": {"title": "UI Element ID", "type": "integer"},
91
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
88
92
  "text_matchers": {
89
93
  "type": "array",
90
94
  "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.12.1"
5
- STABLE_VERSION = "1.12.1"
4
+ VERSION = "1.13.0"
5
+ STABLE_VERSION = "1.13.0"
6
6
  CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -13,6 +13,9 @@
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"]
17
+ },
18
+ "image_match_mode": {
16
19
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
17
20
  },
18
21
  "ocr_expression": {
@@ -78,6 +81,7 @@
78
81
  "enum": ["ui_element_reference"]
79
82
  },
80
83
  "id": {"title": "UI Element ID", "type": "integer"},
84
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
81
85
  "text_matchers": {
82
86
  "type": "array",
83
87
  "title": "Mask text-matching collection",
@@ -8,6 +8,7 @@
8
8
  "enum": ["ui_element_reference"]
9
9
  },
10
10
  "id": {"title": "UI Element ID", "type": "integer"},
11
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
11
12
  "text_matchers": {
12
13
  "type": "array",
13
14
  "title": "Mask text-matching collection",
data/wisp.json CHANGED
@@ -20,6 +20,9 @@
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"]
24
+ },
25
+ "image_match_mode": {
23
26
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
24
27
  },
25
28
  "ocr_expression": {
@@ -85,6 +88,7 @@
85
88
  "enum": ["ui_element_reference"]
86
89
  },
87
90
  "id": {"title": "UI Element ID", "type": "integer"},
91
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
88
92
  "text_matchers": {
89
93
  "type": "array",
90
94
  "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.12.1
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski