wisp-schema 1.12.0 → 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: 5c413696292a054dc0b28349df5bb785f1f4e443ed9d2cc5e035c28490e3825d
4
- data.tar.gz: e36a907be0b38b3758067307a856e6d842aff2e2b4de6f149f5c61b240f12cef
3
+ metadata.gz: eeb9206257feeb574352100cdddc7676d9fa13363036469f95feb6c8cc4b2ab2
4
+ data.tar.gz: 0561035a8625f45e59e7b189881f8133662b91737e7210fcc51e874de1a7eae9
5
5
  SHA512:
6
- metadata.gz: 57c094c34963b58e2e7d7732afb31028f03be0630f5eb5669d37ff29b8917f58258248cb053c72ee672bd0ec1863b68181c828ee2dfa9de3ca8c11245bd08fea
7
- data.tar.gz: c57734eb4856a3ea78cd73fc1c92b9dfcba6d4fc530a17e8272ac60bd7d6bb06e70b53f44a5e919f9915532cca3a404e49d8089911314cfe17f3a2777c51724e
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.0"
5
- STABLE_VERSION = "1.12.0"
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",
@@ -15,7 +15,7 @@
15
15
  "title": "seconds",
16
16
  "type": "integer",
17
17
  "maximum": 3600,
18
- "minumum": 0
18
+ "minimum": 0
19
19
  },
20
20
  "version": {
21
21
  "type": "string",
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.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski