mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +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
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
// Code generated from Pkl module `models`. DO NOT EDIT.
|
|
package models
|
|
|
|
type Credential struct {
|
|
Id string `pkl:"id" json:"id,omitempty" query:"id"`
|
|
|
|
Subject string `pkl:"subject" json:"subject,omitempty"`
|
|
|
|
Controller string `pkl:"controller" json:"controller,omitempty"`
|
|
|
|
AttestationType string `pkl:"attestationType" json:"attestationType,omitempty"`
|
|
|
|
Origin string `pkl:"origin" json:"origin,omitempty"`
|
|
|
|
CredentialId string `pkl:"credentialId" json:"credentialId,omitempty"`
|
|
|
|
PublicKey string `pkl:"publicKey" json:"publicKey,omitempty"`
|
|
|
|
Transport []string `pkl:"transport" json:"transport,omitempty"`
|
|
|
|
SignCount uint `pkl:"signCount" json:"signCount,omitempty"`
|
|
|
|
UserPresent bool `pkl:"userPresent" json:"userPresent,omitempty"`
|
|
|
|
UserVerified bool `pkl:"userVerified" json:"userVerified,omitempty"`
|
|
|
|
BackupEligible bool `pkl:"backupEligible" json:"backupEligible,omitempty"`
|
|
|
|
BackupState bool `pkl:"backupState" json:"backupState,omitempty"`
|
|
|
|
CloneWarning bool `pkl:"cloneWarning" json:"cloneWarning,omitempty"`
|
|
|
|
CreatedAt *string `pkl:"createdAt" json:"createdAt,omitempty"`
|
|
|
|
UpdatedAt *string `pkl:"updatedAt" json:"updatedAt,omitempty"`
|
|
}
|