This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
·
85 commits
to develop
since this release
v0.0.13-alpha - 2023-11-29
ResourceDef
fields have been updated:name
is nowresource_name
, and the following three fields have been added to store where the resource entry is stored:installed_app_id
,role_name
andzome_name
.- Because of this change to
ResourceDef
, theresource_defs
field ofAppletConfig
no longer needs to be of typeHappZomeMap<BTreeMap<String, EntryHash>>
and is now justBTreeMap<String, ResourceDef>
. In fact,HappZomeMap
has been removed from the codebase. Additionally, theresource_defs
field inAppletConfigInput
has been reverted toVec<ConfigResourceDef>
. - all
create_
zome functions that create an entry now returnRecord
rather thanEntryHash
. set_assessment_widget_tray_config
andget_assessment_widget_tray_config
zome function for configuring the assessment widget tray defined in the new entry typeAssessmentWidgetBlockConfig
. These are used for binding a widget to a dimension so we know which widget to display when creating an assessment.