wisp-schema 1.10.2 → 1.12.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: 70297c06995a4b2179907d6a31c19d968992a03c322391ec8ab17d2cf4a37a3d
4
- data.tar.gz: 880a5e00758d57df06472eefe2efe8107c80c8883020e32b387a2c1df03aa130
3
+ metadata.gz: 5c413696292a054dc0b28349df5bb785f1f4e443ed9d2cc5e035c28490e3825d
4
+ data.tar.gz: e36a907be0b38b3758067307a856e6d842aff2e2b4de6f149f5c61b240f12cef
5
5
  SHA512:
6
- metadata.gz: fde70605a2f5c6ac8f7c8af57639e20f6aeef22407298f0e6f45c6f25e6dd8355e3167b4d83c87c325a4eee95bdc1d01a05f8d547118eb441c48191f35de4fe2
7
- data.tar.gz: 3634b8a6c1c2fbdf37d04e22fe00c605888f7a2a8c08be4959bca63037e7fc4cab6ee561d284d919ce138c4b284025dd75f9b2f3b730726acc3bed788391677c
6
+ metadata.gz: 57c094c34963b58e2e7d7732afb31028f03be0630f5eb5669d37ff29b8917f58258248cb053c72ee672bd0ec1863b68181c828ee2dfa9de3ca8c11245bd08fea
7
+ data.tar.gz: c57734eb4856a3ea78cd73fc1c92b9dfcba6d4fc530a17e8272ac60bd7d6bb06e70b53f44a5e919f9915532cca3a404e49d8089911314cfe17f3a2777c51724e
data/canary-nouns.json CHANGED
@@ -77,7 +77,19 @@
77
77
  "type": {
78
78
  "enum": ["ui_element_reference"]
79
79
  },
80
- "id": {"title": "UI Element ID", "type": "integer"}
80
+ "id": {"title": "UI Element ID", "type": "integer"},
81
+ "text_matchers": {
82
+ "type": "array",
83
+ "title": "Mask text-matching collection",
84
+ "description": "A collection of user-supplied strings representing text to be matched within the mask. It has an index corresponding with its mask in the ui_element.masks array",
85
+ "items": {
86
+ "type": "object",
87
+ "title": "Text to match",
88
+ "properties": {
89
+ "text": {"type": "string"}
90
+ }
91
+ }
92
+ }
81
93
  },
82
94
  "additionalProperties": false,
83
95
  "required": ["type", "id"]
data/canary-wisp.json CHANGED
@@ -84,7 +84,19 @@
84
84
  "type": {
85
85
  "enum": ["ui_element_reference"]
86
86
  },
87
- "id": {"title": "UI Element ID", "type": "integer"}
87
+ "id": {"title": "UI Element ID", "type": "integer"},
88
+ "text_matchers": {
89
+ "type": "array",
90
+ "title": "Mask text-matching collection",
91
+ "description": "A collection of user-supplied strings representing text to be matched within the mask. It has an index corresponding with its mask in the ui_element.masks array",
92
+ "items": {
93
+ "type": "object",
94
+ "title": "Text to match",
95
+ "properties": {
96
+ "text": {"type": "string"}
97
+ }
98
+ }
99
+ }
88
100
  },
89
101
  "additionalProperties": false,
90
102
  "required": ["type", "id"]
@@ -383,7 +395,12 @@
383
395
  "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
384
396
  "id": {"title": "Action ID", "type": "integer"},
385
397
  "delay_after": {"title": "Delay after in seconds", "type": "integer"},
386
- "seconds": {"title": "seconds", "type": "integer"}
398
+ "seconds": {
399
+ "title": "seconds",
400
+ "type": "integer",
401
+ "maximum": 3600,
402
+ "minimum": 0
403
+ }
387
404
  },
388
405
  "additionalProperties": false,
389
406
  "required": ["action", "seconds"]
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.2"
5
- STABLE_VERSION = "1.10.2"
4
+ VERSION = "1.12.0"
5
+ STABLE_VERSION = "1.12.0"
6
6
  CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -77,7 +77,19 @@
77
77
  "type": {
78
78
  "enum": ["ui_element_reference"]
79
79
  },
80
- "id": {"title": "UI Element ID", "type": "integer"}
80
+ "id": {"title": "UI Element ID", "type": "integer"},
81
+ "text_matchers": {
82
+ "type": "array",
83
+ "title": "Mask text-matching collection",
84
+ "description": "A collection of user-supplied strings representing text to be matched within the mask. It has an index corresponding with its mask in the ui_element.masks array",
85
+ "items": {
86
+ "type": "object",
87
+ "title": "Text to match",
88
+ "properties": {
89
+ "text": {"type": "string"}
90
+ }
91
+ }
92
+ }
81
93
  },
82
94
  "additionalProperties": false,
83
95
  "required": ["type", "id"]
@@ -7,7 +7,19 @@
7
7
  "type": {
8
8
  "enum": ["ui_element_reference"]
9
9
  },
10
- "id": {"title": "UI Element ID", "type": "integer"}
10
+ "id": {"title": "UI Element ID", "type": "integer"},
11
+ "text_matchers": {
12
+ "type": "array",
13
+ "title": "Mask text-matching collection",
14
+ "description": "A collection of user-supplied strings representing text to be matched within the mask. It has an index corresponding with its mask in the ui_element.masks array",
15
+ "items": {
16
+ "type": "object",
17
+ "title": "Text to match",
18
+ "properties": {
19
+ "text": {"type": "string"}
20
+ }
21
+ }
22
+ }
11
23
  },
12
24
  "additionalProperties": false,
13
25
  "required": ["type", "id"]
@@ -11,7 +11,12 @@
11
11
  "id": {"title": "Action ID", "type": "integer"},
12
12
  "delay_after": {"title": "Delay after in seconds", "type": "integer"},
13
13
  "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
14
- "seconds": {"title": "seconds", "type": "integer"},
14
+ "seconds": {
15
+ "title": "seconds",
16
+ "type": "integer",
17
+ "maximum": 3600,
18
+ "minumum": 0
19
+ },
15
20
  "version": {
16
21
  "type": "string",
17
22
  "title": "Version"
data/wisp.json CHANGED
@@ -84,7 +84,19 @@
84
84
  "type": {
85
85
  "enum": ["ui_element_reference"]
86
86
  },
87
- "id": {"title": "UI Element ID", "type": "integer"}
87
+ "id": {"title": "UI Element ID", "type": "integer"},
88
+ "text_matchers": {
89
+ "type": "array",
90
+ "title": "Mask text-matching collection",
91
+ "description": "A collection of user-supplied strings representing text to be matched within the mask. It has an index corresponding with its mask in the ui_element.masks array",
92
+ "items": {
93
+ "type": "object",
94
+ "title": "Text to match",
95
+ "properties": {
96
+ "text": {"type": "string"}
97
+ }
98
+ }
99
+ }
88
100
  },
89
101
  "additionalProperties": false,
90
102
  "required": ["type", "id"]
@@ -383,7 +395,12 @@
383
395
  "embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
384
396
  "id": {"title": "Action ID", "type": "integer"},
385
397
  "delay_after": {"title": "Delay after in seconds", "type": "integer"},
386
- "seconds": {"title": "seconds", "type": "integer"}
398
+ "seconds": {
399
+ "title": "seconds",
400
+ "type": "integer",
401
+ "maximum": 3600,
402
+ "minimum": 0
403
+ }
387
404
  },
388
405
  "additionalProperties": false,
389
406
  "required": ["action", "seconds"]
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.2
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski