chore: Review fixes at #378 (#383)

* Review fixes

* remove logs

* Fixes

* Todo to remove prefix later

* Refactor service signatures

* Fixes

* Update lock file

* Fix lockfile

* Update deps

* More fixes and renames

* Fix compiler

* Peer refactoring and cutting onConnectionChange API

* Revert deleted API
This commit is contained in:
Akim
2023-11-23 04:18:10 +07:00
committed by GitHub
parent f4a550dd22
commit 98462bfdf6
34 changed files with 2413 additions and 585 deletions

View File

@ -1,10 +1,10 @@
data GreetingRecord:
data GreetingRecordData:
str: string
num: i32
service Greeting("greeting"):
greeting(name: string) -> string
greeting_record() -> GreetingRecord
greeting_record() -> GreetingRecordData
func call(arg: string) -> string:
res1 <- Greeting.greeting(arg)
@ -13,7 +13,7 @@ func call(arg: string) -> string:
<- res3
service GreetingRecord:
greeting_record() -> GreetingRecord
greeting_record() -> GreetingRecordData
log_debug()
log_error()
log_info()