Merge remote-tracking branch 'origin/staging' into develop

This commit is contained in:
Andrey Antukh
2022-01-26 18:13:48 +01:00
4 changed files with 131 additions and 42 deletions

View File

@@ -355,10 +355,12 @@
(s/keys :req-un [:internal.shape.text/text]))))
(s/def :internal.shape.path/command keyword?)
(s/def :internal.shape.path/params (s/nilable (s/map-of keyword? any?)))
(s/def :internal.shape.path/params
(s/nilable (s/map-of keyword? any?)))
(s/def :internal.shape.path/command-item
(s/keys :req-un [:internal.shape.path/command
:internal.shape.path/params]))
(s/keys :req-un [:internal.shape.path/command]
:opt-un [:internal.shape.path/params]))
(s/def :internal.shape.path/content
(s/coll-of :internal.shape.path/command-item :kind vector?))