wisp-schema 1.7.0 → 1.8.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: f951c7c703e9cb92701bd9be75a87a7c217090d06ce7a7faafe4ab6a2cd48b94
4
- data.tar.gz: 0c8d3b49d67ece5f2620ef278578c395133bff5480d45fda760e9ac2e51e97ca
3
+ metadata.gz: '089748bd1acbccbba79379be9ea5e28a9291ebbf1950f78c9b26e0b6e7ca3bb5'
4
+ data.tar.gz: 59860657226f8c45c0100baaf02799dc865213e1ed36aa38325347574d7834a3
5
5
  SHA512:
6
- metadata.gz: 62ce800a08f8849c68129f2f5d43bfc8e134aad7c3a839a30ce6a0ca0e685608a8118e94b41041415349c633933b8451b3bc908f0f1469272c39d08eba5f6b62
7
- data.tar.gz: c85b5f0f7ec39f1dda8dc3bc0a4a41f30b91c9aad95e2e9118af464eec989dee40ff225aec3b357a6adf989a02ccc6ff6a148c27da846cbd4afa4c0e0ef3d2cf
6
+ metadata.gz: 72c5d7d11210b2181b344db7ff7ea1d676a0662e35823cbed781d973666e6a3f5a36ddca03aa28087174ba848f372882551d54ffaa5ebe8bf643af085e058d4b
7
+ data.tar.gz: cdc11f6f2b42e73a512b79cff3f684dfcc714d87474400a14c8da654f03e738500511f9e110eef49006f95fead4e8db5bb5231b6898cabbb4104dc1fb439eeb4
data/canary-nouns.json CHANGED
@@ -33,6 +33,21 @@
33
33
  "w": {"type": "integer"},
34
34
  "h": {"type": "integer"}
35
35
  }
36
+ },
37
+ "masks": {
38
+ "type": "array",
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",
41
+ "items": {
42
+ "type": "object",
43
+ "title": "Mask",
44
+ "properties": {
45
+ "x": {"type": "integer"},
46
+ "y": {"type": "integer"},
47
+ "w": {"type": "integer"},
48
+ "h": {"type": "integer"}
49
+ }
50
+ }
36
51
  }
37
52
  },
38
53
  "additionalProperties": false,
data/canary-wisp.json CHANGED
@@ -40,6 +40,21 @@
40
40
  "w": {"type": "integer"},
41
41
  "h": {"type": "integer"}
42
42
  }
43
+ },
44
+ "masks": {
45
+ "type": "array",
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",
48
+ "items": {
49
+ "type": "object",
50
+ "title": "Mask",
51
+ "properties": {
52
+ "x": {"type": "integer"},
53
+ "y": {"type": "integer"},
54
+ "w": {"type": "integer"},
55
+ "h": {"type": "integer"}
56
+ }
57
+ }
43
58
  }
44
59
  },
45
60
  "additionalProperties": false,
@@ -85,7 +100,7 @@
85
100
  "ai_confirmation": {
86
101
  "type": "object",
87
102
  "action_type": "assertion",
88
- "title": "AI Confirmation",
103
+ "title": "AI Assertion",
89
104
  "description": "A Yes (pass) or No (fail) question answered by AI",
90
105
  "properties": {
91
106
  "action": {
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = '1.7.0'
5
- STABLE_VERSION = '1.7.0'
6
- CANARY_VERSION = '2.0.0'
4
+ VERSION = "1.8.1"
5
+ STABLE_VERSION = "1.8.1"
6
+ CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -33,6 +33,21 @@
33
33
  "w": {"type": "integer"},
34
34
  "h": {"type": "integer"}
35
35
  }
36
+ },
37
+ "masks": {
38
+ "type": "array",
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",
41
+ "items": {
42
+ "type": "object",
43
+ "title": "Mask",
44
+ "properties": {
45
+ "x": {"type": "integer"},
46
+ "y": {"type": "integer"},
47
+ "w": {"type": "integer"},
48
+ "h": {"type": "integer"}
49
+ }
50
+ }
36
51
  }
37
52
  },
38
53
  "additionalProperties": false,
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
3
  "type": "object",
4
4
  "action_type": "assertion",
5
- "title": "AI Confirmation",
5
+ "title": "AI Assertion",
6
6
  "description": "A Yes (pass) or No (fail) question answered by AI",
7
7
  "properties": {
8
8
  "action": {
data/wisp.json CHANGED
@@ -40,6 +40,21 @@
40
40
  "w": {"type": "integer"},
41
41
  "h": {"type": "integer"}
42
42
  }
43
+ },
44
+ "masks": {
45
+ "type": "array",
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",
48
+ "items": {
49
+ "type": "object",
50
+ "title": "Mask",
51
+ "properties": {
52
+ "x": {"type": "integer"},
53
+ "y": {"type": "integer"},
54
+ "w": {"type": "integer"},
55
+ "h": {"type": "integer"}
56
+ }
57
+ }
43
58
  }
44
59
  },
45
60
  "additionalProperties": false,
@@ -85,7 +100,7 @@
85
100
  "ai_confirmation": {
86
101
  "type": "object",
87
102
  "action_type": "assertion",
88
- "title": "AI Confirmation",
103
+ "title": "AI Assertion",
89
104
  "description": "A Yes (pass) or No (fail) question answered by AI",
90
105
  "properties": {
91
106
  "action": {
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.7.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski