wisp-schema 1.12.1 → 1.13.1

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: ff23e186661fce2ff889c90f1ab61b2ca8c4bed7dbfba157a9e8534f0c050108
4
- data.tar.gz: 0724637a887f745e9d48a75146ed7f12205c87fb65bbc3f859983d245317b5ef
3
+ metadata.gz: 977a7b37e134eb9bc09bab4ad2cc79b3c38ac9481a015b3e8fe871916974861f
4
+ data.tar.gz: 30fcb095f2fea749a10d5dc5a6836bb740e14b2c9514e5d7adc76d8a79430fef
5
5
  SHA512:
6
- metadata.gz: fdbd9c7363e3730bb8dda9c0bdca307f3368e9d61e1b0c8eba2452b9e43866b926b1bebcd02bc91b0eb7f029504173a1ae9d2c2dbca2c3011edfe4e9a85830a4
7
- data.tar.gz: bd9146ef8e9b3dba32c6de826448bc78455fd5c78a5f68e8c56f045595a7d373f062e376cd65a03a3c44624feb24ad4a0fa9f0cc0972d53fbf38c5918e6f998e
6
+ metadata.gz: a99764064fa8936f907cd5d5defbdb04c71596e750877e100af5d904eb602dac8b90f3e5ecea51328ffdcd50b2d68f01384acb73d795279877da7b3e8e18661b
7
+ data.tar.gz: 374c50d5d73d9571e284dfe6c8a21a3fbc6a8ea15f8f1264bcdd81604f21c63be0b3e5694759939cc541021a24d8f62a82d79951172351f6eb74b94052a6a145
data/canary-nouns.json CHANGED
@@ -13,8 +13,12 @@
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
  },
21
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
18
22
  "ocr_expression": {
19
23
  "title": "Expression to use for text matching",
20
24
  "type": "string",
@@ -78,6 +82,7 @@
78
82
  "enum": ["ui_element_reference"]
79
83
  },
80
84
  "id": {"title": "UI Element ID", "type": "integer"},
85
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
81
86
  "text_matchers": {
82
87
  "type": "array",
83
88
  "title": "Mask text-matching collection",
data/canary-wisp.json CHANGED
@@ -20,8 +20,12 @@
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
  },
28
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
25
29
  "ocr_expression": {
26
30
  "title": "Expression to use for text matching",
27
31
  "type": "string",
@@ -85,6 +89,7 @@
85
89
  "enum": ["ui_element_reference"]
86
90
  },
87
91
  "id": {"title": "UI Element ID", "type": "integer"},
92
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
88
93
  "text_matchers": {
89
94
  "type": "array",
90
95
  "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.1"
5
+ STABLE_VERSION = "1.13.1"
6
6
  CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -13,8 +13,12 @@
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
  },
21
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
18
22
  "ocr_expression": {
19
23
  "title": "Expression to use for text matching",
20
24
  "type": "string",
@@ -78,6 +82,7 @@
78
82
  "enum": ["ui_element_reference"]
79
83
  },
80
84
  "id": {"title": "UI Element ID", "type": "integer"},
85
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
81
86
  "text_matchers": {
82
87
  "type": "array",
83
88
  "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,8 +20,12 @@
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
  },
28
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
25
29
  "ocr_expression": {
26
30
  "title": "Expression to use for text matching",
27
31
  "type": "string",
@@ -85,6 +89,7 @@
85
89
  "enum": ["ui_element_reference"]
86
90
  },
87
91
  "id": {"title": "UI Element ID", "type": "integer"},
92
+ "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
88
93
  "text_matchers": {
89
94
  "type": "array",
90
95
  "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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski