mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 02:11:40 +00:00
* fix: update commitizen version * feat: add WASM build tags to db actions * feat: Update all actions to follow `AddAsset` for error handling * feat: remove database dependency in dwn and motr commands * feat: add basic info form to registration view * feat: implement basic browser navigation component * refactor: move database related files to middleware * fix: remove unused test command * fix: update source directory for buf-publish workflow * feat: embed dwn config data * feat: add Sync RPC to query service * refactor: rename package to for better organization * feat: add new javascript exception handling for server requests * refactor: move dwn.wasm to embed directory * refactor: move server files to a new directory * refactor: move session related code to client package * refactor: Update dwn.wasm build path * refactor: move dwn wasm build to vfs * feat: introduce config loading middleware * feat: introduce DWN config and address JSON * refactor: move dwn wasm build output to embed directory * feat: introduce config and IndexedDB model * refactor: move DWN config file generation to vfs * refactor: move config package to * feat: add Sonr.ID IPFS gateway proxy * feat: add SWT data structure * feat: update index.html to use Sonr styles and scripts * feat(dwn): remove index.html server endpoint * feat: add Navigator API for web credential management
61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
// Code generated from Pkl module `txns`. DO NOT EDIT.
|
|
package txns
|
|
|
|
import "github.com/apple/pkl-go/pkl"
|
|
|
|
type MsgDidRegisterController interface {
|
|
Msg
|
|
|
|
GetAuthority() string
|
|
|
|
GetCid() string
|
|
|
|
GetOrigin() string
|
|
|
|
GetAuthentication() []*pkl.Object
|
|
|
|
GetToken() *pkl.Object
|
|
}
|
|
|
|
var _ MsgDidRegisterController = (*MsgDidRegisterControllerImpl)(nil)
|
|
|
|
type MsgDidRegisterControllerImpl struct {
|
|
// The type URL for the message
|
|
TypeUrl string `pkl:"typeUrl"`
|
|
|
|
Authority string `pkl:"authority"`
|
|
|
|
Cid string `pkl:"cid"`
|
|
|
|
Origin string `pkl:"origin"`
|
|
|
|
Authentication []*pkl.Object `pkl:"authentication"`
|
|
|
|
Token *pkl.Object `pkl:"token"`
|
|
}
|
|
|
|
// The type URL for the message
|
|
func (rcv *MsgDidRegisterControllerImpl) GetTypeUrl() string {
|
|
return rcv.TypeUrl
|
|
}
|
|
|
|
func (rcv *MsgDidRegisterControllerImpl) GetAuthority() string {
|
|
return rcv.Authority
|
|
}
|
|
|
|
func (rcv *MsgDidRegisterControllerImpl) GetCid() string {
|
|
return rcv.Cid
|
|
}
|
|
|
|
func (rcv *MsgDidRegisterControllerImpl) GetOrigin() string {
|
|
return rcv.Origin
|
|
}
|
|
|
|
func (rcv *MsgDidRegisterControllerImpl) GetAuthentication() []*pkl.Object {
|
|
return rcv.Authentication
|
|
}
|
|
|
|
func (rcv *MsgDidRegisterControllerImpl) GetToken() *pkl.Object {
|
|
return rcv.Token
|
|
}
|