wisp-schema 1.10.0 → 1.10.2

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: 2783ac6a1243de7fc7bba69107ba4bafe330945ae02ec2016004cbf3bf0c2ab6
4
- data.tar.gz: 36fc7a68746bb95fc9f79b0ce102caf6e70bdafa4d7615dd05f7145442cd3005
3
+ metadata.gz: 70297c06995a4b2179907d6a31c19d968992a03c322391ec8ab17d2cf4a37a3d
4
+ data.tar.gz: 880a5e00758d57df06472eefe2efe8107c80c8883020e32b387a2c1df03aa130
5
5
  SHA512:
6
- metadata.gz: 5e84351c622e1e995216cd2451da0c4c3f39864b64234ded62344f3bde70c1c44f5d538e0e528fdb37055a598187e72b981bb37a552acc82ba1963bac6f92dae
7
- data.tar.gz: 3dc04e2b708d0997b0bcc8ab73e1d4ea199d80920ebcb757f14e0bed7d4d42aae55bb3523ae5c1987adc7966a7e245f36467dd1a0ede743766f2999977ca2fb5
6
+ metadata.gz: fde70605a2f5c6ac8f7c8af57639e20f6aeef22407298f0e6f45c6f25e6dd8355e3167b4d83c87c325a4eee95bdc1d01a05f8d547118eb441c48191f35de4fe2
7
+ data.tar.gz: 3634b8a6c1c2fbdf37d04e22fe00c605888f7a2a8c08be4959bca63037e7fc4cab6ee561d284d919ce138c4b284025dd75f9b2f3b730726acc3bed788391677c
data/canary-nouns.json CHANGED
@@ -37,7 +37,7 @@
37
37
  "masks": {
38
38
  "type": "array",
39
39
  "title": "Mask collection",
40
- "description": "A collection of mask objects that tell the matching algorightms which parts of an image to ignore when attempting a match",
40
+ "description": "A collection of mask objects that tell the matching algorithms which parts of an image to ignore when attempting a match",
41
41
  "items": {
42
42
  "type": "object",
43
43
  "title": "Mask",
@@ -54,6 +54,13 @@
54
54
  "ocr_mask_status": {
55
55
  "title": "OCR inside mask result description",
56
56
  "enum": ["SUCCESS", "TOO_MUCH_TEXT", "NO_TEXT"]
57
+ },
58
+ "text_matching_expression": {
59
+ "type": "object",
60
+ "title": "A user-supplied string representing text to be matched within the mask",
61
+ "properties": {
62
+ "text": {"type": "string"}
63
+ }
57
64
  }
58
65
  }
59
66
  }
data/canary-wisp.json CHANGED
@@ -44,7 +44,7 @@
44
44
  "masks": {
45
45
  "type": "array",
46
46
  "title": "Mask collection",
47
- "description": "A collection of mask objects that tell the matching algorightms which parts of an image to ignore when attempting a match",
47
+ "description": "A collection of mask objects that tell the matching algorithms which parts of an image to ignore when attempting a match",
48
48
  "items": {
49
49
  "type": "object",
50
50
  "title": "Mask",
@@ -61,6 +61,13 @@
61
61
  "ocr_mask_status": {
62
62
  "title": "OCR inside mask result description",
63
63
  "enum": ["SUCCESS", "TOO_MUCH_TEXT", "NO_TEXT"]
64
+ },
65
+ "text_matching_expression": {
66
+ "type": "object",
67
+ "title": "A user-supplied string representing text to be matched within the mask",
68
+ "properties": {
69
+ "text": {"type": "string"}
70
+ }
64
71
  }
65
72
  }
66
73
  }
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = "1.10.0"
5
- STABLE_VERSION = "1.10.0"
4
+ VERSION = "1.10.2"
5
+ STABLE_VERSION = "1.10.2"
6
6
  CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -37,7 +37,7 @@
37
37
  "masks": {
38
38
  "type": "array",
39
39
  "title": "Mask collection",
40
- "description": "A collection of mask objects that tell the matching algorightms which parts of an image to ignore when attempting a match",
40
+ "description": "A collection of mask objects that tell the matching algorithms which parts of an image to ignore when attempting a match",
41
41
  "items": {
42
42
  "type": "object",
43
43
  "title": "Mask",
@@ -54,6 +54,13 @@
54
54
  "ocr_mask_status": {
55
55
  "title": "OCR inside mask result description",
56
56
  "enum": ["SUCCESS", "TOO_MUCH_TEXT", "NO_TEXT"]
57
+ },
58
+ "text_matching_expression": {
59
+ "type": "object",
60
+ "title": "A user-supplied string representing text to be matched within the mask",
61
+ "properties": {
62
+ "text": {"type": "string"}
63
+ }
57
64
  }
58
65
  }
59
66
  }
data/wisp.json CHANGED
@@ -44,7 +44,7 @@
44
44
  "masks": {
45
45
  "type": "array",
46
46
  "title": "Mask collection",
47
- "description": "A collection of mask objects that tell the matching algorightms which parts of an image to ignore when attempting a match",
47
+ "description": "A collection of mask objects that tell the matching algorithms which parts of an image to ignore when attempting a match",
48
48
  "items": {
49
49
  "type": "object",
50
50
  "title": "Mask",
@@ -61,6 +61,13 @@
61
61
  "ocr_mask_status": {
62
62
  "title": "OCR inside mask result description",
63
63
  "enum": ["SUCCESS", "TOO_MUCH_TEXT", "NO_TEXT"]
64
+ },
65
+ "text_matching_expression": {
66
+ "type": "object",
67
+ "title": "A user-supplied string representing text to be matched within the mask",
68
+ "properties": {
69
+ "text": {"type": "string"}
70
+ }
64
71
  }
65
72
  }
66
73
  }
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.10.0
4
+ version: 1.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski