wisp-schema 1.18.5 → 1.18.7

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: af14a1afc78e0dc1c8cb858b9a0b7e8016286c2f609e4396421220c8202aa28a
4
- data.tar.gz: '0047988260c930c83660927baa8da92493d5059a7c4bd0d532dd37cae339b51e'
3
+ metadata.gz: 816e9286c4e1568afa1719fe1357c99455c97e617787da1587ee199ecde1dc76
4
+ data.tar.gz: 4ce2c02c53a8ecb0bfa6bafbbb2d76acb0ad36b0efa230c077d66be15354ff60
5
5
  SHA512:
6
- metadata.gz: 7180d282e035a9fa5fa4c66b85721468e8afd1e8e4b65f3082ef9acedf477d21419758a203d344019d439dfefc30b5b58fc16653466f5303f85d7ef2c0788116
7
- data.tar.gz: fa9627a055375b9d32f178a150f7100b40f5c551a1d778028a9fbee6597b1dd96a9a813ce3795756307caf0d11de5e81a6d37647616bed6430c55c4f69fcd76e
6
+ metadata.gz: 7a2d7a230e674b809b3b56a4de6b25c7fac37945f04caa00df4b6980415ecc458f57d84926e00c5e227f0c1c06cf3ba6b63862e2d865b11c184df0705a077bd7
7
+ data.tar.gz: 568d7d09e2798b8bffd0fd7b9cdc6c9cd3f69c4ceab5d85de7c79b93bfdb23ae6c91d08a5cd93128537ffc6cc40a514f98b68657d5928209e70fbf2664d803c0
data/lib/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = "1.18.5"
5
- STABLE_VERSION = "1.18.5"
4
+ VERSION = "1.18.7"
5
+ STABLE_VERSION = "1.18.7"
6
6
  end
data/nouns.json CHANGED
@@ -15,9 +15,25 @@
15
15
  "match_mode": {
16
16
  "oneOf": [
17
17
  { "$ref": "#/definitions/legacy_match_mode" },
18
- { "type": "array", "items": { "$ref": "#/definitions/legacy_match_mode" }, "maxItems": 1 },
19
18
  { "$ref": "#/definitions/match_mode" },
20
- { "type": "array", "items": { "$ref": "#/definitions/match_mode" }, "uniqueItems": true }
19
+ { "type": "array", "items": false },
20
+ {
21
+ "type": "array",
22
+ "oneOf": [
23
+ {
24
+ "items": {
25
+ "$ref": "#/definitions/legacy_match_mode"
26
+ },
27
+ "maxItems": 1
28
+ },
29
+ {
30
+ "items": {
31
+ "$ref": "#/definitions/match_mode"
32
+ },
33
+ "uniqueItems": true
34
+ }
35
+ ]
36
+ }
21
37
  ]
22
38
  },
23
39
  "image_match_mode": {
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
3
  "type": "object",
4
4
  "action_type": "action",
5
- "title": "Generate Steps",
5
+ "title": "AI Block",
6
6
  "description": "Generates a set of wisp actions based on the given prompt",
7
7
  "properties": {
8
8
  "action": {
data/wisp.json CHANGED
@@ -22,9 +22,25 @@
22
22
  "match_mode": {
23
23
  "oneOf": [
24
24
  { "$ref": "#/definitions/legacy_match_mode" },
25
- { "type": "array", "items": { "$ref": "#/definitions/legacy_match_mode" }, "maxItems": 1 },
26
25
  { "$ref": "#/definitions/match_mode" },
27
- { "type": "array", "items": { "$ref": "#/definitions/match_mode" }, "uniqueItems": true }
26
+ { "type": "array", "items": false },
27
+ {
28
+ "type": "array",
29
+ "oneOf": [
30
+ {
31
+ "items": {
32
+ "$ref": "#/definitions/legacy_match_mode"
33
+ },
34
+ "maxItems": 1
35
+ },
36
+ {
37
+ "items": {
38
+ "$ref": "#/definitions/match_mode"
39
+ },
40
+ "uniqueItems": true
41
+ }
42
+ ]
43
+ }
28
44
  ]
29
45
  },
30
46
  "image_match_mode": {
@@ -344,7 +360,7 @@
344
360
  "generate_steps": {
345
361
  "type": "object",
346
362
  "action_type": "action",
347
- "title": "Generate Steps",
363
+ "title": "AI Block",
348
364
  "description": "Generates a set of wisp actions based on the given prompt",
349
365
  "properties": {
350
366
  "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.18.5
4
+ version: 1.18.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski