@vira-ui/cli 1.0.0 → 1.0.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.
- package/README.md +965 -0
- package/dist/go/eventsAPI.js +5 -0
- package/dist/index.js +1221 -34
- package/dist/react/appTsx.js +61 -47
- package/dist/react/kanbanService.js +95 -94
- package/package.json +1 -1
package/dist/go/eventsAPI.js
CHANGED
|
@@ -16,6 +16,11 @@ import (
|
|
|
16
16
|
// VRP_VERSION is the current protocol version.
|
|
17
17
|
const VRP_VERSION = "0.1"
|
|
18
18
|
|
|
19
|
+
// ProtocolVersion returns the current VRP version.
|
|
20
|
+
func ProtocolVersion() string {
|
|
21
|
+
return VRP_VERSION
|
|
22
|
+
}
|
|
23
|
+
|
|
19
24
|
// WSMessage matches protocol message schema.
|
|
20
25
|
type WSMessage struct {
|
|
21
26
|
Type string \`json:"type"\`
|