diff --git a/core/block/editor/smartblock/smartblock.go b/core/block/editor/smartblock/smartblock.go index f25d9a49c..a3e992625 100644 --- a/core/block/editor/smartblock/smartblock.go +++ b/core/block/editor/smartblock/smartblock.go @@ -505,8 +505,12 @@ func (sb *smartBlock) navigationalLinks() []string { s := sb.Doc.(*state.State) - // Objects from collection - ids := s.GetStoreSlice(template.CollectionStoreKey) + var ids []string + + if !internalflag.NewFromState(s).Has(model.InternalFlag_collectionDontIndex) { + // flag used when importing a large set of objects + ids = append(ids, s.GetStoreSlice(template.CollectionStoreKey)...) + } err := s.Iterate(func(b simple.Block) (isContinue bool) { if f := b.Model().GetFile(); f != nil { diff --git a/core/block/import/converter/collection.go b/core/block/import/converter/collection.go index 656d250f2..14de46478 100644 --- a/core/block/import/converter/collection.go +++ b/core/block/import/converter/collection.go @@ -26,7 +26,9 @@ func NewRootCollection(service *collection.Service) *RootCollection { func (r *RootCollection) AddObjects(collectionName string, targetObjects []string) (*Snapshot, error) { detailsStruct := r.getCreateCollectionRequest(collectionName) - _, _, st, err := r.service.CreateCollection(detailsStruct, nil) + _, _, st, err := r.service.CreateCollection(detailsStruct, []*model.InternalFlag{{ + Value: model.InternalFlag_collectionDontIndex, + }}) if err != nil { return nil, err } diff --git a/docs/proto.md b/docs/proto.md index 312b43836..bdea9d9e6 100644 --- a/docs/proto.md +++ b/docs/proto.md @@ -3,1400 +3,1394 @@ ## Table of Contents -- [pb/protos/service/service.proto](#pb_protos_service_service-proto) - - [ClientCommands](#anytype-ClientCommands) +- [pb/protos/service/service.proto](#pb/protos/service/service.proto) + - [ClientCommands](#anytype.ClientCommands) -- [pb/protos/changes.proto](#pb_protos_changes-proto) - - [Change](#anytype-Change) - - [Change.BlockCreate](#anytype-Change-BlockCreate) - - [Change.BlockDuplicate](#anytype-Change-BlockDuplicate) - - [Change.BlockMove](#anytype-Change-BlockMove) - - [Change.BlockRemove](#anytype-Change-BlockRemove) - - [Change.BlockUpdate](#anytype-Change-BlockUpdate) - - [Change.Content](#anytype-Change-Content) - - [Change.DetailsSet](#anytype-Change-DetailsSet) - - [Change.DetailsUnset](#anytype-Change-DetailsUnset) - - [Change.FileKeys](#anytype-Change-FileKeys) - - [Change.FileKeys.KeysEntry](#anytype-Change-FileKeys-KeysEntry) - - [Change.ObjectTypeAdd](#anytype-Change-ObjectTypeAdd) - - [Change.ObjectTypeRemove](#anytype-Change-ObjectTypeRemove) - - [Change.RelationAdd](#anytype-Change-RelationAdd) - - [Change.RelationRemove](#anytype-Change-RelationRemove) - - [Change.Snapshot](#anytype-Change-Snapshot) - - [Change.Snapshot.LogHeadsEntry](#anytype-Change-Snapshot-LogHeadsEntry) - - [Change.StoreKeySet](#anytype-Change-StoreKeySet) - - [Change.StoreKeyUnset](#anytype-Change-StoreKeyUnset) - - [Change.StoreSliceUpdate](#anytype-Change-StoreSliceUpdate) - - [Change.StoreSliceUpdate.Add](#anytype-Change-StoreSliceUpdate-Add) - - [Change.StoreSliceUpdate.Move](#anytype-Change-StoreSliceUpdate-Move) - - [Change.StoreSliceUpdate.Remove](#anytype-Change-StoreSliceUpdate-Remove) - - [Change._RelationAdd](#anytype-Change-_RelationAdd) - - [Change._RelationRemove](#anytype-Change-_RelationRemove) - - [Change._RelationUpdate](#anytype-Change-_RelationUpdate) - - [Change._RelationUpdate.Dict](#anytype-Change-_RelationUpdate-Dict) - - [Change._RelationUpdate.ObjectTypes](#anytype-Change-_RelationUpdate-ObjectTypes) +- [pb/protos/changes.proto](#pb/protos/changes.proto) + - [Change](#anytype.Change) + - [Change.BlockCreate](#anytype.Change.BlockCreate) + - [Change.BlockDuplicate](#anytype.Change.BlockDuplicate) + - [Change.BlockMove](#anytype.Change.BlockMove) + - [Change.BlockRemove](#anytype.Change.BlockRemove) + - [Change.BlockUpdate](#anytype.Change.BlockUpdate) + - [Change.Content](#anytype.Change.Content) + - [Change.DetailsSet](#anytype.Change.DetailsSet) + - [Change.DetailsUnset](#anytype.Change.DetailsUnset) + - [Change.FileKeys](#anytype.Change.FileKeys) + - [Change.FileKeys.KeysEntry](#anytype.Change.FileKeys.KeysEntry) + - [Change.ObjectTypeAdd](#anytype.Change.ObjectTypeAdd) + - [Change.ObjectTypeRemove](#anytype.Change.ObjectTypeRemove) + - [Change.RelationAdd](#anytype.Change.RelationAdd) + - [Change.RelationRemove](#anytype.Change.RelationRemove) + - [Change.Snapshot](#anytype.Change.Snapshot) + - [Change.Snapshot.LogHeadsEntry](#anytype.Change.Snapshot.LogHeadsEntry) + - [Change.StoreKeySet](#anytype.Change.StoreKeySet) + - [Change.StoreKeyUnset](#anytype.Change.StoreKeyUnset) + - [Change.StoreSliceUpdate](#anytype.Change.StoreSliceUpdate) + - [Change.StoreSliceUpdate.Add](#anytype.Change.StoreSliceUpdate.Add) + - [Change.StoreSliceUpdate.Move](#anytype.Change.StoreSliceUpdate.Move) + - [Change.StoreSliceUpdate.Remove](#anytype.Change.StoreSliceUpdate.Remove) + - [Change._RelationAdd](#anytype.Change._RelationAdd) + - [Change._RelationRemove](#anytype.Change._RelationRemove) + - [Change._RelationUpdate](#anytype.Change._RelationUpdate) + - [Change._RelationUpdate.Dict](#anytype.Change._RelationUpdate.Dict) + - [Change._RelationUpdate.ObjectTypes](#anytype.Change._RelationUpdate.ObjectTypes) -- [pb/protos/commands.proto](#pb_protos_commands-proto) - - [Empty](#anytype-Empty) - - [Rpc](#anytype-Rpc) - - [Rpc.Account](#anytype-Rpc-Account) - - [Rpc.Account.Config](#anytype-Rpc-Account-Config) - - [Rpc.Account.ConfigUpdate](#anytype-Rpc-Account-ConfigUpdate) - - [Rpc.Account.ConfigUpdate.Request](#anytype-Rpc-Account-ConfigUpdate-Request) - - [Rpc.Account.ConfigUpdate.Response](#anytype-Rpc-Account-ConfigUpdate-Response) - - [Rpc.Account.ConfigUpdate.Response.Error](#anytype-Rpc-Account-ConfigUpdate-Response-Error) - - [Rpc.Account.Create](#anytype-Rpc-Account-Create) - - [Rpc.Account.Create.Request](#anytype-Rpc-Account-Create-Request) - - [Rpc.Account.Create.Response](#anytype-Rpc-Account-Create-Response) - - [Rpc.Account.Create.Response.Error](#anytype-Rpc-Account-Create-Response-Error) - - [Rpc.Account.Delete](#anytype-Rpc-Account-Delete) - - [Rpc.Account.Delete.Request](#anytype-Rpc-Account-Delete-Request) - - [Rpc.Account.Delete.Response](#anytype-Rpc-Account-Delete-Response) - - [Rpc.Account.Delete.Response.Error](#anytype-Rpc-Account-Delete-Response-Error) - - [Rpc.Account.GetConfig](#anytype-Rpc-Account-GetConfig) - - [Rpc.Account.GetConfig.Get](#anytype-Rpc-Account-GetConfig-Get) - - [Rpc.Account.GetConfig.Get.Request](#anytype-Rpc-Account-GetConfig-Get-Request) - - [Rpc.Account.Move](#anytype-Rpc-Account-Move) - - [Rpc.Account.Move.Request](#anytype-Rpc-Account-Move-Request) - - [Rpc.Account.Move.Response](#anytype-Rpc-Account-Move-Response) - - [Rpc.Account.Move.Response.Error](#anytype-Rpc-Account-Move-Response-Error) - - [Rpc.Account.Recover](#anytype-Rpc-Account-Recover) - - [Rpc.Account.Recover.Request](#anytype-Rpc-Account-Recover-Request) - - [Rpc.Account.Recover.Response](#anytype-Rpc-Account-Recover-Response) - - [Rpc.Account.Recover.Response.Error](#anytype-Rpc-Account-Recover-Response-Error) - - [Rpc.Account.RecoverFromLegacyExport](#anytype-Rpc-Account-RecoverFromLegacyExport) - - [Rpc.Account.RecoverFromLegacyExport.Request](#anytype-Rpc-Account-RecoverFromLegacyExport-Request) - - [Rpc.Account.RecoverFromLegacyExport.Response](#anytype-Rpc-Account-RecoverFromLegacyExport-Response) - - [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error) - - [Rpc.Account.Select](#anytype-Rpc-Account-Select) - - [Rpc.Account.Select.Request](#anytype-Rpc-Account-Select-Request) - - [Rpc.Account.Select.Response](#anytype-Rpc-Account-Select-Response) - - [Rpc.Account.Select.Response.Error](#anytype-Rpc-Account-Select-Response-Error) - - [Rpc.Account.Stop](#anytype-Rpc-Account-Stop) - - [Rpc.Account.Stop.Request](#anytype-Rpc-Account-Stop-Request) - - [Rpc.Account.Stop.Response](#anytype-Rpc-Account-Stop-Response) - - [Rpc.Account.Stop.Response.Error](#anytype-Rpc-Account-Stop-Response-Error) - - [Rpc.App](#anytype-Rpc-App) - - [Rpc.App.GetVersion](#anytype-Rpc-App-GetVersion) - - [Rpc.App.GetVersion.Request](#anytype-Rpc-App-GetVersion-Request) - - [Rpc.App.GetVersion.Response](#anytype-Rpc-App-GetVersion-Response) - - [Rpc.App.GetVersion.Response.Error](#anytype-Rpc-App-GetVersion-Response-Error) - - [Rpc.App.SetDeviceState](#anytype-Rpc-App-SetDeviceState) - - [Rpc.App.SetDeviceState.Request](#anytype-Rpc-App-SetDeviceState-Request) - - [Rpc.App.SetDeviceState.Response](#anytype-Rpc-App-SetDeviceState-Response) - - [Rpc.App.SetDeviceState.Response.Error](#anytype-Rpc-App-SetDeviceState-Response-Error) - - [Rpc.App.Shutdown](#anytype-Rpc-App-Shutdown) - - [Rpc.App.Shutdown.Request](#anytype-Rpc-App-Shutdown-Request) - - [Rpc.App.Shutdown.Response](#anytype-Rpc-App-Shutdown-Response) - - [Rpc.App.Shutdown.Response.Error](#anytype-Rpc-App-Shutdown-Response-Error) - - [Rpc.Block](#anytype-Rpc-Block) - - [Rpc.Block.Copy](#anytype-Rpc-Block-Copy) - - [Rpc.Block.Copy.Request](#anytype-Rpc-Block-Copy-Request) - - [Rpc.Block.Copy.Response](#anytype-Rpc-Block-Copy-Response) - - [Rpc.Block.Copy.Response.Error](#anytype-Rpc-Block-Copy-Response-Error) - - [Rpc.Block.Create](#anytype-Rpc-Block-Create) - - [Rpc.Block.Create.Request](#anytype-Rpc-Block-Create-Request) - - [Rpc.Block.Create.Response](#anytype-Rpc-Block-Create-Response) - - [Rpc.Block.Create.Response.Error](#anytype-Rpc-Block-Create-Response-Error) - - [Rpc.Block.CreateWidget](#anytype-Rpc-Block-CreateWidget) - - [Rpc.Block.CreateWidget.Request](#anytype-Rpc-Block-CreateWidget-Request) - - [Rpc.Block.CreateWidget.Response](#anytype-Rpc-Block-CreateWidget-Response) - - [Rpc.Block.CreateWidget.Response.Error](#anytype-Rpc-Block-CreateWidget-Response-Error) - - [Rpc.Block.Cut](#anytype-Rpc-Block-Cut) - - [Rpc.Block.Cut.Request](#anytype-Rpc-Block-Cut-Request) - - [Rpc.Block.Cut.Response](#anytype-Rpc-Block-Cut-Response) - - [Rpc.Block.Cut.Response.Error](#anytype-Rpc-Block-Cut-Response-Error) - - [Rpc.Block.Download](#anytype-Rpc-Block-Download) - - [Rpc.Block.Download.Request](#anytype-Rpc-Block-Download-Request) - - [Rpc.Block.Download.Response](#anytype-Rpc-Block-Download-Response) - - [Rpc.Block.Download.Response.Error](#anytype-Rpc-Block-Download-Response-Error) - - [Rpc.Block.Export](#anytype-Rpc-Block-Export) - - [Rpc.Block.Export.Request](#anytype-Rpc-Block-Export-Request) - - [Rpc.Block.Export.Response](#anytype-Rpc-Block-Export-Response) - - [Rpc.Block.Export.Response.Error](#anytype-Rpc-Block-Export-Response-Error) - - [Rpc.Block.ListConvertToObjects](#anytype-Rpc-Block-ListConvertToObjects) - - [Rpc.Block.ListConvertToObjects.Request](#anytype-Rpc-Block-ListConvertToObjects-Request) - - [Rpc.Block.ListConvertToObjects.Response](#anytype-Rpc-Block-ListConvertToObjects-Response) - - [Rpc.Block.ListConvertToObjects.Response.Error](#anytype-Rpc-Block-ListConvertToObjects-Response-Error) - - [Rpc.Block.ListDelete](#anytype-Rpc-Block-ListDelete) - - [Rpc.Block.ListDelete.Request](#anytype-Rpc-Block-ListDelete-Request) - - [Rpc.Block.ListDelete.Response](#anytype-Rpc-Block-ListDelete-Response) - - [Rpc.Block.ListDelete.Response.Error](#anytype-Rpc-Block-ListDelete-Response-Error) - - [Rpc.Block.ListDuplicate](#anytype-Rpc-Block-ListDuplicate) - - [Rpc.Block.ListDuplicate.Request](#anytype-Rpc-Block-ListDuplicate-Request) - - [Rpc.Block.ListDuplicate.Response](#anytype-Rpc-Block-ListDuplicate-Response) - - [Rpc.Block.ListDuplicate.Response.Error](#anytype-Rpc-Block-ListDuplicate-Response-Error) - - [Rpc.Block.ListMoveToExistingObject](#anytype-Rpc-Block-ListMoveToExistingObject) - - [Rpc.Block.ListMoveToExistingObject.Request](#anytype-Rpc-Block-ListMoveToExistingObject-Request) - - [Rpc.Block.ListMoveToExistingObject.Response](#anytype-Rpc-Block-ListMoveToExistingObject-Response) - - [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error) - - [Rpc.Block.ListMoveToNewObject](#anytype-Rpc-Block-ListMoveToNewObject) - - [Rpc.Block.ListMoveToNewObject.Request](#anytype-Rpc-Block-ListMoveToNewObject-Request) - - [Rpc.Block.ListMoveToNewObject.Response](#anytype-Rpc-Block-ListMoveToNewObject-Response) - - [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error) - - [Rpc.Block.ListSetAlign](#anytype-Rpc-Block-ListSetAlign) - - [Rpc.Block.ListSetAlign.Request](#anytype-Rpc-Block-ListSetAlign-Request) - - [Rpc.Block.ListSetAlign.Response](#anytype-Rpc-Block-ListSetAlign-Response) - - [Rpc.Block.ListSetAlign.Response.Error](#anytype-Rpc-Block-ListSetAlign-Response-Error) - - [Rpc.Block.ListSetBackgroundColor](#anytype-Rpc-Block-ListSetBackgroundColor) - - [Rpc.Block.ListSetBackgroundColor.Request](#anytype-Rpc-Block-ListSetBackgroundColor-Request) - - [Rpc.Block.ListSetBackgroundColor.Response](#anytype-Rpc-Block-ListSetBackgroundColor-Response) - - [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error) - - [Rpc.Block.ListSetFields](#anytype-Rpc-Block-ListSetFields) - - [Rpc.Block.ListSetFields.Request](#anytype-Rpc-Block-ListSetFields-Request) - - [Rpc.Block.ListSetFields.Request.BlockField](#anytype-Rpc-Block-ListSetFields-Request-BlockField) - - [Rpc.Block.ListSetFields.Response](#anytype-Rpc-Block-ListSetFields-Response) - - [Rpc.Block.ListSetFields.Response.Error](#anytype-Rpc-Block-ListSetFields-Response-Error) - - [Rpc.Block.ListSetVerticalAlign](#anytype-Rpc-Block-ListSetVerticalAlign) - - [Rpc.Block.ListSetVerticalAlign.Request](#anytype-Rpc-Block-ListSetVerticalAlign-Request) - - [Rpc.Block.ListSetVerticalAlign.Response](#anytype-Rpc-Block-ListSetVerticalAlign-Response) - - [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error) - - [Rpc.Block.ListTurnInto](#anytype-Rpc-Block-ListTurnInto) - - [Rpc.Block.ListTurnInto.Request](#anytype-Rpc-Block-ListTurnInto-Request) - - [Rpc.Block.ListTurnInto.Response](#anytype-Rpc-Block-ListTurnInto-Response) - - [Rpc.Block.ListTurnInto.Response.Error](#anytype-Rpc-Block-ListTurnInto-Response-Error) - - [Rpc.Block.ListUpdate](#anytype-Rpc-Block-ListUpdate) - - [Rpc.Block.ListUpdate.Request](#anytype-Rpc-Block-ListUpdate-Request) - - [Rpc.Block.ListUpdate.Request.Text](#anytype-Rpc-Block-ListUpdate-Request-Text) - - [Rpc.Block.Merge](#anytype-Rpc-Block-Merge) - - [Rpc.Block.Merge.Request](#anytype-Rpc-Block-Merge-Request) - - [Rpc.Block.Merge.Response](#anytype-Rpc-Block-Merge-Response) - - [Rpc.Block.Merge.Response.Error](#anytype-Rpc-Block-Merge-Response-Error) - - [Rpc.Block.Paste](#anytype-Rpc-Block-Paste) - - [Rpc.Block.Paste.Request](#anytype-Rpc-Block-Paste-Request) - - [Rpc.Block.Paste.Request.File](#anytype-Rpc-Block-Paste-Request-File) - - [Rpc.Block.Paste.Response](#anytype-Rpc-Block-Paste-Response) - - [Rpc.Block.Paste.Response.Error](#anytype-Rpc-Block-Paste-Response-Error) - - [Rpc.Block.Replace](#anytype-Rpc-Block-Replace) - - [Rpc.Block.Replace.Request](#anytype-Rpc-Block-Replace-Request) - - [Rpc.Block.Replace.Response](#anytype-Rpc-Block-Replace-Response) - - [Rpc.Block.Replace.Response.Error](#anytype-Rpc-Block-Replace-Response-Error) - - [Rpc.Block.SetFields](#anytype-Rpc-Block-SetFields) - - [Rpc.Block.SetFields.Request](#anytype-Rpc-Block-SetFields-Request) - - [Rpc.Block.SetFields.Response](#anytype-Rpc-Block-SetFields-Response) - - [Rpc.Block.SetFields.Response.Error](#anytype-Rpc-Block-SetFields-Response-Error) - - [Rpc.Block.Split](#anytype-Rpc-Block-Split) - - [Rpc.Block.Split.Request](#anytype-Rpc-Block-Split-Request) - - [Rpc.Block.Split.Response](#anytype-Rpc-Block-Split-Response) - - [Rpc.Block.Split.Response.Error](#anytype-Rpc-Block-Split-Response-Error) - - [Rpc.Block.Upload](#anytype-Rpc-Block-Upload) - - [Rpc.Block.Upload.Request](#anytype-Rpc-Block-Upload-Request) - - [Rpc.Block.Upload.Response](#anytype-Rpc-Block-Upload-Response) - - [Rpc.Block.Upload.Response.Error](#anytype-Rpc-Block-Upload-Response-Error) - - [Rpc.BlockBookmark](#anytype-Rpc-BlockBookmark) - - [Rpc.BlockBookmark.CreateAndFetch](#anytype-Rpc-BlockBookmark-CreateAndFetch) - - [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype-Rpc-BlockBookmark-CreateAndFetch-Request) - - [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response) - - [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error) - - [Rpc.BlockBookmark.Fetch](#anytype-Rpc-BlockBookmark-Fetch) - - [Rpc.BlockBookmark.Fetch.Request](#anytype-Rpc-BlockBookmark-Fetch-Request) - - [Rpc.BlockBookmark.Fetch.Response](#anytype-Rpc-BlockBookmark-Fetch-Response) - - [Rpc.BlockBookmark.Fetch.Response.Error](#anytype-Rpc-BlockBookmark-Fetch-Response-Error) - - [Rpc.BlockDataview](#anytype-Rpc-BlockDataview) - - [Rpc.BlockDataview.CreateBookmark](#anytype-Rpc-BlockDataview-CreateBookmark) - - [Rpc.BlockDataview.CreateBookmark.Request](#anytype-Rpc-BlockDataview-CreateBookmark-Request) - - [Rpc.BlockDataview.CreateBookmark.Response](#anytype-Rpc-BlockDataview-CreateBookmark-Response) - - [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error) - - [Rpc.BlockDataview.CreateFromExistingObject](#anytype-Rpc-BlockDataview-CreateFromExistingObject) - - [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Request) - - [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response) - - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error) - - [Rpc.BlockDataview.Filter](#anytype-Rpc-BlockDataview-Filter) - - [Rpc.BlockDataview.Filter.Add](#anytype-Rpc-BlockDataview-Filter-Add) - - [Rpc.BlockDataview.Filter.Add.Request](#anytype-Rpc-BlockDataview-Filter-Add-Request) - - [Rpc.BlockDataview.Filter.Add.Response](#anytype-Rpc-BlockDataview-Filter-Add-Response) - - [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error) - - [Rpc.BlockDataview.Filter.Remove](#anytype-Rpc-BlockDataview-Filter-Remove) - - [Rpc.BlockDataview.Filter.Remove.Request](#anytype-Rpc-BlockDataview-Filter-Remove-Request) - - [Rpc.BlockDataview.Filter.Remove.Response](#anytype-Rpc-BlockDataview-Filter-Remove-Response) - - [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error) - - [Rpc.BlockDataview.Filter.Replace](#anytype-Rpc-BlockDataview-Filter-Replace) - - [Rpc.BlockDataview.Filter.Replace.Request](#anytype-Rpc-BlockDataview-Filter-Replace-Request) - - [Rpc.BlockDataview.Filter.Replace.Response](#anytype-Rpc-BlockDataview-Filter-Replace-Response) - - [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error) - - [Rpc.BlockDataview.Filter.Sort](#anytype-Rpc-BlockDataview-Filter-Sort) - - [Rpc.BlockDataview.Filter.Sort.Request](#anytype-Rpc-BlockDataview-Filter-Sort-Request) - - [Rpc.BlockDataview.Filter.Sort.Response](#anytype-Rpc-BlockDataview-Filter-Sort-Response) - - [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error) - - [Rpc.BlockDataview.GroupOrder](#anytype-Rpc-BlockDataview-GroupOrder) - - [Rpc.BlockDataview.GroupOrder.Update](#anytype-Rpc-BlockDataview-GroupOrder-Update) - - [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype-Rpc-BlockDataview-GroupOrder-Update-Request) - - [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response) - - [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error) - - [Rpc.BlockDataview.ObjectOrder](#anytype-Rpc-BlockDataview-ObjectOrder) - - [Rpc.BlockDataview.ObjectOrder.Move](#anytype-Rpc-BlockDataview-ObjectOrder-Move) - - [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Request) - - [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response) - - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error) - - [Rpc.BlockDataview.ObjectOrder.Update](#anytype-Rpc-BlockDataview-ObjectOrder-Update) - - [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Request) - - [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response) - - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error) - - [Rpc.BlockDataview.Relation](#anytype-Rpc-BlockDataview-Relation) - - [Rpc.BlockDataview.Relation.Add](#anytype-Rpc-BlockDataview-Relation-Add) - - [Rpc.BlockDataview.Relation.Add.Request](#anytype-Rpc-BlockDataview-Relation-Add-Request) - - [Rpc.BlockDataview.Relation.Add.Response](#anytype-Rpc-BlockDataview-Relation-Add-Response) - - [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error) - - [Rpc.BlockDataview.Relation.Delete](#anytype-Rpc-BlockDataview-Relation-Delete) - - [Rpc.BlockDataview.Relation.Delete.Request](#anytype-Rpc-BlockDataview-Relation-Delete-Request) - - [Rpc.BlockDataview.Relation.Delete.Response](#anytype-Rpc-BlockDataview-Relation-Delete-Response) - - [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error) - - [Rpc.BlockDataview.Relation.ListAvailable](#anytype-Rpc-BlockDataview-Relation-ListAvailable) - - [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Request) - - [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response) - - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error) - - [Rpc.BlockDataview.SetSource](#anytype-Rpc-BlockDataview-SetSource) - - [Rpc.BlockDataview.SetSource.Request](#anytype-Rpc-BlockDataview-SetSource-Request) - - [Rpc.BlockDataview.SetSource.Response](#anytype-Rpc-BlockDataview-SetSource-Response) - - [Rpc.BlockDataview.SetSource.Response.Error](#anytype-Rpc-BlockDataview-SetSource-Response-Error) - - [Rpc.BlockDataview.Sort](#anytype-Rpc-BlockDataview-Sort) - - [Rpc.BlockDataview.Sort.Add](#anytype-Rpc-BlockDataview-Sort-Add) - - [Rpc.BlockDataview.Sort.Add.Request](#anytype-Rpc-BlockDataview-Sort-Add-Request) - - [Rpc.BlockDataview.Sort.Add.Response](#anytype-Rpc-BlockDataview-Sort-Add-Response) - - [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error) - - [Rpc.BlockDataview.Sort.Remove](#anytype-Rpc-BlockDataview-Sort-Remove) - - [Rpc.BlockDataview.Sort.Remove.Request](#anytype-Rpc-BlockDataview-Sort-Remove-Request) - - [Rpc.BlockDataview.Sort.Remove.Response](#anytype-Rpc-BlockDataview-Sort-Remove-Response) - - [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error) - - [Rpc.BlockDataview.Sort.Replace](#anytype-Rpc-BlockDataview-Sort-Replace) - - [Rpc.BlockDataview.Sort.Replace.Request](#anytype-Rpc-BlockDataview-Sort-Replace-Request) - - [Rpc.BlockDataview.Sort.Replace.Response](#anytype-Rpc-BlockDataview-Sort-Replace-Response) - - [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error) - - [Rpc.BlockDataview.Sort.Sort](#anytype-Rpc-BlockDataview-Sort-Sort) - - [Rpc.BlockDataview.Sort.Sort.Request](#anytype-Rpc-BlockDataview-Sort-Sort-Request) - - [Rpc.BlockDataview.Sort.Sort.Response](#anytype-Rpc-BlockDataview-Sort-Sort-Response) - - [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error) - - [Rpc.BlockDataview.View](#anytype-Rpc-BlockDataview-View) - - [Rpc.BlockDataview.View.Create](#anytype-Rpc-BlockDataview-View-Create) - - [Rpc.BlockDataview.View.Create.Request](#anytype-Rpc-BlockDataview-View-Create-Request) - - [Rpc.BlockDataview.View.Create.Response](#anytype-Rpc-BlockDataview-View-Create-Response) - - [Rpc.BlockDataview.View.Create.Response.Error](#anytype-Rpc-BlockDataview-View-Create-Response-Error) - - [Rpc.BlockDataview.View.Delete](#anytype-Rpc-BlockDataview-View-Delete) - - [Rpc.BlockDataview.View.Delete.Request](#anytype-Rpc-BlockDataview-View-Delete-Request) - - [Rpc.BlockDataview.View.Delete.Response](#anytype-Rpc-BlockDataview-View-Delete-Response) - - [Rpc.BlockDataview.View.Delete.Response.Error](#anytype-Rpc-BlockDataview-View-Delete-Response-Error) - - [Rpc.BlockDataview.View.SetActive](#anytype-Rpc-BlockDataview-View-SetActive) - - [Rpc.BlockDataview.View.SetActive.Request](#anytype-Rpc-BlockDataview-View-SetActive-Request) - - [Rpc.BlockDataview.View.SetActive.Response](#anytype-Rpc-BlockDataview-View-SetActive-Response) - - [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error) - - [Rpc.BlockDataview.View.SetPosition](#anytype-Rpc-BlockDataview-View-SetPosition) - - [Rpc.BlockDataview.View.SetPosition.Request](#anytype-Rpc-BlockDataview-View-SetPosition-Request) - - [Rpc.BlockDataview.View.SetPosition.Response](#anytype-Rpc-BlockDataview-View-SetPosition-Response) - - [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error) - - [Rpc.BlockDataview.View.Update](#anytype-Rpc-BlockDataview-View-Update) - - [Rpc.BlockDataview.View.Update.Request](#anytype-Rpc-BlockDataview-View-Update-Request) - - [Rpc.BlockDataview.View.Update.Response](#anytype-Rpc-BlockDataview-View-Update-Response) - - [Rpc.BlockDataview.View.Update.Response.Error](#anytype-Rpc-BlockDataview-View-Update-Response-Error) - - [Rpc.BlockDataview.ViewRelation](#anytype-Rpc-BlockDataview-ViewRelation) - - [Rpc.BlockDataview.ViewRelation.Add](#anytype-Rpc-BlockDataview-ViewRelation-Add) - - [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype-Rpc-BlockDataview-ViewRelation-Add-Request) - - [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response) - - [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error) - - [Rpc.BlockDataview.ViewRelation.Remove](#anytype-Rpc-BlockDataview-ViewRelation-Remove) - - [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Request) - - [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response) - - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error) - - [Rpc.BlockDataview.ViewRelation.Replace](#anytype-Rpc-BlockDataview-ViewRelation-Replace) - - [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Request) - - [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response) - - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error) - - [Rpc.BlockDataview.ViewRelation.Sort](#anytype-Rpc-BlockDataview-ViewRelation-Sort) - - [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Request) - - [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response) - - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error) - - [Rpc.BlockDiv](#anytype-Rpc-BlockDiv) - - [Rpc.BlockDiv.ListSetStyle](#anytype-Rpc-BlockDiv-ListSetStyle) - - [Rpc.BlockDiv.ListSetStyle.Request](#anytype-Rpc-BlockDiv-ListSetStyle-Request) - - [Rpc.BlockDiv.ListSetStyle.Response](#anytype-Rpc-BlockDiv-ListSetStyle-Response) - - [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error) - - [Rpc.BlockFile](#anytype-Rpc-BlockFile) - - [Rpc.BlockFile.CreateAndUpload](#anytype-Rpc-BlockFile-CreateAndUpload) - - [Rpc.BlockFile.CreateAndUpload.Request](#anytype-Rpc-BlockFile-CreateAndUpload-Request) - - [Rpc.BlockFile.CreateAndUpload.Response](#anytype-Rpc-BlockFile-CreateAndUpload-Response) - - [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error) - - [Rpc.BlockFile.ListSetStyle](#anytype-Rpc-BlockFile-ListSetStyle) - - [Rpc.BlockFile.ListSetStyle.Request](#anytype-Rpc-BlockFile-ListSetStyle-Request) - - [Rpc.BlockFile.ListSetStyle.Response](#anytype-Rpc-BlockFile-ListSetStyle-Response) - - [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error) - - [Rpc.BlockFile.SetName](#anytype-Rpc-BlockFile-SetName) - - [Rpc.BlockFile.SetName.Request](#anytype-Rpc-BlockFile-SetName-Request) - - [Rpc.BlockFile.SetName.Response](#anytype-Rpc-BlockFile-SetName-Response) - - [Rpc.BlockFile.SetName.Response.Error](#anytype-Rpc-BlockFile-SetName-Response-Error) - - [Rpc.BlockImage](#anytype-Rpc-BlockImage) - - [Rpc.BlockImage.SetName](#anytype-Rpc-BlockImage-SetName) - - [Rpc.BlockImage.SetName.Request](#anytype-Rpc-BlockImage-SetName-Request) - - [Rpc.BlockImage.SetName.Response](#anytype-Rpc-BlockImage-SetName-Response) - - [Rpc.BlockImage.SetName.Response.Error](#anytype-Rpc-BlockImage-SetName-Response-Error) - - [Rpc.BlockImage.SetWidth](#anytype-Rpc-BlockImage-SetWidth) - - [Rpc.BlockImage.SetWidth.Request](#anytype-Rpc-BlockImage-SetWidth-Request) - - [Rpc.BlockImage.SetWidth.Response](#anytype-Rpc-BlockImage-SetWidth-Response) - - [Rpc.BlockImage.SetWidth.Response.Error](#anytype-Rpc-BlockImage-SetWidth-Response-Error) - - [Rpc.BlockLatex](#anytype-Rpc-BlockLatex) - - [Rpc.BlockLatex.SetText](#anytype-Rpc-BlockLatex-SetText) - - [Rpc.BlockLatex.SetText.Request](#anytype-Rpc-BlockLatex-SetText-Request) - - [Rpc.BlockLatex.SetText.Response](#anytype-Rpc-BlockLatex-SetText-Response) - - [Rpc.BlockLatex.SetText.Response.Error](#anytype-Rpc-BlockLatex-SetText-Response-Error) - - [Rpc.BlockLink](#anytype-Rpc-BlockLink) - - [Rpc.BlockLink.CreateWithObject](#anytype-Rpc-BlockLink-CreateWithObject) - - [Rpc.BlockLink.CreateWithObject.Request](#anytype-Rpc-BlockLink-CreateWithObject-Request) - - [Rpc.BlockLink.CreateWithObject.Response](#anytype-Rpc-BlockLink-CreateWithObject-Response) - - [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error) - - [Rpc.BlockLink.ListSetAppearance](#anytype-Rpc-BlockLink-ListSetAppearance) - - [Rpc.BlockLink.ListSetAppearance.Request](#anytype-Rpc-BlockLink-ListSetAppearance-Request) - - [Rpc.BlockLink.ListSetAppearance.Response](#anytype-Rpc-BlockLink-ListSetAppearance-Response) - - [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error) - - [Rpc.BlockRelation](#anytype-Rpc-BlockRelation) - - [Rpc.BlockRelation.Add](#anytype-Rpc-BlockRelation-Add) - - [Rpc.BlockRelation.Add.Request](#anytype-Rpc-BlockRelation-Add-Request) - - [Rpc.BlockRelation.Add.Response](#anytype-Rpc-BlockRelation-Add-Response) - - [Rpc.BlockRelation.Add.Response.Error](#anytype-Rpc-BlockRelation-Add-Response-Error) - - [Rpc.BlockRelation.SetKey](#anytype-Rpc-BlockRelation-SetKey) - - [Rpc.BlockRelation.SetKey.Request](#anytype-Rpc-BlockRelation-SetKey-Request) - - [Rpc.BlockRelation.SetKey.Response](#anytype-Rpc-BlockRelation-SetKey-Response) - - [Rpc.BlockRelation.SetKey.Response.Error](#anytype-Rpc-BlockRelation-SetKey-Response-Error) - - [Rpc.BlockTable](#anytype-Rpc-BlockTable) - - [Rpc.BlockTable.ColumnCreate](#anytype-Rpc-BlockTable-ColumnCreate) - - [Rpc.BlockTable.ColumnCreate.Request](#anytype-Rpc-BlockTable-ColumnCreate-Request) - - [Rpc.BlockTable.ColumnCreate.Response](#anytype-Rpc-BlockTable-ColumnCreate-Response) - - [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error) - - [Rpc.BlockTable.ColumnDelete](#anytype-Rpc-BlockTable-ColumnDelete) - - [Rpc.BlockTable.ColumnDelete.Request](#anytype-Rpc-BlockTable-ColumnDelete-Request) - - [Rpc.BlockTable.ColumnDelete.Response](#anytype-Rpc-BlockTable-ColumnDelete-Response) - - [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error) - - [Rpc.BlockTable.ColumnDuplicate](#anytype-Rpc-BlockTable-ColumnDuplicate) - - [Rpc.BlockTable.ColumnDuplicate.Request](#anytype-Rpc-BlockTable-ColumnDuplicate-Request) - - [Rpc.BlockTable.ColumnDuplicate.Response](#anytype-Rpc-BlockTable-ColumnDuplicate-Response) - - [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error) - - [Rpc.BlockTable.ColumnListFill](#anytype-Rpc-BlockTable-ColumnListFill) - - [Rpc.BlockTable.ColumnListFill.Request](#anytype-Rpc-BlockTable-ColumnListFill-Request) - - [Rpc.BlockTable.ColumnListFill.Response](#anytype-Rpc-BlockTable-ColumnListFill-Response) - - [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error) - - [Rpc.BlockTable.ColumnMove](#anytype-Rpc-BlockTable-ColumnMove) - - [Rpc.BlockTable.ColumnMove.Request](#anytype-Rpc-BlockTable-ColumnMove-Request) - - [Rpc.BlockTable.ColumnMove.Response](#anytype-Rpc-BlockTable-ColumnMove-Response) - - [Rpc.BlockTable.ColumnMove.Response.Error](#anytype-Rpc-BlockTable-ColumnMove-Response-Error) - - [Rpc.BlockTable.Create](#anytype-Rpc-BlockTable-Create) - - [Rpc.BlockTable.Create.Request](#anytype-Rpc-BlockTable-Create-Request) - - [Rpc.BlockTable.Create.Response](#anytype-Rpc-BlockTable-Create-Response) - - [Rpc.BlockTable.Create.Response.Error](#anytype-Rpc-BlockTable-Create-Response-Error) - - [Rpc.BlockTable.Expand](#anytype-Rpc-BlockTable-Expand) - - [Rpc.BlockTable.Expand.Request](#anytype-Rpc-BlockTable-Expand-Request) - - [Rpc.BlockTable.Expand.Response](#anytype-Rpc-BlockTable-Expand-Response) - - [Rpc.BlockTable.Expand.Response.Error](#anytype-Rpc-BlockTable-Expand-Response-Error) - - [Rpc.BlockTable.RowCreate](#anytype-Rpc-BlockTable-RowCreate) - - [Rpc.BlockTable.RowCreate.Request](#anytype-Rpc-BlockTable-RowCreate-Request) - - [Rpc.BlockTable.RowCreate.Response](#anytype-Rpc-BlockTable-RowCreate-Response) - - [Rpc.BlockTable.RowCreate.Response.Error](#anytype-Rpc-BlockTable-RowCreate-Response-Error) - - [Rpc.BlockTable.RowDelete](#anytype-Rpc-BlockTable-RowDelete) - - [Rpc.BlockTable.RowDelete.Request](#anytype-Rpc-BlockTable-RowDelete-Request) - - [Rpc.BlockTable.RowDelete.Response](#anytype-Rpc-BlockTable-RowDelete-Response) - - [Rpc.BlockTable.RowDelete.Response.Error](#anytype-Rpc-BlockTable-RowDelete-Response-Error) - - [Rpc.BlockTable.RowDuplicate](#anytype-Rpc-BlockTable-RowDuplicate) - - [Rpc.BlockTable.RowDuplicate.Request](#anytype-Rpc-BlockTable-RowDuplicate-Request) - - [Rpc.BlockTable.RowDuplicate.Response](#anytype-Rpc-BlockTable-RowDuplicate-Response) - - [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error) - - [Rpc.BlockTable.RowListClean](#anytype-Rpc-BlockTable-RowListClean) - - [Rpc.BlockTable.RowListClean.Request](#anytype-Rpc-BlockTable-RowListClean-Request) - - [Rpc.BlockTable.RowListClean.Response](#anytype-Rpc-BlockTable-RowListClean-Response) - - [Rpc.BlockTable.RowListClean.Response.Error](#anytype-Rpc-BlockTable-RowListClean-Response-Error) - - [Rpc.BlockTable.RowListFill](#anytype-Rpc-BlockTable-RowListFill) - - [Rpc.BlockTable.RowListFill.Request](#anytype-Rpc-BlockTable-RowListFill-Request) - - [Rpc.BlockTable.RowListFill.Response](#anytype-Rpc-BlockTable-RowListFill-Response) - - [Rpc.BlockTable.RowListFill.Response.Error](#anytype-Rpc-BlockTable-RowListFill-Response-Error) - - [Rpc.BlockTable.RowSetHeader](#anytype-Rpc-BlockTable-RowSetHeader) - - [Rpc.BlockTable.RowSetHeader.Request](#anytype-Rpc-BlockTable-RowSetHeader-Request) - - [Rpc.BlockTable.RowSetHeader.Response](#anytype-Rpc-BlockTable-RowSetHeader-Response) - - [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error) - - [Rpc.BlockTable.Sort](#anytype-Rpc-BlockTable-Sort) - - [Rpc.BlockTable.Sort.Request](#anytype-Rpc-BlockTable-Sort-Request) - - [Rpc.BlockTable.Sort.Response](#anytype-Rpc-BlockTable-Sort-Response) - - [Rpc.BlockTable.Sort.Response.Error](#anytype-Rpc-BlockTable-Sort-Response-Error) - - [Rpc.BlockText](#anytype-Rpc-BlockText) - - [Rpc.BlockText.ListClearContent](#anytype-Rpc-BlockText-ListClearContent) - - [Rpc.BlockText.ListClearContent.Request](#anytype-Rpc-BlockText-ListClearContent-Request) - - [Rpc.BlockText.ListClearContent.Response](#anytype-Rpc-BlockText-ListClearContent-Response) - - [Rpc.BlockText.ListClearContent.Response.Error](#anytype-Rpc-BlockText-ListClearContent-Response-Error) - - [Rpc.BlockText.ListClearStyle](#anytype-Rpc-BlockText-ListClearStyle) - - [Rpc.BlockText.ListClearStyle.Request](#anytype-Rpc-BlockText-ListClearStyle-Request) - - [Rpc.BlockText.ListClearStyle.Response](#anytype-Rpc-BlockText-ListClearStyle-Response) - - [Rpc.BlockText.ListClearStyle.Response.Error](#anytype-Rpc-BlockText-ListClearStyle-Response-Error) - - [Rpc.BlockText.ListSetColor](#anytype-Rpc-BlockText-ListSetColor) - - [Rpc.BlockText.ListSetColor.Request](#anytype-Rpc-BlockText-ListSetColor-Request) - - [Rpc.BlockText.ListSetColor.Response](#anytype-Rpc-BlockText-ListSetColor-Response) - - [Rpc.BlockText.ListSetColor.Response.Error](#anytype-Rpc-BlockText-ListSetColor-Response-Error) - - [Rpc.BlockText.ListSetMark](#anytype-Rpc-BlockText-ListSetMark) - - [Rpc.BlockText.ListSetMark.Request](#anytype-Rpc-BlockText-ListSetMark-Request) - - [Rpc.BlockText.ListSetMark.Response](#anytype-Rpc-BlockText-ListSetMark-Response) - - [Rpc.BlockText.ListSetMark.Response.Error](#anytype-Rpc-BlockText-ListSetMark-Response-Error) - - [Rpc.BlockText.ListSetStyle](#anytype-Rpc-BlockText-ListSetStyle) - - [Rpc.BlockText.ListSetStyle.Request](#anytype-Rpc-BlockText-ListSetStyle-Request) - - [Rpc.BlockText.ListSetStyle.Response](#anytype-Rpc-BlockText-ListSetStyle-Response) - - [Rpc.BlockText.ListSetStyle.Response.Error](#anytype-Rpc-BlockText-ListSetStyle-Response-Error) - - [Rpc.BlockText.SetChecked](#anytype-Rpc-BlockText-SetChecked) - - [Rpc.BlockText.SetChecked.Request](#anytype-Rpc-BlockText-SetChecked-Request) - - [Rpc.BlockText.SetChecked.Response](#anytype-Rpc-BlockText-SetChecked-Response) - - [Rpc.BlockText.SetChecked.Response.Error](#anytype-Rpc-BlockText-SetChecked-Response-Error) - - [Rpc.BlockText.SetColor](#anytype-Rpc-BlockText-SetColor) - - [Rpc.BlockText.SetColor.Request](#anytype-Rpc-BlockText-SetColor-Request) - - [Rpc.BlockText.SetColor.Response](#anytype-Rpc-BlockText-SetColor-Response) - - [Rpc.BlockText.SetColor.Response.Error](#anytype-Rpc-BlockText-SetColor-Response-Error) - - [Rpc.BlockText.SetIcon](#anytype-Rpc-BlockText-SetIcon) - - [Rpc.BlockText.SetIcon.Request](#anytype-Rpc-BlockText-SetIcon-Request) - - [Rpc.BlockText.SetIcon.Response](#anytype-Rpc-BlockText-SetIcon-Response) - - [Rpc.BlockText.SetIcon.Response.Error](#anytype-Rpc-BlockText-SetIcon-Response-Error) - - [Rpc.BlockText.SetMarks](#anytype-Rpc-BlockText-SetMarks) - - [Rpc.BlockText.SetMarks.Get](#anytype-Rpc-BlockText-SetMarks-Get) - - [Rpc.BlockText.SetMarks.Get.Request](#anytype-Rpc-BlockText-SetMarks-Get-Request) - - [Rpc.BlockText.SetMarks.Get.Response](#anytype-Rpc-BlockText-SetMarks-Get-Response) - - [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error) - - [Rpc.BlockText.SetStyle](#anytype-Rpc-BlockText-SetStyle) - - [Rpc.BlockText.SetStyle.Request](#anytype-Rpc-BlockText-SetStyle-Request) - - [Rpc.BlockText.SetStyle.Response](#anytype-Rpc-BlockText-SetStyle-Response) - - [Rpc.BlockText.SetStyle.Response.Error](#anytype-Rpc-BlockText-SetStyle-Response-Error) - - [Rpc.BlockText.SetText](#anytype-Rpc-BlockText-SetText) - - [Rpc.BlockText.SetText.Request](#anytype-Rpc-BlockText-SetText-Request) - - [Rpc.BlockText.SetText.Response](#anytype-Rpc-BlockText-SetText-Response) - - [Rpc.BlockText.SetText.Response.Error](#anytype-Rpc-BlockText-SetText-Response-Error) - - [Rpc.BlockVideo](#anytype-Rpc-BlockVideo) - - [Rpc.BlockVideo.SetName](#anytype-Rpc-BlockVideo-SetName) - - [Rpc.BlockVideo.SetName.Request](#anytype-Rpc-BlockVideo-SetName-Request) - - [Rpc.BlockVideo.SetName.Response](#anytype-Rpc-BlockVideo-SetName-Response) - - [Rpc.BlockVideo.SetName.Response.Error](#anytype-Rpc-BlockVideo-SetName-Response-Error) - - [Rpc.BlockVideo.SetWidth](#anytype-Rpc-BlockVideo-SetWidth) - - [Rpc.BlockVideo.SetWidth.Request](#anytype-Rpc-BlockVideo-SetWidth-Request) - - [Rpc.BlockVideo.SetWidth.Response](#anytype-Rpc-BlockVideo-SetWidth-Response) - - [Rpc.BlockVideo.SetWidth.Response.Error](#anytype-Rpc-BlockVideo-SetWidth-Response-Error) - - [Rpc.Debug](#anytype-Rpc-Debug) - - [Rpc.Debug.ExportLocalstore](#anytype-Rpc-Debug-ExportLocalstore) - - [Rpc.Debug.ExportLocalstore.Request](#anytype-Rpc-Debug-ExportLocalstore-Request) - - [Rpc.Debug.ExportLocalstore.Response](#anytype-Rpc-Debug-ExportLocalstore-Response) - - [Rpc.Debug.ExportLocalstore.Response.Error](#anytype-Rpc-Debug-ExportLocalstore-Response-Error) - - [Rpc.Debug.Ping](#anytype-Rpc-Debug-Ping) - - [Rpc.Debug.Ping.Request](#anytype-Rpc-Debug-Ping-Request) - - [Rpc.Debug.Ping.Response](#anytype-Rpc-Debug-Ping-Response) - - [Rpc.Debug.Ping.Response.Error](#anytype-Rpc-Debug-Ping-Response-Error) - - [Rpc.Debug.SpaceSummary](#anytype-Rpc-Debug-SpaceSummary) - - [Rpc.Debug.SpaceSummary.Request](#anytype-Rpc-Debug-SpaceSummary-Request) - - [Rpc.Debug.SpaceSummary.Response](#anytype-Rpc-Debug-SpaceSummary-Response) - - [Rpc.Debug.SpaceSummary.Response.Error](#anytype-Rpc-Debug-SpaceSummary-Response-Error) - - [Rpc.Debug.Tree](#anytype-Rpc-Debug-Tree) - - [Rpc.Debug.Tree.Request](#anytype-Rpc-Debug-Tree-Request) - - [Rpc.Debug.Tree.Response](#anytype-Rpc-Debug-Tree-Response) - - [Rpc.Debug.Tree.Response.Error](#anytype-Rpc-Debug-Tree-Response-Error) - - [Rpc.Debug.TreeHeads](#anytype-Rpc-Debug-TreeHeads) - - [Rpc.Debug.TreeHeads.Request](#anytype-Rpc-Debug-TreeHeads-Request) - - [Rpc.Debug.TreeHeads.Response](#anytype-Rpc-Debug-TreeHeads-Response) - - [Rpc.Debug.TreeHeads.Response.Error](#anytype-Rpc-Debug-TreeHeads-Response-Error) - - [Rpc.Debug.TreeInfo](#anytype-Rpc-Debug-TreeInfo) - - [Rpc.File](#anytype-Rpc-File) - - [Rpc.File.Download](#anytype-Rpc-File-Download) - - [Rpc.File.Download.Request](#anytype-Rpc-File-Download-Request) - - [Rpc.File.Download.Response](#anytype-Rpc-File-Download-Response) - - [Rpc.File.Download.Response.Error](#anytype-Rpc-File-Download-Response-Error) - - [Rpc.File.Drop](#anytype-Rpc-File-Drop) - - [Rpc.File.Drop.Request](#anytype-Rpc-File-Drop-Request) - - [Rpc.File.Drop.Response](#anytype-Rpc-File-Drop-Response) - - [Rpc.File.Drop.Response.Error](#anytype-Rpc-File-Drop-Response-Error) - - [Rpc.File.ListOffload](#anytype-Rpc-File-ListOffload) - - [Rpc.File.ListOffload.Request](#anytype-Rpc-File-ListOffload-Request) - - [Rpc.File.ListOffload.Response](#anytype-Rpc-File-ListOffload-Response) - - [Rpc.File.ListOffload.Response.Error](#anytype-Rpc-File-ListOffload-Response-Error) - - [Rpc.File.Offload](#anytype-Rpc-File-Offload) - - [Rpc.File.Offload.Request](#anytype-Rpc-File-Offload-Request) - - [Rpc.File.Offload.Response](#anytype-Rpc-File-Offload-Response) - - [Rpc.File.Offload.Response.Error](#anytype-Rpc-File-Offload-Response-Error) - - [Rpc.File.SpaceUsage](#anytype-Rpc-File-SpaceUsage) - - [Rpc.File.SpaceUsage.Request](#anytype-Rpc-File-SpaceUsage-Request) - - [Rpc.File.SpaceUsage.Response](#anytype-Rpc-File-SpaceUsage-Response) - - [Rpc.File.SpaceUsage.Response.Error](#anytype-Rpc-File-SpaceUsage-Response-Error) - - [Rpc.File.SpaceUsage.Response.Usage](#anytype-Rpc-File-SpaceUsage-Response-Usage) - - [Rpc.File.Upload](#anytype-Rpc-File-Upload) - - [Rpc.File.Upload.Request](#anytype-Rpc-File-Upload-Request) - - [Rpc.File.Upload.Response](#anytype-Rpc-File-Upload-Response) - - [Rpc.File.Upload.Response.Error](#anytype-Rpc-File-Upload-Response-Error) - - [Rpc.GenericErrorResponse](#anytype-Rpc-GenericErrorResponse) - - [Rpc.GenericErrorResponse.Error](#anytype-Rpc-GenericErrorResponse-Error) - - [Rpc.History](#anytype-Rpc-History) - - [Rpc.History.GetVersions](#anytype-Rpc-History-GetVersions) - - [Rpc.History.GetVersions.Request](#anytype-Rpc-History-GetVersions-Request) - - [Rpc.History.GetVersions.Response](#anytype-Rpc-History-GetVersions-Response) - - [Rpc.History.GetVersions.Response.Error](#anytype-Rpc-History-GetVersions-Response-Error) - - [Rpc.History.SetVersion](#anytype-Rpc-History-SetVersion) - - [Rpc.History.SetVersion.Request](#anytype-Rpc-History-SetVersion-Request) - - [Rpc.History.SetVersion.Response](#anytype-Rpc-History-SetVersion-Response) - - [Rpc.History.SetVersion.Response.Error](#anytype-Rpc-History-SetVersion-Response-Error) - - [Rpc.History.ShowVersion](#anytype-Rpc-History-ShowVersion) - - [Rpc.History.ShowVersion.Request](#anytype-Rpc-History-ShowVersion-Request) - - [Rpc.History.ShowVersion.Response](#anytype-Rpc-History-ShowVersion-Response) - - [Rpc.History.ShowVersion.Response.Error](#anytype-Rpc-History-ShowVersion-Response-Error) - - [Rpc.History.Version](#anytype-Rpc-History-Version) - - [Rpc.LinkPreview](#anytype-Rpc-LinkPreview) - - [Rpc.LinkPreview.Request](#anytype-Rpc-LinkPreview-Request) - - [Rpc.LinkPreview.Response](#anytype-Rpc-LinkPreview-Response) - - [Rpc.LinkPreview.Response.Error](#anytype-Rpc-LinkPreview-Response-Error) - - [Rpc.Log](#anytype-Rpc-Log) - - [Rpc.Log.Send](#anytype-Rpc-Log-Send) - - [Rpc.Log.Send.Request](#anytype-Rpc-Log-Send-Request) - - [Rpc.Log.Send.Response](#anytype-Rpc-Log-Send-Response) - - [Rpc.Log.Send.Response.Error](#anytype-Rpc-Log-Send-Response-Error) - - [Rpc.Metrics](#anytype-Rpc-Metrics) - - [Rpc.Metrics.SetParameters](#anytype-Rpc-Metrics-SetParameters) - - [Rpc.Metrics.SetParameters.Request](#anytype-Rpc-Metrics-SetParameters-Request) - - [Rpc.Metrics.SetParameters.Response](#anytype-Rpc-Metrics-SetParameters-Response) - - [Rpc.Metrics.SetParameters.Response.Error](#anytype-Rpc-Metrics-SetParameters-Response-Error) - - [Rpc.Navigation](#anytype-Rpc-Navigation) - - [Rpc.Navigation.GetObjectInfoWithLinks](#anytype-Rpc-Navigation-GetObjectInfoWithLinks) - - [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Request) - - [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response) - - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error) - - [Rpc.Navigation.ListObjects](#anytype-Rpc-Navigation-ListObjects) - - [Rpc.Navigation.ListObjects.Request](#anytype-Rpc-Navigation-ListObjects-Request) - - [Rpc.Navigation.ListObjects.Response](#anytype-Rpc-Navigation-ListObjects-Response) - - [Rpc.Navigation.ListObjects.Response.Error](#anytype-Rpc-Navigation-ListObjects-Response-Error) - - [Rpc.Object](#anytype-Rpc-Object) - - [Rpc.Object.ApplyTemplate](#anytype-Rpc-Object-ApplyTemplate) - - [Rpc.Object.ApplyTemplate.Request](#anytype-Rpc-Object-ApplyTemplate-Request) - - [Rpc.Object.ApplyTemplate.Response](#anytype-Rpc-Object-ApplyTemplate-Response) - - [Rpc.Object.ApplyTemplate.Response.Error](#anytype-Rpc-Object-ApplyTemplate-Response-Error) - - [Rpc.Object.BookmarkFetch](#anytype-Rpc-Object-BookmarkFetch) - - [Rpc.Object.BookmarkFetch.Request](#anytype-Rpc-Object-BookmarkFetch-Request) - - [Rpc.Object.BookmarkFetch.Response](#anytype-Rpc-Object-BookmarkFetch-Response) - - [Rpc.Object.BookmarkFetch.Response.Error](#anytype-Rpc-Object-BookmarkFetch-Response-Error) - - [Rpc.Object.Close](#anytype-Rpc-Object-Close) - - [Rpc.Object.Close.Request](#anytype-Rpc-Object-Close-Request) - - [Rpc.Object.Close.Response](#anytype-Rpc-Object-Close-Response) - - [Rpc.Object.Close.Response.Error](#anytype-Rpc-Object-Close-Response-Error) - - [Rpc.Object.Create](#anytype-Rpc-Object-Create) - - [Rpc.Object.Create.Request](#anytype-Rpc-Object-Create-Request) - - [Rpc.Object.Create.Response](#anytype-Rpc-Object-Create-Response) - - [Rpc.Object.Create.Response.Error](#anytype-Rpc-Object-Create-Response-Error) - - [Rpc.Object.CreateBookmark](#anytype-Rpc-Object-CreateBookmark) - - [Rpc.Object.CreateBookmark.Request](#anytype-Rpc-Object-CreateBookmark-Request) - - [Rpc.Object.CreateBookmark.Response](#anytype-Rpc-Object-CreateBookmark-Response) - - [Rpc.Object.CreateBookmark.Response.Error](#anytype-Rpc-Object-CreateBookmark-Response-Error) - - [Rpc.Object.CreateObjectType](#anytype-Rpc-Object-CreateObjectType) - - [Rpc.Object.CreateObjectType.Request](#anytype-Rpc-Object-CreateObjectType-Request) - - [Rpc.Object.CreateObjectType.Response](#anytype-Rpc-Object-CreateObjectType-Response) - - [Rpc.Object.CreateObjectType.Response.Error](#anytype-Rpc-Object-CreateObjectType-Response-Error) - - [Rpc.Object.CreateRelation](#anytype-Rpc-Object-CreateRelation) - - [Rpc.Object.CreateRelation.Request](#anytype-Rpc-Object-CreateRelation-Request) - - [Rpc.Object.CreateRelation.Response](#anytype-Rpc-Object-CreateRelation-Response) - - [Rpc.Object.CreateRelation.Response.Error](#anytype-Rpc-Object-CreateRelation-Response-Error) - - [Rpc.Object.CreateRelationOption](#anytype-Rpc-Object-CreateRelationOption) - - [Rpc.Object.CreateRelationOption.Request](#anytype-Rpc-Object-CreateRelationOption-Request) - - [Rpc.Object.CreateRelationOption.Response](#anytype-Rpc-Object-CreateRelationOption-Response) - - [Rpc.Object.CreateRelationOption.Response.Error](#anytype-Rpc-Object-CreateRelationOption-Response-Error) - - [Rpc.Object.CreateSet](#anytype-Rpc-Object-CreateSet) - - [Rpc.Object.CreateSet.Request](#anytype-Rpc-Object-CreateSet-Request) - - [Rpc.Object.CreateSet.Response](#anytype-Rpc-Object-CreateSet-Response) - - [Rpc.Object.CreateSet.Response.Error](#anytype-Rpc-Object-CreateSet-Response-Error) - - [Rpc.Object.Duplicate](#anytype-Rpc-Object-Duplicate) - - [Rpc.Object.Duplicate.Request](#anytype-Rpc-Object-Duplicate-Request) - - [Rpc.Object.Duplicate.Response](#anytype-Rpc-Object-Duplicate-Response) - - [Rpc.Object.Duplicate.Response.Error](#anytype-Rpc-Object-Duplicate-Response-Error) - - [Rpc.Object.Graph](#anytype-Rpc-Object-Graph) - - [Rpc.Object.Graph.Edge](#anytype-Rpc-Object-Graph-Edge) - - [Rpc.Object.Graph.Request](#anytype-Rpc-Object-Graph-Request) - - [Rpc.Object.Graph.Response](#anytype-Rpc-Object-Graph-Response) - - [Rpc.Object.Graph.Response.Error](#anytype-Rpc-Object-Graph-Response-Error) - - [Rpc.Object.GroupsSubscribe](#anytype-Rpc-Object-GroupsSubscribe) - - [Rpc.Object.GroupsSubscribe.Request](#anytype-Rpc-Object-GroupsSubscribe-Request) - - [Rpc.Object.GroupsSubscribe.Response](#anytype-Rpc-Object-GroupsSubscribe-Response) - - [Rpc.Object.GroupsSubscribe.Response.Error](#anytype-Rpc-Object-GroupsSubscribe-Response-Error) - - [Rpc.Object.Import](#anytype-Rpc-Object-Import) - - [Rpc.Object.Import.Notion](#anytype-Rpc-Object-Import-Notion) - - [Rpc.Object.Import.Notion.ValidateToken](#anytype-Rpc-Object-Import-Notion-ValidateToken) - - [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype-Rpc-Object-Import-Notion-ValidateToken-Request) - - [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response) - - [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error) - - [Rpc.Object.Import.Request](#anytype-Rpc-Object-Import-Request) - - [Rpc.Object.Import.Request.BookmarksParams](#anytype-Rpc-Object-Import-Request-BookmarksParams) - - [Rpc.Object.Import.Request.CsvParams](#anytype-Rpc-Object-Import-Request-CsvParams) - - [Rpc.Object.Import.Request.HtmlParams](#anytype-Rpc-Object-Import-Request-HtmlParams) - - [Rpc.Object.Import.Request.MarkdownParams](#anytype-Rpc-Object-Import-Request-MarkdownParams) - - [Rpc.Object.Import.Request.NotionParams](#anytype-Rpc-Object-Import-Request-NotionParams) - - [Rpc.Object.Import.Request.PbParams](#anytype-Rpc-Object-Import-Request-PbParams) - - [Rpc.Object.Import.Request.Snapshot](#anytype-Rpc-Object-Import-Request-Snapshot) - - [Rpc.Object.Import.Request.TxtParams](#anytype-Rpc-Object-Import-Request-TxtParams) - - [Rpc.Object.Import.Response](#anytype-Rpc-Object-Import-Response) - - [Rpc.Object.Import.Response.Error](#anytype-Rpc-Object-Import-Response-Error) - - [Rpc.Object.ImportList](#anytype-Rpc-Object-ImportList) - - [Rpc.Object.ImportList.ImportResponse](#anytype-Rpc-Object-ImportList-ImportResponse) - - [Rpc.Object.ImportList.Request](#anytype-Rpc-Object-ImportList-Request) - - [Rpc.Object.ImportList.Response](#anytype-Rpc-Object-ImportList-Response) - - [Rpc.Object.ImportList.Response.Error](#anytype-Rpc-Object-ImportList-Response-Error) - - [Rpc.Object.ListDelete](#anytype-Rpc-Object-ListDelete) - - [Rpc.Object.ListDelete.Request](#anytype-Rpc-Object-ListDelete-Request) - - [Rpc.Object.ListDelete.Response](#anytype-Rpc-Object-ListDelete-Response) - - [Rpc.Object.ListDelete.Response.Error](#anytype-Rpc-Object-ListDelete-Response-Error) - - [Rpc.Object.ListDuplicate](#anytype-Rpc-Object-ListDuplicate) - - [Rpc.Object.ListDuplicate.Request](#anytype-Rpc-Object-ListDuplicate-Request) - - [Rpc.Object.ListDuplicate.Response](#anytype-Rpc-Object-ListDuplicate-Response) - - [Rpc.Object.ListDuplicate.Response.Error](#anytype-Rpc-Object-ListDuplicate-Response-Error) - - [Rpc.Object.ListExport](#anytype-Rpc-Object-ListExport) - - [Rpc.Object.ListExport.Request](#anytype-Rpc-Object-ListExport-Request) - - [Rpc.Object.ListExport.Response](#anytype-Rpc-Object-ListExport-Response) - - [Rpc.Object.ListExport.Response.Error](#anytype-Rpc-Object-ListExport-Response-Error) - - [Rpc.Object.ListSetIsArchived](#anytype-Rpc-Object-ListSetIsArchived) - - [Rpc.Object.ListSetIsArchived.Request](#anytype-Rpc-Object-ListSetIsArchived-Request) - - [Rpc.Object.ListSetIsArchived.Response](#anytype-Rpc-Object-ListSetIsArchived-Response) - - [Rpc.Object.ListSetIsArchived.Response.Error](#anytype-Rpc-Object-ListSetIsArchived-Response-Error) - - [Rpc.Object.ListSetIsFavorite](#anytype-Rpc-Object-ListSetIsFavorite) - - [Rpc.Object.ListSetIsFavorite.Request](#anytype-Rpc-Object-ListSetIsFavorite-Request) - - [Rpc.Object.ListSetIsFavorite.Response](#anytype-Rpc-Object-ListSetIsFavorite-Response) - - [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error) - - [Rpc.Object.Open](#anytype-Rpc-Object-Open) - - [Rpc.Object.Open.Request](#anytype-Rpc-Object-Open-Request) - - [Rpc.Object.Open.Response](#anytype-Rpc-Object-Open-Response) - - [Rpc.Object.Open.Response.Error](#anytype-Rpc-Object-Open-Response-Error) - - [Rpc.Object.OpenBreadcrumbs](#anytype-Rpc-Object-OpenBreadcrumbs) - - [Rpc.Object.OpenBreadcrumbs.Request](#anytype-Rpc-Object-OpenBreadcrumbs-Request) - - [Rpc.Object.OpenBreadcrumbs.Response](#anytype-Rpc-Object-OpenBreadcrumbs-Response) - - [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error) - - [Rpc.Object.Redo](#anytype-Rpc-Object-Redo) - - [Rpc.Object.Redo.Request](#anytype-Rpc-Object-Redo-Request) - - [Rpc.Object.Redo.Response](#anytype-Rpc-Object-Redo-Response) - - [Rpc.Object.Redo.Response.Error](#anytype-Rpc-Object-Redo-Response-Error) - - [Rpc.Object.Search](#anytype-Rpc-Object-Search) - - [Rpc.Object.Search.Request](#anytype-Rpc-Object-Search-Request) - - [Rpc.Object.Search.Response](#anytype-Rpc-Object-Search-Response) - - [Rpc.Object.Search.Response.Error](#anytype-Rpc-Object-Search-Response-Error) - - [Rpc.Object.SearchSubscribe](#anytype-Rpc-Object-SearchSubscribe) - - [Rpc.Object.SearchSubscribe.Request](#anytype-Rpc-Object-SearchSubscribe-Request) - - [Rpc.Object.SearchSubscribe.Response](#anytype-Rpc-Object-SearchSubscribe-Response) - - [Rpc.Object.SearchSubscribe.Response.Error](#anytype-Rpc-Object-SearchSubscribe-Response-Error) - - [Rpc.Object.SearchUnsubscribe](#anytype-Rpc-Object-SearchUnsubscribe) - - [Rpc.Object.SearchUnsubscribe.Request](#anytype-Rpc-Object-SearchUnsubscribe-Request) - - [Rpc.Object.SearchUnsubscribe.Response](#anytype-Rpc-Object-SearchUnsubscribe-Response) - - [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error) - - [Rpc.Object.SetBreadcrumbs](#anytype-Rpc-Object-SetBreadcrumbs) - - [Rpc.Object.SetBreadcrumbs.Request](#anytype-Rpc-Object-SetBreadcrumbs-Request) - - [Rpc.Object.SetBreadcrumbs.Response](#anytype-Rpc-Object-SetBreadcrumbs-Response) - - [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error) - - [Rpc.Object.SetDetails](#anytype-Rpc-Object-SetDetails) - - [Rpc.Object.SetDetails.Detail](#anytype-Rpc-Object-SetDetails-Detail) - - [Rpc.Object.SetDetails.Request](#anytype-Rpc-Object-SetDetails-Request) - - [Rpc.Object.SetDetails.Response](#anytype-Rpc-Object-SetDetails-Response) - - [Rpc.Object.SetDetails.Response.Error](#anytype-Rpc-Object-SetDetails-Response-Error) - - [Rpc.Object.SetInternalFlags](#anytype-Rpc-Object-SetInternalFlags) - - [Rpc.Object.SetInternalFlags.Request](#anytype-Rpc-Object-SetInternalFlags-Request) - - [Rpc.Object.SetInternalFlags.Response](#anytype-Rpc-Object-SetInternalFlags-Response) - - [Rpc.Object.SetInternalFlags.Response.Error](#anytype-Rpc-Object-SetInternalFlags-Response-Error) - - [Rpc.Object.SetIsArchived](#anytype-Rpc-Object-SetIsArchived) - - [Rpc.Object.SetIsArchived.Request](#anytype-Rpc-Object-SetIsArchived-Request) - - [Rpc.Object.SetIsArchived.Response](#anytype-Rpc-Object-SetIsArchived-Response) - - [Rpc.Object.SetIsArchived.Response.Error](#anytype-Rpc-Object-SetIsArchived-Response-Error) - - [Rpc.Object.SetIsFavorite](#anytype-Rpc-Object-SetIsFavorite) - - [Rpc.Object.SetIsFavorite.Request](#anytype-Rpc-Object-SetIsFavorite-Request) - - [Rpc.Object.SetIsFavorite.Response](#anytype-Rpc-Object-SetIsFavorite-Response) - - [Rpc.Object.SetIsFavorite.Response.Error](#anytype-Rpc-Object-SetIsFavorite-Response-Error) - - [Rpc.Object.SetLayout](#anytype-Rpc-Object-SetLayout) - - [Rpc.Object.SetLayout.Request](#anytype-Rpc-Object-SetLayout-Request) - - [Rpc.Object.SetLayout.Response](#anytype-Rpc-Object-SetLayout-Response) - - [Rpc.Object.SetLayout.Response.Error](#anytype-Rpc-Object-SetLayout-Response-Error) - - [Rpc.Object.SetObjectType](#anytype-Rpc-Object-SetObjectType) - - [Rpc.Object.SetObjectType.Request](#anytype-Rpc-Object-SetObjectType-Request) - - [Rpc.Object.SetObjectType.Response](#anytype-Rpc-Object-SetObjectType-Response) - - [Rpc.Object.SetObjectType.Response.Error](#anytype-Rpc-Object-SetObjectType-Response-Error) - - [Rpc.Object.SetSource](#anytype-Rpc-Object-SetSource) - - [Rpc.Object.SetSource.Request](#anytype-Rpc-Object-SetSource-Request) - - [Rpc.Object.SetSource.Response](#anytype-Rpc-Object-SetSource-Response) - - [Rpc.Object.SetSource.Response.Error](#anytype-Rpc-Object-SetSource-Response-Error) - - [Rpc.Object.ShareByLink](#anytype-Rpc-Object-ShareByLink) - - [Rpc.Object.ShareByLink.Request](#anytype-Rpc-Object-ShareByLink-Request) - - [Rpc.Object.ShareByLink.Response](#anytype-Rpc-Object-ShareByLink-Response) - - [Rpc.Object.ShareByLink.Response.Error](#anytype-Rpc-Object-ShareByLink-Response-Error) - - [Rpc.Object.Show](#anytype-Rpc-Object-Show) - - [Rpc.Object.Show.Request](#anytype-Rpc-Object-Show-Request) - - [Rpc.Object.Show.Response](#anytype-Rpc-Object-Show-Response) - - [Rpc.Object.Show.Response.Error](#anytype-Rpc-Object-Show-Response-Error) - - [Rpc.Object.SubscribeIds](#anytype-Rpc-Object-SubscribeIds) - - [Rpc.Object.SubscribeIds.Request](#anytype-Rpc-Object-SubscribeIds-Request) - - [Rpc.Object.SubscribeIds.Response](#anytype-Rpc-Object-SubscribeIds-Response) - - [Rpc.Object.SubscribeIds.Response.Error](#anytype-Rpc-Object-SubscribeIds-Response-Error) - - [Rpc.Object.ToBookmark](#anytype-Rpc-Object-ToBookmark) - - [Rpc.Object.ToBookmark.Request](#anytype-Rpc-Object-ToBookmark-Request) - - [Rpc.Object.ToBookmark.Response](#anytype-Rpc-Object-ToBookmark-Response) - - [Rpc.Object.ToBookmark.Response.Error](#anytype-Rpc-Object-ToBookmark-Response-Error) - - [Rpc.Object.ToCollection](#anytype-Rpc-Object-ToCollection) - - [Rpc.Object.ToCollection.Request](#anytype-Rpc-Object-ToCollection-Request) - - [Rpc.Object.ToCollection.Response](#anytype-Rpc-Object-ToCollection-Response) - - [Rpc.Object.ToCollection.Response.Error](#anytype-Rpc-Object-ToCollection-Response-Error) - - [Rpc.Object.ToSet](#anytype-Rpc-Object-ToSet) - - [Rpc.Object.ToSet.Request](#anytype-Rpc-Object-ToSet-Request) - - [Rpc.Object.ToSet.Response](#anytype-Rpc-Object-ToSet-Response) - - [Rpc.Object.ToSet.Response.Error](#anytype-Rpc-Object-ToSet-Response-Error) - - [Rpc.Object.Undo](#anytype-Rpc-Object-Undo) - - [Rpc.Object.Undo.Request](#anytype-Rpc-Object-Undo-Request) - - [Rpc.Object.Undo.Response](#anytype-Rpc-Object-Undo-Response) - - [Rpc.Object.Undo.Response.Error](#anytype-Rpc-Object-Undo-Response-Error) - - [Rpc.Object.UndoRedoCounter](#anytype-Rpc-Object-UndoRedoCounter) - - [Rpc.Object.WorkspaceSetDashboard](#anytype-Rpc-Object-WorkspaceSetDashboard) - - [Rpc.Object.WorkspaceSetDashboard.Request](#anytype-Rpc-Object-WorkspaceSetDashboard-Request) - - [Rpc.Object.WorkspaceSetDashboard.Response](#anytype-Rpc-Object-WorkspaceSetDashboard-Response) - - [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error) - - [Rpc.ObjectCollection](#anytype-Rpc-ObjectCollection) - - [Rpc.ObjectCollection.Add](#anytype-Rpc-ObjectCollection-Add) - - [Rpc.ObjectCollection.Add.Request](#anytype-Rpc-ObjectCollection-Add-Request) - - [Rpc.ObjectCollection.Add.Response](#anytype-Rpc-ObjectCollection-Add-Response) - - [Rpc.ObjectCollection.Add.Response.Error](#anytype-Rpc-ObjectCollection-Add-Response-Error) - - [Rpc.ObjectCollection.Remove](#anytype-Rpc-ObjectCollection-Remove) - - [Rpc.ObjectCollection.Remove.Request](#anytype-Rpc-ObjectCollection-Remove-Request) - - [Rpc.ObjectCollection.Remove.Response](#anytype-Rpc-ObjectCollection-Remove-Response) - - [Rpc.ObjectCollection.Remove.Response.Error](#anytype-Rpc-ObjectCollection-Remove-Response-Error) - - [Rpc.ObjectCollection.Sort](#anytype-Rpc-ObjectCollection-Sort) - - [Rpc.ObjectCollection.Sort.Request](#anytype-Rpc-ObjectCollection-Sort-Request) - - [Rpc.ObjectCollection.Sort.Response](#anytype-Rpc-ObjectCollection-Sort-Response) - - [Rpc.ObjectCollection.Sort.Response.Error](#anytype-Rpc-ObjectCollection-Sort-Response-Error) - - [Rpc.ObjectRelation](#anytype-Rpc-ObjectRelation) - - [Rpc.ObjectRelation.Add](#anytype-Rpc-ObjectRelation-Add) - - [Rpc.ObjectRelation.Add.Request](#anytype-Rpc-ObjectRelation-Add-Request) - - [Rpc.ObjectRelation.Add.Response](#anytype-Rpc-ObjectRelation-Add-Response) - - [Rpc.ObjectRelation.Add.Response.Error](#anytype-Rpc-ObjectRelation-Add-Response-Error) - - [Rpc.ObjectRelation.AddFeatured](#anytype-Rpc-ObjectRelation-AddFeatured) - - [Rpc.ObjectRelation.AddFeatured.Request](#anytype-Rpc-ObjectRelation-AddFeatured-Request) - - [Rpc.ObjectRelation.AddFeatured.Response](#anytype-Rpc-ObjectRelation-AddFeatured-Response) - - [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error) - - [Rpc.ObjectRelation.Delete](#anytype-Rpc-ObjectRelation-Delete) - - [Rpc.ObjectRelation.Delete.Request](#anytype-Rpc-ObjectRelation-Delete-Request) - - [Rpc.ObjectRelation.Delete.Response](#anytype-Rpc-ObjectRelation-Delete-Response) - - [Rpc.ObjectRelation.Delete.Response.Error](#anytype-Rpc-ObjectRelation-Delete-Response-Error) - - [Rpc.ObjectRelation.ListAvailable](#anytype-Rpc-ObjectRelation-ListAvailable) - - [Rpc.ObjectRelation.ListAvailable.Request](#anytype-Rpc-ObjectRelation-ListAvailable-Request) - - [Rpc.ObjectRelation.ListAvailable.Response](#anytype-Rpc-ObjectRelation-ListAvailable-Response) - - [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error) - - [Rpc.ObjectRelation.RemoveFeatured](#anytype-Rpc-ObjectRelation-RemoveFeatured) - - [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype-Rpc-ObjectRelation-RemoveFeatured-Request) - - [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response) - - [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error) - - [Rpc.ObjectType](#anytype-Rpc-ObjectType) - - [Rpc.ObjectType.Relation](#anytype-Rpc-ObjectType-Relation) - - [Rpc.ObjectType.Relation.Add](#anytype-Rpc-ObjectType-Relation-Add) - - [Rpc.ObjectType.Relation.Add.Request](#anytype-Rpc-ObjectType-Relation-Add-Request) - - [Rpc.ObjectType.Relation.Add.Response](#anytype-Rpc-ObjectType-Relation-Add-Response) - - [Rpc.ObjectType.Relation.Add.Response.Error](#anytype-Rpc-ObjectType-Relation-Add-Response-Error) - - [Rpc.ObjectType.Relation.List](#anytype-Rpc-ObjectType-Relation-List) - - [Rpc.ObjectType.Relation.List.Request](#anytype-Rpc-ObjectType-Relation-List-Request) - - [Rpc.ObjectType.Relation.List.Response](#anytype-Rpc-ObjectType-Relation-List-Response) - - [Rpc.ObjectType.Relation.List.Response.Error](#anytype-Rpc-ObjectType-Relation-List-Response-Error) - - [Rpc.ObjectType.Relation.Remove](#anytype-Rpc-ObjectType-Relation-Remove) - - [Rpc.ObjectType.Relation.Remove.Request](#anytype-Rpc-ObjectType-Relation-Remove-Request) - - [Rpc.ObjectType.Relation.Remove.Response](#anytype-Rpc-ObjectType-Relation-Remove-Response) - - [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error) - - [Rpc.Process](#anytype-Rpc-Process) - - [Rpc.Process.Cancel](#anytype-Rpc-Process-Cancel) - - [Rpc.Process.Cancel.Request](#anytype-Rpc-Process-Cancel-Request) - - [Rpc.Process.Cancel.Response](#anytype-Rpc-Process-Cancel-Response) - - [Rpc.Process.Cancel.Response.Error](#anytype-Rpc-Process-Cancel-Response-Error) - - [Rpc.Relation](#anytype-Rpc-Relation) - - [Rpc.Relation.ListRemoveOption](#anytype-Rpc-Relation-ListRemoveOption) - - [Rpc.Relation.ListRemoveOption.Request](#anytype-Rpc-Relation-ListRemoveOption-Request) - - [Rpc.Relation.ListRemoveOption.Response](#anytype-Rpc-Relation-ListRemoveOption-Response) - - [Rpc.Relation.ListRemoveOption.Response.Error](#anytype-Rpc-Relation-ListRemoveOption-Response-Error) - - [Rpc.Relation.Options](#anytype-Rpc-Relation-Options) - - [Rpc.Relation.Options.Request](#anytype-Rpc-Relation-Options-Request) - - [Rpc.Relation.Options.Response](#anytype-Rpc-Relation-Options-Response) - - [Rpc.Relation.Options.Response.Error](#anytype-Rpc-Relation-Options-Response-Error) - - [Rpc.Template](#anytype-Rpc-Template) - - [Rpc.Template.Clone](#anytype-Rpc-Template-Clone) - - [Rpc.Template.Clone.Request](#anytype-Rpc-Template-Clone-Request) - - [Rpc.Template.Clone.Response](#anytype-Rpc-Template-Clone-Response) - - [Rpc.Template.Clone.Response.Error](#anytype-Rpc-Template-Clone-Response-Error) - - [Rpc.Template.CreateFromObject](#anytype-Rpc-Template-CreateFromObject) - - [Rpc.Template.CreateFromObject.Request](#anytype-Rpc-Template-CreateFromObject-Request) - - [Rpc.Template.CreateFromObject.Response](#anytype-Rpc-Template-CreateFromObject-Response) - - [Rpc.Template.CreateFromObject.Response.Error](#anytype-Rpc-Template-CreateFromObject-Response-Error) - - [Rpc.Template.CreateFromObjectType](#anytype-Rpc-Template-CreateFromObjectType) - - [Rpc.Template.CreateFromObjectType.Request](#anytype-Rpc-Template-CreateFromObjectType-Request) - - [Rpc.Template.CreateFromObjectType.Response](#anytype-Rpc-Template-CreateFromObjectType-Response) - - [Rpc.Template.CreateFromObjectType.Response.Error](#anytype-Rpc-Template-CreateFromObjectType-Response-Error) - - [Rpc.Template.ExportAll](#anytype-Rpc-Template-ExportAll) - - [Rpc.Template.ExportAll.Request](#anytype-Rpc-Template-ExportAll-Request) - - [Rpc.Template.ExportAll.Response](#anytype-Rpc-Template-ExportAll-Response) - - [Rpc.Template.ExportAll.Response.Error](#anytype-Rpc-Template-ExportAll-Response-Error) - - [Rpc.Unsplash](#anytype-Rpc-Unsplash) - - [Rpc.Unsplash.Download](#anytype-Rpc-Unsplash-Download) - - [Rpc.Unsplash.Download.Request](#anytype-Rpc-Unsplash-Download-Request) - - [Rpc.Unsplash.Download.Response](#anytype-Rpc-Unsplash-Download-Response) - - [Rpc.Unsplash.Download.Response.Error](#anytype-Rpc-Unsplash-Download-Response-Error) - - [Rpc.Unsplash.Search](#anytype-Rpc-Unsplash-Search) - - [Rpc.Unsplash.Search.Request](#anytype-Rpc-Unsplash-Search-Request) - - [Rpc.Unsplash.Search.Response](#anytype-Rpc-Unsplash-Search-Response) - - [Rpc.Unsplash.Search.Response.Error](#anytype-Rpc-Unsplash-Search-Response-Error) - - [Rpc.Unsplash.Search.Response.Picture](#anytype-Rpc-Unsplash-Search-Response-Picture) - - [Rpc.UserData](#anytype-Rpc-UserData) - - [Rpc.UserData.Dump](#anytype-Rpc-UserData-Dump) - - [Rpc.UserData.Dump.Request](#anytype-Rpc-UserData-Dump-Request) - - [Rpc.UserData.Dump.Response](#anytype-Rpc-UserData-Dump-Response) - - [Rpc.UserData.Dump.Response.Error](#anytype-Rpc-UserData-Dump-Response-Error) - - [Rpc.Wallet](#anytype-Rpc-Wallet) - - [Rpc.Wallet.CloseSession](#anytype-Rpc-Wallet-CloseSession) - - [Rpc.Wallet.CloseSession.Request](#anytype-Rpc-Wallet-CloseSession-Request) - - [Rpc.Wallet.CloseSession.Response](#anytype-Rpc-Wallet-CloseSession-Response) - - [Rpc.Wallet.CloseSession.Response.Error](#anytype-Rpc-Wallet-CloseSession-Response-Error) - - [Rpc.Wallet.Convert](#anytype-Rpc-Wallet-Convert) - - [Rpc.Wallet.Convert.Request](#anytype-Rpc-Wallet-Convert-Request) - - [Rpc.Wallet.Convert.Response](#anytype-Rpc-Wallet-Convert-Response) - - [Rpc.Wallet.Convert.Response.Error](#anytype-Rpc-Wallet-Convert-Response-Error) - - [Rpc.Wallet.Create](#anytype-Rpc-Wallet-Create) - - [Rpc.Wallet.Create.Request](#anytype-Rpc-Wallet-Create-Request) - - [Rpc.Wallet.Create.Response](#anytype-Rpc-Wallet-Create-Response) - - [Rpc.Wallet.Create.Response.Error](#anytype-Rpc-Wallet-Create-Response-Error) - - [Rpc.Wallet.CreateSession](#anytype-Rpc-Wallet-CreateSession) - - [Rpc.Wallet.CreateSession.Request](#anytype-Rpc-Wallet-CreateSession-Request) - - [Rpc.Wallet.CreateSession.Response](#anytype-Rpc-Wallet-CreateSession-Response) - - [Rpc.Wallet.CreateSession.Response.Error](#anytype-Rpc-Wallet-CreateSession-Response-Error) - - [Rpc.Wallet.Recover](#anytype-Rpc-Wallet-Recover) - - [Rpc.Wallet.Recover.Request](#anytype-Rpc-Wallet-Recover-Request) - - [Rpc.Wallet.Recover.Response](#anytype-Rpc-Wallet-Recover-Response) - - [Rpc.Wallet.Recover.Response.Error](#anytype-Rpc-Wallet-Recover-Response-Error) - - [Rpc.Workspace](#anytype-Rpc-Workspace) - - [Rpc.Workspace.Create](#anytype-Rpc-Workspace-Create) - - [Rpc.Workspace.Create.Request](#anytype-Rpc-Workspace-Create-Request) - - [Rpc.Workspace.Create.Response](#anytype-Rpc-Workspace-Create-Response) - - [Rpc.Workspace.Create.Response.Error](#anytype-Rpc-Workspace-Create-Response-Error) - - [Rpc.Workspace.Export](#anytype-Rpc-Workspace-Export) - - [Rpc.Workspace.Export.Request](#anytype-Rpc-Workspace-Export-Request) - - [Rpc.Workspace.Export.Response](#anytype-Rpc-Workspace-Export-Response) - - [Rpc.Workspace.Export.Response.Error](#anytype-Rpc-Workspace-Export-Response-Error) - - [Rpc.Workspace.GetAll](#anytype-Rpc-Workspace-GetAll) - - [Rpc.Workspace.GetAll.Request](#anytype-Rpc-Workspace-GetAll-Request) - - [Rpc.Workspace.GetAll.Response](#anytype-Rpc-Workspace-GetAll-Response) - - [Rpc.Workspace.GetAll.Response.Error](#anytype-Rpc-Workspace-GetAll-Response-Error) - - [Rpc.Workspace.GetCurrent](#anytype-Rpc-Workspace-GetCurrent) - - [Rpc.Workspace.GetCurrent.Request](#anytype-Rpc-Workspace-GetCurrent-Request) - - [Rpc.Workspace.GetCurrent.Response](#anytype-Rpc-Workspace-GetCurrent-Response) - - [Rpc.Workspace.GetCurrent.Response.Error](#anytype-Rpc-Workspace-GetCurrent-Response-Error) - - [Rpc.Workspace.Object](#anytype-Rpc-Workspace-Object) - - [Rpc.Workspace.Object.Add](#anytype-Rpc-Workspace-Object-Add) - - [Rpc.Workspace.Object.Add.Request](#anytype-Rpc-Workspace-Object-Add-Request) - - [Rpc.Workspace.Object.Add.Response](#anytype-Rpc-Workspace-Object-Add-Response) - - [Rpc.Workspace.Object.Add.Response.Error](#anytype-Rpc-Workspace-Object-Add-Response-Error) - - [Rpc.Workspace.Object.ListAdd](#anytype-Rpc-Workspace-Object-ListAdd) - - [Rpc.Workspace.Object.ListAdd.Request](#anytype-Rpc-Workspace-Object-ListAdd-Request) - - [Rpc.Workspace.Object.ListAdd.Response](#anytype-Rpc-Workspace-Object-ListAdd-Response) - - [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error) - - [Rpc.Workspace.Object.ListRemove](#anytype-Rpc-Workspace-Object-ListRemove) - - [Rpc.Workspace.Object.ListRemove.Request](#anytype-Rpc-Workspace-Object-ListRemove-Request) - - [Rpc.Workspace.Object.ListRemove.Response](#anytype-Rpc-Workspace-Object-ListRemove-Response) - - [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error) - - [Rpc.Workspace.Select](#anytype-Rpc-Workspace-Select) - - [Rpc.Workspace.Select.Request](#anytype-Rpc-Workspace-Select-Request) - - [Rpc.Workspace.Select.Response](#anytype-Rpc-Workspace-Select-Response) - - [Rpc.Workspace.Select.Response.Error](#anytype-Rpc-Workspace-Select-Response-Error) - - [Rpc.Workspace.SetIsHighlighted](#anytype-Rpc-Workspace-SetIsHighlighted) - - [Rpc.Workspace.SetIsHighlighted.Request](#anytype-Rpc-Workspace-SetIsHighlighted-Request) - - [Rpc.Workspace.SetIsHighlighted.Response](#anytype-Rpc-Workspace-SetIsHighlighted-Response) - - [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error) - - [StreamRequest](#anytype-StreamRequest) +- [pb/protos/commands.proto](#pb/protos/commands.proto) + - [Empty](#anytype.Empty) + - [Rpc](#anytype.Rpc) + - [Rpc.Account](#anytype.Rpc.Account) + - [Rpc.Account.Config](#anytype.Rpc.Account.Config) + - [Rpc.Account.ConfigUpdate](#anytype.Rpc.Account.ConfigUpdate) + - [Rpc.Account.ConfigUpdate.Request](#anytype.Rpc.Account.ConfigUpdate.Request) + - [Rpc.Account.ConfigUpdate.Response](#anytype.Rpc.Account.ConfigUpdate.Response) + - [Rpc.Account.ConfigUpdate.Response.Error](#anytype.Rpc.Account.ConfigUpdate.Response.Error) + - [Rpc.Account.Create](#anytype.Rpc.Account.Create) + - [Rpc.Account.Create.Request](#anytype.Rpc.Account.Create.Request) + - [Rpc.Account.Create.Response](#anytype.Rpc.Account.Create.Response) + - [Rpc.Account.Create.Response.Error](#anytype.Rpc.Account.Create.Response.Error) + - [Rpc.Account.Delete](#anytype.Rpc.Account.Delete) + - [Rpc.Account.Delete.Request](#anytype.Rpc.Account.Delete.Request) + - [Rpc.Account.Delete.Response](#anytype.Rpc.Account.Delete.Response) + - [Rpc.Account.Delete.Response.Error](#anytype.Rpc.Account.Delete.Response.Error) + - [Rpc.Account.GetConfig](#anytype.Rpc.Account.GetConfig) + - [Rpc.Account.GetConfig.Get](#anytype.Rpc.Account.GetConfig.Get) + - [Rpc.Account.GetConfig.Get.Request](#anytype.Rpc.Account.GetConfig.Get.Request) + - [Rpc.Account.Move](#anytype.Rpc.Account.Move) + - [Rpc.Account.Move.Request](#anytype.Rpc.Account.Move.Request) + - [Rpc.Account.Move.Response](#anytype.Rpc.Account.Move.Response) + - [Rpc.Account.Move.Response.Error](#anytype.Rpc.Account.Move.Response.Error) + - [Rpc.Account.Recover](#anytype.Rpc.Account.Recover) + - [Rpc.Account.Recover.Request](#anytype.Rpc.Account.Recover.Request) + - [Rpc.Account.Recover.Response](#anytype.Rpc.Account.Recover.Response) + - [Rpc.Account.Recover.Response.Error](#anytype.Rpc.Account.Recover.Response.Error) + - [Rpc.Account.RecoverFromLegacyExport](#anytype.Rpc.Account.RecoverFromLegacyExport) + - [Rpc.Account.RecoverFromLegacyExport.Request](#anytype.Rpc.Account.RecoverFromLegacyExport.Request) + - [Rpc.Account.RecoverFromLegacyExport.Response](#anytype.Rpc.Account.RecoverFromLegacyExport.Response) + - [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error) + - [Rpc.Account.Select](#anytype.Rpc.Account.Select) + - [Rpc.Account.Select.Request](#anytype.Rpc.Account.Select.Request) + - [Rpc.Account.Select.Response](#anytype.Rpc.Account.Select.Response) + - [Rpc.Account.Select.Response.Error](#anytype.Rpc.Account.Select.Response.Error) + - [Rpc.Account.Stop](#anytype.Rpc.Account.Stop) + - [Rpc.Account.Stop.Request](#anytype.Rpc.Account.Stop.Request) + - [Rpc.Account.Stop.Response](#anytype.Rpc.Account.Stop.Response) + - [Rpc.Account.Stop.Response.Error](#anytype.Rpc.Account.Stop.Response.Error) + - [Rpc.App](#anytype.Rpc.App) + - [Rpc.App.GetVersion](#anytype.Rpc.App.GetVersion) + - [Rpc.App.GetVersion.Request](#anytype.Rpc.App.GetVersion.Request) + - [Rpc.App.GetVersion.Response](#anytype.Rpc.App.GetVersion.Response) + - [Rpc.App.GetVersion.Response.Error](#anytype.Rpc.App.GetVersion.Response.Error) + - [Rpc.App.SetDeviceState](#anytype.Rpc.App.SetDeviceState) + - [Rpc.App.SetDeviceState.Request](#anytype.Rpc.App.SetDeviceState.Request) + - [Rpc.App.SetDeviceState.Response](#anytype.Rpc.App.SetDeviceState.Response) + - [Rpc.App.SetDeviceState.Response.Error](#anytype.Rpc.App.SetDeviceState.Response.Error) + - [Rpc.App.Shutdown](#anytype.Rpc.App.Shutdown) + - [Rpc.App.Shutdown.Request](#anytype.Rpc.App.Shutdown.Request) + - [Rpc.App.Shutdown.Response](#anytype.Rpc.App.Shutdown.Response) + - [Rpc.App.Shutdown.Response.Error](#anytype.Rpc.App.Shutdown.Response.Error) + - [Rpc.Block](#anytype.Rpc.Block) + - [Rpc.Block.Copy](#anytype.Rpc.Block.Copy) + - [Rpc.Block.Copy.Request](#anytype.Rpc.Block.Copy.Request) + - [Rpc.Block.Copy.Response](#anytype.Rpc.Block.Copy.Response) + - [Rpc.Block.Copy.Response.Error](#anytype.Rpc.Block.Copy.Response.Error) + - [Rpc.Block.Create](#anytype.Rpc.Block.Create) + - [Rpc.Block.Create.Request](#anytype.Rpc.Block.Create.Request) + - [Rpc.Block.Create.Response](#anytype.Rpc.Block.Create.Response) + - [Rpc.Block.Create.Response.Error](#anytype.Rpc.Block.Create.Response.Error) + - [Rpc.Block.CreateWidget](#anytype.Rpc.Block.CreateWidget) + - [Rpc.Block.CreateWidget.Request](#anytype.Rpc.Block.CreateWidget.Request) + - [Rpc.Block.CreateWidget.Response](#anytype.Rpc.Block.CreateWidget.Response) + - [Rpc.Block.CreateWidget.Response.Error](#anytype.Rpc.Block.CreateWidget.Response.Error) + - [Rpc.Block.Cut](#anytype.Rpc.Block.Cut) + - [Rpc.Block.Cut.Request](#anytype.Rpc.Block.Cut.Request) + - [Rpc.Block.Cut.Response](#anytype.Rpc.Block.Cut.Response) + - [Rpc.Block.Cut.Response.Error](#anytype.Rpc.Block.Cut.Response.Error) + - [Rpc.Block.Download](#anytype.Rpc.Block.Download) + - [Rpc.Block.Download.Request](#anytype.Rpc.Block.Download.Request) + - [Rpc.Block.Download.Response](#anytype.Rpc.Block.Download.Response) + - [Rpc.Block.Download.Response.Error](#anytype.Rpc.Block.Download.Response.Error) + - [Rpc.Block.Export](#anytype.Rpc.Block.Export) + - [Rpc.Block.Export.Request](#anytype.Rpc.Block.Export.Request) + - [Rpc.Block.Export.Response](#anytype.Rpc.Block.Export.Response) + - [Rpc.Block.Export.Response.Error](#anytype.Rpc.Block.Export.Response.Error) + - [Rpc.Block.ListConvertToObjects](#anytype.Rpc.Block.ListConvertToObjects) + - [Rpc.Block.ListConvertToObjects.Request](#anytype.Rpc.Block.ListConvertToObjects.Request) + - [Rpc.Block.ListConvertToObjects.Response](#anytype.Rpc.Block.ListConvertToObjects.Response) + - [Rpc.Block.ListConvertToObjects.Response.Error](#anytype.Rpc.Block.ListConvertToObjects.Response.Error) + - [Rpc.Block.ListDelete](#anytype.Rpc.Block.ListDelete) + - [Rpc.Block.ListDelete.Request](#anytype.Rpc.Block.ListDelete.Request) + - [Rpc.Block.ListDelete.Response](#anytype.Rpc.Block.ListDelete.Response) + - [Rpc.Block.ListDelete.Response.Error](#anytype.Rpc.Block.ListDelete.Response.Error) + - [Rpc.Block.ListDuplicate](#anytype.Rpc.Block.ListDuplicate) + - [Rpc.Block.ListDuplicate.Request](#anytype.Rpc.Block.ListDuplicate.Request) + - [Rpc.Block.ListDuplicate.Response](#anytype.Rpc.Block.ListDuplicate.Response) + - [Rpc.Block.ListDuplicate.Response.Error](#anytype.Rpc.Block.ListDuplicate.Response.Error) + - [Rpc.Block.ListMoveToExistingObject](#anytype.Rpc.Block.ListMoveToExistingObject) + - [Rpc.Block.ListMoveToExistingObject.Request](#anytype.Rpc.Block.ListMoveToExistingObject.Request) + - [Rpc.Block.ListMoveToExistingObject.Response](#anytype.Rpc.Block.ListMoveToExistingObject.Response) + - [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error) + - [Rpc.Block.ListMoveToNewObject](#anytype.Rpc.Block.ListMoveToNewObject) + - [Rpc.Block.ListMoveToNewObject.Request](#anytype.Rpc.Block.ListMoveToNewObject.Request) + - [Rpc.Block.ListMoveToNewObject.Response](#anytype.Rpc.Block.ListMoveToNewObject.Response) + - [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error) + - [Rpc.Block.ListSetAlign](#anytype.Rpc.Block.ListSetAlign) + - [Rpc.Block.ListSetAlign.Request](#anytype.Rpc.Block.ListSetAlign.Request) + - [Rpc.Block.ListSetAlign.Response](#anytype.Rpc.Block.ListSetAlign.Response) + - [Rpc.Block.ListSetAlign.Response.Error](#anytype.Rpc.Block.ListSetAlign.Response.Error) + - [Rpc.Block.ListSetBackgroundColor](#anytype.Rpc.Block.ListSetBackgroundColor) + - [Rpc.Block.ListSetBackgroundColor.Request](#anytype.Rpc.Block.ListSetBackgroundColor.Request) + - [Rpc.Block.ListSetBackgroundColor.Response](#anytype.Rpc.Block.ListSetBackgroundColor.Response) + - [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error) + - [Rpc.Block.ListSetFields](#anytype.Rpc.Block.ListSetFields) + - [Rpc.Block.ListSetFields.Request](#anytype.Rpc.Block.ListSetFields.Request) + - [Rpc.Block.ListSetFields.Request.BlockField](#anytype.Rpc.Block.ListSetFields.Request.BlockField) + - [Rpc.Block.ListSetFields.Response](#anytype.Rpc.Block.ListSetFields.Response) + - [Rpc.Block.ListSetFields.Response.Error](#anytype.Rpc.Block.ListSetFields.Response.Error) + - [Rpc.Block.ListSetVerticalAlign](#anytype.Rpc.Block.ListSetVerticalAlign) + - [Rpc.Block.ListSetVerticalAlign.Request](#anytype.Rpc.Block.ListSetVerticalAlign.Request) + - [Rpc.Block.ListSetVerticalAlign.Response](#anytype.Rpc.Block.ListSetVerticalAlign.Response) + - [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error) + - [Rpc.Block.ListTurnInto](#anytype.Rpc.Block.ListTurnInto) + - [Rpc.Block.ListTurnInto.Request](#anytype.Rpc.Block.ListTurnInto.Request) + - [Rpc.Block.ListTurnInto.Response](#anytype.Rpc.Block.ListTurnInto.Response) + - [Rpc.Block.ListTurnInto.Response.Error](#anytype.Rpc.Block.ListTurnInto.Response.Error) + - [Rpc.Block.ListUpdate](#anytype.Rpc.Block.ListUpdate) + - [Rpc.Block.ListUpdate.Request](#anytype.Rpc.Block.ListUpdate.Request) + - [Rpc.Block.ListUpdate.Request.Text](#anytype.Rpc.Block.ListUpdate.Request.Text) + - [Rpc.Block.Merge](#anytype.Rpc.Block.Merge) + - [Rpc.Block.Merge.Request](#anytype.Rpc.Block.Merge.Request) + - [Rpc.Block.Merge.Response](#anytype.Rpc.Block.Merge.Response) + - [Rpc.Block.Merge.Response.Error](#anytype.Rpc.Block.Merge.Response.Error) + - [Rpc.Block.Paste](#anytype.Rpc.Block.Paste) + - [Rpc.Block.Paste.Request](#anytype.Rpc.Block.Paste.Request) + - [Rpc.Block.Paste.Request.File](#anytype.Rpc.Block.Paste.Request.File) + - [Rpc.Block.Paste.Response](#anytype.Rpc.Block.Paste.Response) + - [Rpc.Block.Paste.Response.Error](#anytype.Rpc.Block.Paste.Response.Error) + - [Rpc.Block.Replace](#anytype.Rpc.Block.Replace) + - [Rpc.Block.Replace.Request](#anytype.Rpc.Block.Replace.Request) + - [Rpc.Block.Replace.Response](#anytype.Rpc.Block.Replace.Response) + - [Rpc.Block.Replace.Response.Error](#anytype.Rpc.Block.Replace.Response.Error) + - [Rpc.Block.SetFields](#anytype.Rpc.Block.SetFields) + - [Rpc.Block.SetFields.Request](#anytype.Rpc.Block.SetFields.Request) + - [Rpc.Block.SetFields.Response](#anytype.Rpc.Block.SetFields.Response) + - [Rpc.Block.SetFields.Response.Error](#anytype.Rpc.Block.SetFields.Response.Error) + - [Rpc.Block.Split](#anytype.Rpc.Block.Split) + - [Rpc.Block.Split.Request](#anytype.Rpc.Block.Split.Request) + - [Rpc.Block.Split.Response](#anytype.Rpc.Block.Split.Response) + - [Rpc.Block.Split.Response.Error](#anytype.Rpc.Block.Split.Response.Error) + - [Rpc.Block.Upload](#anytype.Rpc.Block.Upload) + - [Rpc.Block.Upload.Request](#anytype.Rpc.Block.Upload.Request) + - [Rpc.Block.Upload.Response](#anytype.Rpc.Block.Upload.Response) + - [Rpc.Block.Upload.Response.Error](#anytype.Rpc.Block.Upload.Response.Error) + - [Rpc.BlockBookmark](#anytype.Rpc.BlockBookmark) + - [Rpc.BlockBookmark.CreateAndFetch](#anytype.Rpc.BlockBookmark.CreateAndFetch) + - [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype.Rpc.BlockBookmark.CreateAndFetch.Request) + - [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response) + - [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error) + - [Rpc.BlockBookmark.Fetch](#anytype.Rpc.BlockBookmark.Fetch) + - [Rpc.BlockBookmark.Fetch.Request](#anytype.Rpc.BlockBookmark.Fetch.Request) + - [Rpc.BlockBookmark.Fetch.Response](#anytype.Rpc.BlockBookmark.Fetch.Response) + - [Rpc.BlockBookmark.Fetch.Response.Error](#anytype.Rpc.BlockBookmark.Fetch.Response.Error) + - [Rpc.BlockDataview](#anytype.Rpc.BlockDataview) + - [Rpc.BlockDataview.CreateBookmark](#anytype.Rpc.BlockDataview.CreateBookmark) + - [Rpc.BlockDataview.CreateBookmark.Request](#anytype.Rpc.BlockDataview.CreateBookmark.Request) + - [Rpc.BlockDataview.CreateBookmark.Response](#anytype.Rpc.BlockDataview.CreateBookmark.Response) + - [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error) + - [Rpc.BlockDataview.CreateFromExistingObject](#anytype.Rpc.BlockDataview.CreateFromExistingObject) + - [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Request) + - [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response) + - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error) + - [Rpc.BlockDataview.Filter](#anytype.Rpc.BlockDataview.Filter) + - [Rpc.BlockDataview.Filter.Add](#anytype.Rpc.BlockDataview.Filter.Add) + - [Rpc.BlockDataview.Filter.Add.Request](#anytype.Rpc.BlockDataview.Filter.Add.Request) + - [Rpc.BlockDataview.Filter.Add.Response](#anytype.Rpc.BlockDataview.Filter.Add.Response) + - [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error) + - [Rpc.BlockDataview.Filter.Remove](#anytype.Rpc.BlockDataview.Filter.Remove) + - [Rpc.BlockDataview.Filter.Remove.Request](#anytype.Rpc.BlockDataview.Filter.Remove.Request) + - [Rpc.BlockDataview.Filter.Remove.Response](#anytype.Rpc.BlockDataview.Filter.Remove.Response) + - [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error) + - [Rpc.BlockDataview.Filter.Replace](#anytype.Rpc.BlockDataview.Filter.Replace) + - [Rpc.BlockDataview.Filter.Replace.Request](#anytype.Rpc.BlockDataview.Filter.Replace.Request) + - [Rpc.BlockDataview.Filter.Replace.Response](#anytype.Rpc.BlockDataview.Filter.Replace.Response) + - [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error) + - [Rpc.BlockDataview.Filter.Sort](#anytype.Rpc.BlockDataview.Filter.Sort) + - [Rpc.BlockDataview.Filter.Sort.Request](#anytype.Rpc.BlockDataview.Filter.Sort.Request) + - [Rpc.BlockDataview.Filter.Sort.Response](#anytype.Rpc.BlockDataview.Filter.Sort.Response) + - [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error) + - [Rpc.BlockDataview.GroupOrder](#anytype.Rpc.BlockDataview.GroupOrder) + - [Rpc.BlockDataview.GroupOrder.Update](#anytype.Rpc.BlockDataview.GroupOrder.Update) + - [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype.Rpc.BlockDataview.GroupOrder.Update.Request) + - [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response) + - [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error) + - [Rpc.BlockDataview.ObjectOrder](#anytype.Rpc.BlockDataview.ObjectOrder) + - [Rpc.BlockDataview.ObjectOrder.Move](#anytype.Rpc.BlockDataview.ObjectOrder.Move) + - [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Request) + - [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response) + - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error) + - [Rpc.BlockDataview.ObjectOrder.Update](#anytype.Rpc.BlockDataview.ObjectOrder.Update) + - [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Request) + - [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response) + - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error) + - [Rpc.BlockDataview.Relation](#anytype.Rpc.BlockDataview.Relation) + - [Rpc.BlockDataview.Relation.Add](#anytype.Rpc.BlockDataview.Relation.Add) + - [Rpc.BlockDataview.Relation.Add.Request](#anytype.Rpc.BlockDataview.Relation.Add.Request) + - [Rpc.BlockDataview.Relation.Add.Response](#anytype.Rpc.BlockDataview.Relation.Add.Response) + - [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error) + - [Rpc.BlockDataview.Relation.Delete](#anytype.Rpc.BlockDataview.Relation.Delete) + - [Rpc.BlockDataview.Relation.Delete.Request](#anytype.Rpc.BlockDataview.Relation.Delete.Request) + - [Rpc.BlockDataview.Relation.Delete.Response](#anytype.Rpc.BlockDataview.Relation.Delete.Response) + - [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error) + - [Rpc.BlockDataview.Relation.ListAvailable](#anytype.Rpc.BlockDataview.Relation.ListAvailable) + - [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Request) + - [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response) + - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error) + - [Rpc.BlockDataview.SetSource](#anytype.Rpc.BlockDataview.SetSource) + - [Rpc.BlockDataview.SetSource.Request](#anytype.Rpc.BlockDataview.SetSource.Request) + - [Rpc.BlockDataview.SetSource.Response](#anytype.Rpc.BlockDataview.SetSource.Response) + - [Rpc.BlockDataview.SetSource.Response.Error](#anytype.Rpc.BlockDataview.SetSource.Response.Error) + - [Rpc.BlockDataview.Sort](#anytype.Rpc.BlockDataview.Sort) + - [Rpc.BlockDataview.Sort.Add](#anytype.Rpc.BlockDataview.Sort.Add) + - [Rpc.BlockDataview.Sort.Add.Request](#anytype.Rpc.BlockDataview.Sort.Add.Request) + - [Rpc.BlockDataview.Sort.Add.Response](#anytype.Rpc.BlockDataview.Sort.Add.Response) + - [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error) + - [Rpc.BlockDataview.Sort.Remove](#anytype.Rpc.BlockDataview.Sort.Remove) + - [Rpc.BlockDataview.Sort.Remove.Request](#anytype.Rpc.BlockDataview.Sort.Remove.Request) + - [Rpc.BlockDataview.Sort.Remove.Response](#anytype.Rpc.BlockDataview.Sort.Remove.Response) + - [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error) + - [Rpc.BlockDataview.Sort.Replace](#anytype.Rpc.BlockDataview.Sort.Replace) + - [Rpc.BlockDataview.Sort.Replace.Request](#anytype.Rpc.BlockDataview.Sort.Replace.Request) + - [Rpc.BlockDataview.Sort.Replace.Response](#anytype.Rpc.BlockDataview.Sort.Replace.Response) + - [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error) + - [Rpc.BlockDataview.Sort.Sort](#anytype.Rpc.BlockDataview.Sort.Sort) + - [Rpc.BlockDataview.Sort.Sort.Request](#anytype.Rpc.BlockDataview.Sort.Sort.Request) + - [Rpc.BlockDataview.Sort.Sort.Response](#anytype.Rpc.BlockDataview.Sort.Sort.Response) + - [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error) + - [Rpc.BlockDataview.View](#anytype.Rpc.BlockDataview.View) + - [Rpc.BlockDataview.View.Create](#anytype.Rpc.BlockDataview.View.Create) + - [Rpc.BlockDataview.View.Create.Request](#anytype.Rpc.BlockDataview.View.Create.Request) + - [Rpc.BlockDataview.View.Create.Response](#anytype.Rpc.BlockDataview.View.Create.Response) + - [Rpc.BlockDataview.View.Create.Response.Error](#anytype.Rpc.BlockDataview.View.Create.Response.Error) + - [Rpc.BlockDataview.View.Delete](#anytype.Rpc.BlockDataview.View.Delete) + - [Rpc.BlockDataview.View.Delete.Request](#anytype.Rpc.BlockDataview.View.Delete.Request) + - [Rpc.BlockDataview.View.Delete.Response](#anytype.Rpc.BlockDataview.View.Delete.Response) + - [Rpc.BlockDataview.View.Delete.Response.Error](#anytype.Rpc.BlockDataview.View.Delete.Response.Error) + - [Rpc.BlockDataview.View.SetActive](#anytype.Rpc.BlockDataview.View.SetActive) + - [Rpc.BlockDataview.View.SetActive.Request](#anytype.Rpc.BlockDataview.View.SetActive.Request) + - [Rpc.BlockDataview.View.SetActive.Response](#anytype.Rpc.BlockDataview.View.SetActive.Response) + - [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error) + - [Rpc.BlockDataview.View.SetPosition](#anytype.Rpc.BlockDataview.View.SetPosition) + - [Rpc.BlockDataview.View.SetPosition.Request](#anytype.Rpc.BlockDataview.View.SetPosition.Request) + - [Rpc.BlockDataview.View.SetPosition.Response](#anytype.Rpc.BlockDataview.View.SetPosition.Response) + - [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error) + - [Rpc.BlockDataview.View.Update](#anytype.Rpc.BlockDataview.View.Update) + - [Rpc.BlockDataview.View.Update.Request](#anytype.Rpc.BlockDataview.View.Update.Request) + - [Rpc.BlockDataview.View.Update.Response](#anytype.Rpc.BlockDataview.View.Update.Response) + - [Rpc.BlockDataview.View.Update.Response.Error](#anytype.Rpc.BlockDataview.View.Update.Response.Error) + - [Rpc.BlockDataview.ViewRelation](#anytype.Rpc.BlockDataview.ViewRelation) + - [Rpc.BlockDataview.ViewRelation.Add](#anytype.Rpc.BlockDataview.ViewRelation.Add) + - [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype.Rpc.BlockDataview.ViewRelation.Add.Request) + - [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response) + - [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error) + - [Rpc.BlockDataview.ViewRelation.Remove](#anytype.Rpc.BlockDataview.ViewRelation.Remove) + - [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Request) + - [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response) + - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error) + - [Rpc.BlockDataview.ViewRelation.Replace](#anytype.Rpc.BlockDataview.ViewRelation.Replace) + - [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Request) + - [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response) + - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error) + - [Rpc.BlockDataview.ViewRelation.Sort](#anytype.Rpc.BlockDataview.ViewRelation.Sort) + - [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Request) + - [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response) + - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error) + - [Rpc.BlockDiv](#anytype.Rpc.BlockDiv) + - [Rpc.BlockDiv.ListSetStyle](#anytype.Rpc.BlockDiv.ListSetStyle) + - [Rpc.BlockDiv.ListSetStyle.Request](#anytype.Rpc.BlockDiv.ListSetStyle.Request) + - [Rpc.BlockDiv.ListSetStyle.Response](#anytype.Rpc.BlockDiv.ListSetStyle.Response) + - [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error) + - [Rpc.BlockFile](#anytype.Rpc.BlockFile) + - [Rpc.BlockFile.CreateAndUpload](#anytype.Rpc.BlockFile.CreateAndUpload) + - [Rpc.BlockFile.CreateAndUpload.Request](#anytype.Rpc.BlockFile.CreateAndUpload.Request) + - [Rpc.BlockFile.CreateAndUpload.Response](#anytype.Rpc.BlockFile.CreateAndUpload.Response) + - [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error) + - [Rpc.BlockFile.ListSetStyle](#anytype.Rpc.BlockFile.ListSetStyle) + - [Rpc.BlockFile.ListSetStyle.Request](#anytype.Rpc.BlockFile.ListSetStyle.Request) + - [Rpc.BlockFile.ListSetStyle.Response](#anytype.Rpc.BlockFile.ListSetStyle.Response) + - [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error) + - [Rpc.BlockFile.SetName](#anytype.Rpc.BlockFile.SetName) + - [Rpc.BlockFile.SetName.Request](#anytype.Rpc.BlockFile.SetName.Request) + - [Rpc.BlockFile.SetName.Response](#anytype.Rpc.BlockFile.SetName.Response) + - [Rpc.BlockFile.SetName.Response.Error](#anytype.Rpc.BlockFile.SetName.Response.Error) + - [Rpc.BlockImage](#anytype.Rpc.BlockImage) + - [Rpc.BlockImage.SetName](#anytype.Rpc.BlockImage.SetName) + - [Rpc.BlockImage.SetName.Request](#anytype.Rpc.BlockImage.SetName.Request) + - [Rpc.BlockImage.SetName.Response](#anytype.Rpc.BlockImage.SetName.Response) + - [Rpc.BlockImage.SetName.Response.Error](#anytype.Rpc.BlockImage.SetName.Response.Error) + - [Rpc.BlockImage.SetWidth](#anytype.Rpc.BlockImage.SetWidth) + - [Rpc.BlockImage.SetWidth.Request](#anytype.Rpc.BlockImage.SetWidth.Request) + - [Rpc.BlockImage.SetWidth.Response](#anytype.Rpc.BlockImage.SetWidth.Response) + - [Rpc.BlockImage.SetWidth.Response.Error](#anytype.Rpc.BlockImage.SetWidth.Response.Error) + - [Rpc.BlockLatex](#anytype.Rpc.BlockLatex) + - [Rpc.BlockLatex.SetText](#anytype.Rpc.BlockLatex.SetText) + - [Rpc.BlockLatex.SetText.Request](#anytype.Rpc.BlockLatex.SetText.Request) + - [Rpc.BlockLatex.SetText.Response](#anytype.Rpc.BlockLatex.SetText.Response) + - [Rpc.BlockLatex.SetText.Response.Error](#anytype.Rpc.BlockLatex.SetText.Response.Error) + - [Rpc.BlockLink](#anytype.Rpc.BlockLink) + - [Rpc.BlockLink.CreateWithObject](#anytype.Rpc.BlockLink.CreateWithObject) + - [Rpc.BlockLink.CreateWithObject.Request](#anytype.Rpc.BlockLink.CreateWithObject.Request) + - [Rpc.BlockLink.CreateWithObject.Response](#anytype.Rpc.BlockLink.CreateWithObject.Response) + - [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error) + - [Rpc.BlockLink.ListSetAppearance](#anytype.Rpc.BlockLink.ListSetAppearance) + - [Rpc.BlockLink.ListSetAppearance.Request](#anytype.Rpc.BlockLink.ListSetAppearance.Request) + - [Rpc.BlockLink.ListSetAppearance.Response](#anytype.Rpc.BlockLink.ListSetAppearance.Response) + - [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error) + - [Rpc.BlockRelation](#anytype.Rpc.BlockRelation) + - [Rpc.BlockRelation.Add](#anytype.Rpc.BlockRelation.Add) + - [Rpc.BlockRelation.Add.Request](#anytype.Rpc.BlockRelation.Add.Request) + - [Rpc.BlockRelation.Add.Response](#anytype.Rpc.BlockRelation.Add.Response) + - [Rpc.BlockRelation.Add.Response.Error](#anytype.Rpc.BlockRelation.Add.Response.Error) + - [Rpc.BlockRelation.SetKey](#anytype.Rpc.BlockRelation.SetKey) + - [Rpc.BlockRelation.SetKey.Request](#anytype.Rpc.BlockRelation.SetKey.Request) + - [Rpc.BlockRelation.SetKey.Response](#anytype.Rpc.BlockRelation.SetKey.Response) + - [Rpc.BlockRelation.SetKey.Response.Error](#anytype.Rpc.BlockRelation.SetKey.Response.Error) + - [Rpc.BlockTable](#anytype.Rpc.BlockTable) + - [Rpc.BlockTable.ColumnCreate](#anytype.Rpc.BlockTable.ColumnCreate) + - [Rpc.BlockTable.ColumnCreate.Request](#anytype.Rpc.BlockTable.ColumnCreate.Request) + - [Rpc.BlockTable.ColumnCreate.Response](#anytype.Rpc.BlockTable.ColumnCreate.Response) + - [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error) + - [Rpc.BlockTable.ColumnDelete](#anytype.Rpc.BlockTable.ColumnDelete) + - [Rpc.BlockTable.ColumnDelete.Request](#anytype.Rpc.BlockTable.ColumnDelete.Request) + - [Rpc.BlockTable.ColumnDelete.Response](#anytype.Rpc.BlockTable.ColumnDelete.Response) + - [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error) + - [Rpc.BlockTable.ColumnDuplicate](#anytype.Rpc.BlockTable.ColumnDuplicate) + - [Rpc.BlockTable.ColumnDuplicate.Request](#anytype.Rpc.BlockTable.ColumnDuplicate.Request) + - [Rpc.BlockTable.ColumnDuplicate.Response](#anytype.Rpc.BlockTable.ColumnDuplicate.Response) + - [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error) + - [Rpc.BlockTable.ColumnListFill](#anytype.Rpc.BlockTable.ColumnListFill) + - [Rpc.BlockTable.ColumnListFill.Request](#anytype.Rpc.BlockTable.ColumnListFill.Request) + - [Rpc.BlockTable.ColumnListFill.Response](#anytype.Rpc.BlockTable.ColumnListFill.Response) + - [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error) + - [Rpc.BlockTable.ColumnMove](#anytype.Rpc.BlockTable.ColumnMove) + - [Rpc.BlockTable.ColumnMove.Request](#anytype.Rpc.BlockTable.ColumnMove.Request) + - [Rpc.BlockTable.ColumnMove.Response](#anytype.Rpc.BlockTable.ColumnMove.Response) + - [Rpc.BlockTable.ColumnMove.Response.Error](#anytype.Rpc.BlockTable.ColumnMove.Response.Error) + - [Rpc.BlockTable.Create](#anytype.Rpc.BlockTable.Create) + - [Rpc.BlockTable.Create.Request](#anytype.Rpc.BlockTable.Create.Request) + - [Rpc.BlockTable.Create.Response](#anytype.Rpc.BlockTable.Create.Response) + - [Rpc.BlockTable.Create.Response.Error](#anytype.Rpc.BlockTable.Create.Response.Error) + - [Rpc.BlockTable.Expand](#anytype.Rpc.BlockTable.Expand) + - [Rpc.BlockTable.Expand.Request](#anytype.Rpc.BlockTable.Expand.Request) + - [Rpc.BlockTable.Expand.Response](#anytype.Rpc.BlockTable.Expand.Response) + - [Rpc.BlockTable.Expand.Response.Error](#anytype.Rpc.BlockTable.Expand.Response.Error) + - [Rpc.BlockTable.RowCreate](#anytype.Rpc.BlockTable.RowCreate) + - [Rpc.BlockTable.RowCreate.Request](#anytype.Rpc.BlockTable.RowCreate.Request) + - [Rpc.BlockTable.RowCreate.Response](#anytype.Rpc.BlockTable.RowCreate.Response) + - [Rpc.BlockTable.RowCreate.Response.Error](#anytype.Rpc.BlockTable.RowCreate.Response.Error) + - [Rpc.BlockTable.RowDelete](#anytype.Rpc.BlockTable.RowDelete) + - [Rpc.BlockTable.RowDelete.Request](#anytype.Rpc.BlockTable.RowDelete.Request) + - [Rpc.BlockTable.RowDelete.Response](#anytype.Rpc.BlockTable.RowDelete.Response) + - [Rpc.BlockTable.RowDelete.Response.Error](#anytype.Rpc.BlockTable.RowDelete.Response.Error) + - [Rpc.BlockTable.RowDuplicate](#anytype.Rpc.BlockTable.RowDuplicate) + - [Rpc.BlockTable.RowDuplicate.Request](#anytype.Rpc.BlockTable.RowDuplicate.Request) + - [Rpc.BlockTable.RowDuplicate.Response](#anytype.Rpc.BlockTable.RowDuplicate.Response) + - [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error) + - [Rpc.BlockTable.RowListClean](#anytype.Rpc.BlockTable.RowListClean) + - [Rpc.BlockTable.RowListClean.Request](#anytype.Rpc.BlockTable.RowListClean.Request) + - [Rpc.BlockTable.RowListClean.Response](#anytype.Rpc.BlockTable.RowListClean.Response) + - [Rpc.BlockTable.RowListClean.Response.Error](#anytype.Rpc.BlockTable.RowListClean.Response.Error) + - [Rpc.BlockTable.RowListFill](#anytype.Rpc.BlockTable.RowListFill) + - [Rpc.BlockTable.RowListFill.Request](#anytype.Rpc.BlockTable.RowListFill.Request) + - [Rpc.BlockTable.RowListFill.Response](#anytype.Rpc.BlockTable.RowListFill.Response) + - [Rpc.BlockTable.RowListFill.Response.Error](#anytype.Rpc.BlockTable.RowListFill.Response.Error) + - [Rpc.BlockTable.RowSetHeader](#anytype.Rpc.BlockTable.RowSetHeader) + - [Rpc.BlockTable.RowSetHeader.Request](#anytype.Rpc.BlockTable.RowSetHeader.Request) + - [Rpc.BlockTable.RowSetHeader.Response](#anytype.Rpc.BlockTable.RowSetHeader.Response) + - [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error) + - [Rpc.BlockTable.Sort](#anytype.Rpc.BlockTable.Sort) + - [Rpc.BlockTable.Sort.Request](#anytype.Rpc.BlockTable.Sort.Request) + - [Rpc.BlockTable.Sort.Response](#anytype.Rpc.BlockTable.Sort.Response) + - [Rpc.BlockTable.Sort.Response.Error](#anytype.Rpc.BlockTable.Sort.Response.Error) + - [Rpc.BlockText](#anytype.Rpc.BlockText) + - [Rpc.BlockText.ListClearContent](#anytype.Rpc.BlockText.ListClearContent) + - [Rpc.BlockText.ListClearContent.Request](#anytype.Rpc.BlockText.ListClearContent.Request) + - [Rpc.BlockText.ListClearContent.Response](#anytype.Rpc.BlockText.ListClearContent.Response) + - [Rpc.BlockText.ListClearContent.Response.Error](#anytype.Rpc.BlockText.ListClearContent.Response.Error) + - [Rpc.BlockText.ListClearStyle](#anytype.Rpc.BlockText.ListClearStyle) + - [Rpc.BlockText.ListClearStyle.Request](#anytype.Rpc.BlockText.ListClearStyle.Request) + - [Rpc.BlockText.ListClearStyle.Response](#anytype.Rpc.BlockText.ListClearStyle.Response) + - [Rpc.BlockText.ListClearStyle.Response.Error](#anytype.Rpc.BlockText.ListClearStyle.Response.Error) + - [Rpc.BlockText.ListSetColor](#anytype.Rpc.BlockText.ListSetColor) + - [Rpc.BlockText.ListSetColor.Request](#anytype.Rpc.BlockText.ListSetColor.Request) + - [Rpc.BlockText.ListSetColor.Response](#anytype.Rpc.BlockText.ListSetColor.Response) + - [Rpc.BlockText.ListSetColor.Response.Error](#anytype.Rpc.BlockText.ListSetColor.Response.Error) + - [Rpc.BlockText.ListSetMark](#anytype.Rpc.BlockText.ListSetMark) + - [Rpc.BlockText.ListSetMark.Request](#anytype.Rpc.BlockText.ListSetMark.Request) + - [Rpc.BlockText.ListSetMark.Response](#anytype.Rpc.BlockText.ListSetMark.Response) + - [Rpc.BlockText.ListSetMark.Response.Error](#anytype.Rpc.BlockText.ListSetMark.Response.Error) + - [Rpc.BlockText.ListSetStyle](#anytype.Rpc.BlockText.ListSetStyle) + - [Rpc.BlockText.ListSetStyle.Request](#anytype.Rpc.BlockText.ListSetStyle.Request) + - [Rpc.BlockText.ListSetStyle.Response](#anytype.Rpc.BlockText.ListSetStyle.Response) + - [Rpc.BlockText.ListSetStyle.Response.Error](#anytype.Rpc.BlockText.ListSetStyle.Response.Error) + - [Rpc.BlockText.SetChecked](#anytype.Rpc.BlockText.SetChecked) + - [Rpc.BlockText.SetChecked.Request](#anytype.Rpc.BlockText.SetChecked.Request) + - [Rpc.BlockText.SetChecked.Response](#anytype.Rpc.BlockText.SetChecked.Response) + - [Rpc.BlockText.SetChecked.Response.Error](#anytype.Rpc.BlockText.SetChecked.Response.Error) + - [Rpc.BlockText.SetColor](#anytype.Rpc.BlockText.SetColor) + - [Rpc.BlockText.SetColor.Request](#anytype.Rpc.BlockText.SetColor.Request) + - [Rpc.BlockText.SetColor.Response](#anytype.Rpc.BlockText.SetColor.Response) + - [Rpc.BlockText.SetColor.Response.Error](#anytype.Rpc.BlockText.SetColor.Response.Error) + - [Rpc.BlockText.SetIcon](#anytype.Rpc.BlockText.SetIcon) + - [Rpc.BlockText.SetIcon.Request](#anytype.Rpc.BlockText.SetIcon.Request) + - [Rpc.BlockText.SetIcon.Response](#anytype.Rpc.BlockText.SetIcon.Response) + - [Rpc.BlockText.SetIcon.Response.Error](#anytype.Rpc.BlockText.SetIcon.Response.Error) + - [Rpc.BlockText.SetMarks](#anytype.Rpc.BlockText.SetMarks) + - [Rpc.BlockText.SetMarks.Get](#anytype.Rpc.BlockText.SetMarks.Get) + - [Rpc.BlockText.SetMarks.Get.Request](#anytype.Rpc.BlockText.SetMarks.Get.Request) + - [Rpc.BlockText.SetMarks.Get.Response](#anytype.Rpc.BlockText.SetMarks.Get.Response) + - [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error) + - [Rpc.BlockText.SetStyle](#anytype.Rpc.BlockText.SetStyle) + - [Rpc.BlockText.SetStyle.Request](#anytype.Rpc.BlockText.SetStyle.Request) + - [Rpc.BlockText.SetStyle.Response](#anytype.Rpc.BlockText.SetStyle.Response) + - [Rpc.BlockText.SetStyle.Response.Error](#anytype.Rpc.BlockText.SetStyle.Response.Error) + - [Rpc.BlockText.SetText](#anytype.Rpc.BlockText.SetText) + - [Rpc.BlockText.SetText.Request](#anytype.Rpc.BlockText.SetText.Request) + - [Rpc.BlockText.SetText.Response](#anytype.Rpc.BlockText.SetText.Response) + - [Rpc.BlockText.SetText.Response.Error](#anytype.Rpc.BlockText.SetText.Response.Error) + - [Rpc.BlockVideo](#anytype.Rpc.BlockVideo) + - [Rpc.BlockVideo.SetName](#anytype.Rpc.BlockVideo.SetName) + - [Rpc.BlockVideo.SetName.Request](#anytype.Rpc.BlockVideo.SetName.Request) + - [Rpc.BlockVideo.SetName.Response](#anytype.Rpc.BlockVideo.SetName.Response) + - [Rpc.BlockVideo.SetName.Response.Error](#anytype.Rpc.BlockVideo.SetName.Response.Error) + - [Rpc.BlockVideo.SetWidth](#anytype.Rpc.BlockVideo.SetWidth) + - [Rpc.BlockVideo.SetWidth.Request](#anytype.Rpc.BlockVideo.SetWidth.Request) + - [Rpc.BlockVideo.SetWidth.Response](#anytype.Rpc.BlockVideo.SetWidth.Response) + - [Rpc.BlockVideo.SetWidth.Response.Error](#anytype.Rpc.BlockVideo.SetWidth.Response.Error) + - [Rpc.Debug](#anytype.Rpc.Debug) + - [Rpc.Debug.ExportLocalstore](#anytype.Rpc.Debug.ExportLocalstore) + - [Rpc.Debug.ExportLocalstore.Request](#anytype.Rpc.Debug.ExportLocalstore.Request) + - [Rpc.Debug.ExportLocalstore.Response](#anytype.Rpc.Debug.ExportLocalstore.Response) + - [Rpc.Debug.ExportLocalstore.Response.Error](#anytype.Rpc.Debug.ExportLocalstore.Response.Error) + - [Rpc.Debug.Ping](#anytype.Rpc.Debug.Ping) + - [Rpc.Debug.Ping.Request](#anytype.Rpc.Debug.Ping.Request) + - [Rpc.Debug.Ping.Response](#anytype.Rpc.Debug.Ping.Response) + - [Rpc.Debug.Ping.Response.Error](#anytype.Rpc.Debug.Ping.Response.Error) + - [Rpc.Debug.SpaceSummary](#anytype.Rpc.Debug.SpaceSummary) + - [Rpc.Debug.SpaceSummary.Request](#anytype.Rpc.Debug.SpaceSummary.Request) + - [Rpc.Debug.SpaceSummary.Response](#anytype.Rpc.Debug.SpaceSummary.Response) + - [Rpc.Debug.SpaceSummary.Response.Error](#anytype.Rpc.Debug.SpaceSummary.Response.Error) + - [Rpc.Debug.Tree](#anytype.Rpc.Debug.Tree) + - [Rpc.Debug.Tree.Request](#anytype.Rpc.Debug.Tree.Request) + - [Rpc.Debug.Tree.Response](#anytype.Rpc.Debug.Tree.Response) + - [Rpc.Debug.Tree.Response.Error](#anytype.Rpc.Debug.Tree.Response.Error) + - [Rpc.Debug.TreeHeads](#anytype.Rpc.Debug.TreeHeads) + - [Rpc.Debug.TreeHeads.Request](#anytype.Rpc.Debug.TreeHeads.Request) + - [Rpc.Debug.TreeHeads.Response](#anytype.Rpc.Debug.TreeHeads.Response) + - [Rpc.Debug.TreeHeads.Response.Error](#anytype.Rpc.Debug.TreeHeads.Response.Error) + - [Rpc.Debug.TreeInfo](#anytype.Rpc.Debug.TreeInfo) + - [Rpc.File](#anytype.Rpc.File) + - [Rpc.File.Download](#anytype.Rpc.File.Download) + - [Rpc.File.Download.Request](#anytype.Rpc.File.Download.Request) + - [Rpc.File.Download.Response](#anytype.Rpc.File.Download.Response) + - [Rpc.File.Download.Response.Error](#anytype.Rpc.File.Download.Response.Error) + - [Rpc.File.Drop](#anytype.Rpc.File.Drop) + - [Rpc.File.Drop.Request](#anytype.Rpc.File.Drop.Request) + - [Rpc.File.Drop.Response](#anytype.Rpc.File.Drop.Response) + - [Rpc.File.Drop.Response.Error](#anytype.Rpc.File.Drop.Response.Error) + - [Rpc.File.ListOffload](#anytype.Rpc.File.ListOffload) + - [Rpc.File.ListOffload.Request](#anytype.Rpc.File.ListOffload.Request) + - [Rpc.File.ListOffload.Response](#anytype.Rpc.File.ListOffload.Response) + - [Rpc.File.ListOffload.Response.Error](#anytype.Rpc.File.ListOffload.Response.Error) + - [Rpc.File.Offload](#anytype.Rpc.File.Offload) + - [Rpc.File.Offload.Request](#anytype.Rpc.File.Offload.Request) + - [Rpc.File.Offload.Response](#anytype.Rpc.File.Offload.Response) + - [Rpc.File.Offload.Response.Error](#anytype.Rpc.File.Offload.Response.Error) + - [Rpc.File.Upload](#anytype.Rpc.File.Upload) + - [Rpc.File.Upload.Request](#anytype.Rpc.File.Upload.Request) + - [Rpc.File.Upload.Response](#anytype.Rpc.File.Upload.Response) + - [Rpc.File.Upload.Response.Error](#anytype.Rpc.File.Upload.Response.Error) + - [Rpc.GenericErrorResponse](#anytype.Rpc.GenericErrorResponse) + - [Rpc.GenericErrorResponse.Error](#anytype.Rpc.GenericErrorResponse.Error) + - [Rpc.History](#anytype.Rpc.History) + - [Rpc.History.GetVersions](#anytype.Rpc.History.GetVersions) + - [Rpc.History.GetVersions.Request](#anytype.Rpc.History.GetVersions.Request) + - [Rpc.History.GetVersions.Response](#anytype.Rpc.History.GetVersions.Response) + - [Rpc.History.GetVersions.Response.Error](#anytype.Rpc.History.GetVersions.Response.Error) + - [Rpc.History.SetVersion](#anytype.Rpc.History.SetVersion) + - [Rpc.History.SetVersion.Request](#anytype.Rpc.History.SetVersion.Request) + - [Rpc.History.SetVersion.Response](#anytype.Rpc.History.SetVersion.Response) + - [Rpc.History.SetVersion.Response.Error](#anytype.Rpc.History.SetVersion.Response.Error) + - [Rpc.History.ShowVersion](#anytype.Rpc.History.ShowVersion) + - [Rpc.History.ShowVersion.Request](#anytype.Rpc.History.ShowVersion.Request) + - [Rpc.History.ShowVersion.Response](#anytype.Rpc.History.ShowVersion.Response) + - [Rpc.History.ShowVersion.Response.Error](#anytype.Rpc.History.ShowVersion.Response.Error) + - [Rpc.History.Version](#anytype.Rpc.History.Version) + - [Rpc.LinkPreview](#anytype.Rpc.LinkPreview) + - [Rpc.LinkPreview.Request](#anytype.Rpc.LinkPreview.Request) + - [Rpc.LinkPreview.Response](#anytype.Rpc.LinkPreview.Response) + - [Rpc.LinkPreview.Response.Error](#anytype.Rpc.LinkPreview.Response.Error) + - [Rpc.Log](#anytype.Rpc.Log) + - [Rpc.Log.Send](#anytype.Rpc.Log.Send) + - [Rpc.Log.Send.Request](#anytype.Rpc.Log.Send.Request) + - [Rpc.Log.Send.Response](#anytype.Rpc.Log.Send.Response) + - [Rpc.Log.Send.Response.Error](#anytype.Rpc.Log.Send.Response.Error) + - [Rpc.Metrics](#anytype.Rpc.Metrics) + - [Rpc.Metrics.SetParameters](#anytype.Rpc.Metrics.SetParameters) + - [Rpc.Metrics.SetParameters.Request](#anytype.Rpc.Metrics.SetParameters.Request) + - [Rpc.Metrics.SetParameters.Response](#anytype.Rpc.Metrics.SetParameters.Response) + - [Rpc.Metrics.SetParameters.Response.Error](#anytype.Rpc.Metrics.SetParameters.Response.Error) + - [Rpc.Navigation](#anytype.Rpc.Navigation) + - [Rpc.Navigation.GetObjectInfoWithLinks](#anytype.Rpc.Navigation.GetObjectInfoWithLinks) + - [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Request) + - [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response) + - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error) + - [Rpc.Navigation.ListObjects](#anytype.Rpc.Navigation.ListObjects) + - [Rpc.Navigation.ListObjects.Request](#anytype.Rpc.Navigation.ListObjects.Request) + - [Rpc.Navigation.ListObjects.Response](#anytype.Rpc.Navigation.ListObjects.Response) + - [Rpc.Navigation.ListObjects.Response.Error](#anytype.Rpc.Navigation.ListObjects.Response.Error) + - [Rpc.Object](#anytype.Rpc.Object) + - [Rpc.Object.ApplyTemplate](#anytype.Rpc.Object.ApplyTemplate) + - [Rpc.Object.ApplyTemplate.Request](#anytype.Rpc.Object.ApplyTemplate.Request) + - [Rpc.Object.ApplyTemplate.Response](#anytype.Rpc.Object.ApplyTemplate.Response) + - [Rpc.Object.ApplyTemplate.Response.Error](#anytype.Rpc.Object.ApplyTemplate.Response.Error) + - [Rpc.Object.BookmarkFetch](#anytype.Rpc.Object.BookmarkFetch) + - [Rpc.Object.BookmarkFetch.Request](#anytype.Rpc.Object.BookmarkFetch.Request) + - [Rpc.Object.BookmarkFetch.Response](#anytype.Rpc.Object.BookmarkFetch.Response) + - [Rpc.Object.BookmarkFetch.Response.Error](#anytype.Rpc.Object.BookmarkFetch.Response.Error) + - [Rpc.Object.Close](#anytype.Rpc.Object.Close) + - [Rpc.Object.Close.Request](#anytype.Rpc.Object.Close.Request) + - [Rpc.Object.Close.Response](#anytype.Rpc.Object.Close.Response) + - [Rpc.Object.Close.Response.Error](#anytype.Rpc.Object.Close.Response.Error) + - [Rpc.Object.Create](#anytype.Rpc.Object.Create) + - [Rpc.Object.Create.Request](#anytype.Rpc.Object.Create.Request) + - [Rpc.Object.Create.Response](#anytype.Rpc.Object.Create.Response) + - [Rpc.Object.Create.Response.Error](#anytype.Rpc.Object.Create.Response.Error) + - [Rpc.Object.CreateBookmark](#anytype.Rpc.Object.CreateBookmark) + - [Rpc.Object.CreateBookmark.Request](#anytype.Rpc.Object.CreateBookmark.Request) + - [Rpc.Object.CreateBookmark.Response](#anytype.Rpc.Object.CreateBookmark.Response) + - [Rpc.Object.CreateBookmark.Response.Error](#anytype.Rpc.Object.CreateBookmark.Response.Error) + - [Rpc.Object.CreateObjectType](#anytype.Rpc.Object.CreateObjectType) + - [Rpc.Object.CreateObjectType.Request](#anytype.Rpc.Object.CreateObjectType.Request) + - [Rpc.Object.CreateObjectType.Response](#anytype.Rpc.Object.CreateObjectType.Response) + - [Rpc.Object.CreateObjectType.Response.Error](#anytype.Rpc.Object.CreateObjectType.Response.Error) + - [Rpc.Object.CreateRelation](#anytype.Rpc.Object.CreateRelation) + - [Rpc.Object.CreateRelation.Request](#anytype.Rpc.Object.CreateRelation.Request) + - [Rpc.Object.CreateRelation.Response](#anytype.Rpc.Object.CreateRelation.Response) + - [Rpc.Object.CreateRelation.Response.Error](#anytype.Rpc.Object.CreateRelation.Response.Error) + - [Rpc.Object.CreateRelationOption](#anytype.Rpc.Object.CreateRelationOption) + - [Rpc.Object.CreateRelationOption.Request](#anytype.Rpc.Object.CreateRelationOption.Request) + - [Rpc.Object.CreateRelationOption.Response](#anytype.Rpc.Object.CreateRelationOption.Response) + - [Rpc.Object.CreateRelationOption.Response.Error](#anytype.Rpc.Object.CreateRelationOption.Response.Error) + - [Rpc.Object.CreateSet](#anytype.Rpc.Object.CreateSet) + - [Rpc.Object.CreateSet.Request](#anytype.Rpc.Object.CreateSet.Request) + - [Rpc.Object.CreateSet.Response](#anytype.Rpc.Object.CreateSet.Response) + - [Rpc.Object.CreateSet.Response.Error](#anytype.Rpc.Object.CreateSet.Response.Error) + - [Rpc.Object.Duplicate](#anytype.Rpc.Object.Duplicate) + - [Rpc.Object.Duplicate.Request](#anytype.Rpc.Object.Duplicate.Request) + - [Rpc.Object.Duplicate.Response](#anytype.Rpc.Object.Duplicate.Response) + - [Rpc.Object.Duplicate.Response.Error](#anytype.Rpc.Object.Duplicate.Response.Error) + - [Rpc.Object.Graph](#anytype.Rpc.Object.Graph) + - [Rpc.Object.Graph.Edge](#anytype.Rpc.Object.Graph.Edge) + - [Rpc.Object.Graph.Request](#anytype.Rpc.Object.Graph.Request) + - [Rpc.Object.Graph.Response](#anytype.Rpc.Object.Graph.Response) + - [Rpc.Object.Graph.Response.Error](#anytype.Rpc.Object.Graph.Response.Error) + - [Rpc.Object.GroupsSubscribe](#anytype.Rpc.Object.GroupsSubscribe) + - [Rpc.Object.GroupsSubscribe.Request](#anytype.Rpc.Object.GroupsSubscribe.Request) + - [Rpc.Object.GroupsSubscribe.Response](#anytype.Rpc.Object.GroupsSubscribe.Response) + - [Rpc.Object.GroupsSubscribe.Response.Error](#anytype.Rpc.Object.GroupsSubscribe.Response.Error) + - [Rpc.Object.Import](#anytype.Rpc.Object.Import) + - [Rpc.Object.Import.Notion](#anytype.Rpc.Object.Import.Notion) + - [Rpc.Object.Import.Notion.ValidateToken](#anytype.Rpc.Object.Import.Notion.ValidateToken) + - [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype.Rpc.Object.Import.Notion.ValidateToken.Request) + - [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response) + - [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error) + - [Rpc.Object.Import.Request](#anytype.Rpc.Object.Import.Request) + - [Rpc.Object.Import.Request.BookmarksParams](#anytype.Rpc.Object.Import.Request.BookmarksParams) + - [Rpc.Object.Import.Request.CsvParams](#anytype.Rpc.Object.Import.Request.CsvParams) + - [Rpc.Object.Import.Request.HtmlParams](#anytype.Rpc.Object.Import.Request.HtmlParams) + - [Rpc.Object.Import.Request.MarkdownParams](#anytype.Rpc.Object.Import.Request.MarkdownParams) + - [Rpc.Object.Import.Request.NotionParams](#anytype.Rpc.Object.Import.Request.NotionParams) + - [Rpc.Object.Import.Request.PbParams](#anytype.Rpc.Object.Import.Request.PbParams) + - [Rpc.Object.Import.Request.Snapshot](#anytype.Rpc.Object.Import.Request.Snapshot) + - [Rpc.Object.Import.Request.TxtParams](#anytype.Rpc.Object.Import.Request.TxtParams) + - [Rpc.Object.Import.Response](#anytype.Rpc.Object.Import.Response) + - [Rpc.Object.Import.Response.Error](#anytype.Rpc.Object.Import.Response.Error) + - [Rpc.Object.ImportList](#anytype.Rpc.Object.ImportList) + - [Rpc.Object.ImportList.ImportResponse](#anytype.Rpc.Object.ImportList.ImportResponse) + - [Rpc.Object.ImportList.Request](#anytype.Rpc.Object.ImportList.Request) + - [Rpc.Object.ImportList.Response](#anytype.Rpc.Object.ImportList.Response) + - [Rpc.Object.ImportList.Response.Error](#anytype.Rpc.Object.ImportList.Response.Error) + - [Rpc.Object.ListDelete](#anytype.Rpc.Object.ListDelete) + - [Rpc.Object.ListDelete.Request](#anytype.Rpc.Object.ListDelete.Request) + - [Rpc.Object.ListDelete.Response](#anytype.Rpc.Object.ListDelete.Response) + - [Rpc.Object.ListDelete.Response.Error](#anytype.Rpc.Object.ListDelete.Response.Error) + - [Rpc.Object.ListDuplicate](#anytype.Rpc.Object.ListDuplicate) + - [Rpc.Object.ListDuplicate.Request](#anytype.Rpc.Object.ListDuplicate.Request) + - [Rpc.Object.ListDuplicate.Response](#anytype.Rpc.Object.ListDuplicate.Response) + - [Rpc.Object.ListDuplicate.Response.Error](#anytype.Rpc.Object.ListDuplicate.Response.Error) + - [Rpc.Object.ListExport](#anytype.Rpc.Object.ListExport) + - [Rpc.Object.ListExport.Request](#anytype.Rpc.Object.ListExport.Request) + - [Rpc.Object.ListExport.Response](#anytype.Rpc.Object.ListExport.Response) + - [Rpc.Object.ListExport.Response.Error](#anytype.Rpc.Object.ListExport.Response.Error) + - [Rpc.Object.ListSetIsArchived](#anytype.Rpc.Object.ListSetIsArchived) + - [Rpc.Object.ListSetIsArchived.Request](#anytype.Rpc.Object.ListSetIsArchived.Request) + - [Rpc.Object.ListSetIsArchived.Response](#anytype.Rpc.Object.ListSetIsArchived.Response) + - [Rpc.Object.ListSetIsArchived.Response.Error](#anytype.Rpc.Object.ListSetIsArchived.Response.Error) + - [Rpc.Object.ListSetIsFavorite](#anytype.Rpc.Object.ListSetIsFavorite) + - [Rpc.Object.ListSetIsFavorite.Request](#anytype.Rpc.Object.ListSetIsFavorite.Request) + - [Rpc.Object.ListSetIsFavorite.Response](#anytype.Rpc.Object.ListSetIsFavorite.Response) + - [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error) + - [Rpc.Object.Open](#anytype.Rpc.Object.Open) + - [Rpc.Object.Open.Request](#anytype.Rpc.Object.Open.Request) + - [Rpc.Object.Open.Response](#anytype.Rpc.Object.Open.Response) + - [Rpc.Object.Open.Response.Error](#anytype.Rpc.Object.Open.Response.Error) + - [Rpc.Object.OpenBreadcrumbs](#anytype.Rpc.Object.OpenBreadcrumbs) + - [Rpc.Object.OpenBreadcrumbs.Request](#anytype.Rpc.Object.OpenBreadcrumbs.Request) + - [Rpc.Object.OpenBreadcrumbs.Response](#anytype.Rpc.Object.OpenBreadcrumbs.Response) + - [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error) + - [Rpc.Object.Redo](#anytype.Rpc.Object.Redo) + - [Rpc.Object.Redo.Request](#anytype.Rpc.Object.Redo.Request) + - [Rpc.Object.Redo.Response](#anytype.Rpc.Object.Redo.Response) + - [Rpc.Object.Redo.Response.Error](#anytype.Rpc.Object.Redo.Response.Error) + - [Rpc.Object.Search](#anytype.Rpc.Object.Search) + - [Rpc.Object.Search.Request](#anytype.Rpc.Object.Search.Request) + - [Rpc.Object.Search.Response](#anytype.Rpc.Object.Search.Response) + - [Rpc.Object.Search.Response.Error](#anytype.Rpc.Object.Search.Response.Error) + - [Rpc.Object.SearchSubscribe](#anytype.Rpc.Object.SearchSubscribe) + - [Rpc.Object.SearchSubscribe.Request](#anytype.Rpc.Object.SearchSubscribe.Request) + - [Rpc.Object.SearchSubscribe.Response](#anytype.Rpc.Object.SearchSubscribe.Response) + - [Rpc.Object.SearchSubscribe.Response.Error](#anytype.Rpc.Object.SearchSubscribe.Response.Error) + - [Rpc.Object.SearchUnsubscribe](#anytype.Rpc.Object.SearchUnsubscribe) + - [Rpc.Object.SearchUnsubscribe.Request](#anytype.Rpc.Object.SearchUnsubscribe.Request) + - [Rpc.Object.SearchUnsubscribe.Response](#anytype.Rpc.Object.SearchUnsubscribe.Response) + - [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error) + - [Rpc.Object.SetBreadcrumbs](#anytype.Rpc.Object.SetBreadcrumbs) + - [Rpc.Object.SetBreadcrumbs.Request](#anytype.Rpc.Object.SetBreadcrumbs.Request) + - [Rpc.Object.SetBreadcrumbs.Response](#anytype.Rpc.Object.SetBreadcrumbs.Response) + - [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error) + - [Rpc.Object.SetDetails](#anytype.Rpc.Object.SetDetails) + - [Rpc.Object.SetDetails.Detail](#anytype.Rpc.Object.SetDetails.Detail) + - [Rpc.Object.SetDetails.Request](#anytype.Rpc.Object.SetDetails.Request) + - [Rpc.Object.SetDetails.Response](#anytype.Rpc.Object.SetDetails.Response) + - [Rpc.Object.SetDetails.Response.Error](#anytype.Rpc.Object.SetDetails.Response.Error) + - [Rpc.Object.SetInternalFlags](#anytype.Rpc.Object.SetInternalFlags) + - [Rpc.Object.SetInternalFlags.Request](#anytype.Rpc.Object.SetInternalFlags.Request) + - [Rpc.Object.SetInternalFlags.Response](#anytype.Rpc.Object.SetInternalFlags.Response) + - [Rpc.Object.SetInternalFlags.Response.Error](#anytype.Rpc.Object.SetInternalFlags.Response.Error) + - [Rpc.Object.SetIsArchived](#anytype.Rpc.Object.SetIsArchived) + - [Rpc.Object.SetIsArchived.Request](#anytype.Rpc.Object.SetIsArchived.Request) + - [Rpc.Object.SetIsArchived.Response](#anytype.Rpc.Object.SetIsArchived.Response) + - [Rpc.Object.SetIsArchived.Response.Error](#anytype.Rpc.Object.SetIsArchived.Response.Error) + - [Rpc.Object.SetIsFavorite](#anytype.Rpc.Object.SetIsFavorite) + - [Rpc.Object.SetIsFavorite.Request](#anytype.Rpc.Object.SetIsFavorite.Request) + - [Rpc.Object.SetIsFavorite.Response](#anytype.Rpc.Object.SetIsFavorite.Response) + - [Rpc.Object.SetIsFavorite.Response.Error](#anytype.Rpc.Object.SetIsFavorite.Response.Error) + - [Rpc.Object.SetLayout](#anytype.Rpc.Object.SetLayout) + - [Rpc.Object.SetLayout.Request](#anytype.Rpc.Object.SetLayout.Request) + - [Rpc.Object.SetLayout.Response](#anytype.Rpc.Object.SetLayout.Response) + - [Rpc.Object.SetLayout.Response.Error](#anytype.Rpc.Object.SetLayout.Response.Error) + - [Rpc.Object.SetObjectType](#anytype.Rpc.Object.SetObjectType) + - [Rpc.Object.SetObjectType.Request](#anytype.Rpc.Object.SetObjectType.Request) + - [Rpc.Object.SetObjectType.Response](#anytype.Rpc.Object.SetObjectType.Response) + - [Rpc.Object.SetObjectType.Response.Error](#anytype.Rpc.Object.SetObjectType.Response.Error) + - [Rpc.Object.SetSource](#anytype.Rpc.Object.SetSource) + - [Rpc.Object.SetSource.Request](#anytype.Rpc.Object.SetSource.Request) + - [Rpc.Object.SetSource.Response](#anytype.Rpc.Object.SetSource.Response) + - [Rpc.Object.SetSource.Response.Error](#anytype.Rpc.Object.SetSource.Response.Error) + - [Rpc.Object.ShareByLink](#anytype.Rpc.Object.ShareByLink) + - [Rpc.Object.ShareByLink.Request](#anytype.Rpc.Object.ShareByLink.Request) + - [Rpc.Object.ShareByLink.Response](#anytype.Rpc.Object.ShareByLink.Response) + - [Rpc.Object.ShareByLink.Response.Error](#anytype.Rpc.Object.ShareByLink.Response.Error) + - [Rpc.Object.Show](#anytype.Rpc.Object.Show) + - [Rpc.Object.Show.Request](#anytype.Rpc.Object.Show.Request) + - [Rpc.Object.Show.Response](#anytype.Rpc.Object.Show.Response) + - [Rpc.Object.Show.Response.Error](#anytype.Rpc.Object.Show.Response.Error) + - [Rpc.Object.SubscribeIds](#anytype.Rpc.Object.SubscribeIds) + - [Rpc.Object.SubscribeIds.Request](#anytype.Rpc.Object.SubscribeIds.Request) + - [Rpc.Object.SubscribeIds.Response](#anytype.Rpc.Object.SubscribeIds.Response) + - [Rpc.Object.SubscribeIds.Response.Error](#anytype.Rpc.Object.SubscribeIds.Response.Error) + - [Rpc.Object.ToBookmark](#anytype.Rpc.Object.ToBookmark) + - [Rpc.Object.ToBookmark.Request](#anytype.Rpc.Object.ToBookmark.Request) + - [Rpc.Object.ToBookmark.Response](#anytype.Rpc.Object.ToBookmark.Response) + - [Rpc.Object.ToBookmark.Response.Error](#anytype.Rpc.Object.ToBookmark.Response.Error) + - [Rpc.Object.ToCollection](#anytype.Rpc.Object.ToCollection) + - [Rpc.Object.ToCollection.Request](#anytype.Rpc.Object.ToCollection.Request) + - [Rpc.Object.ToCollection.Response](#anytype.Rpc.Object.ToCollection.Response) + - [Rpc.Object.ToCollection.Response.Error](#anytype.Rpc.Object.ToCollection.Response.Error) + - [Rpc.Object.ToSet](#anytype.Rpc.Object.ToSet) + - [Rpc.Object.ToSet.Request](#anytype.Rpc.Object.ToSet.Request) + - [Rpc.Object.ToSet.Response](#anytype.Rpc.Object.ToSet.Response) + - [Rpc.Object.ToSet.Response.Error](#anytype.Rpc.Object.ToSet.Response.Error) + - [Rpc.Object.Undo](#anytype.Rpc.Object.Undo) + - [Rpc.Object.Undo.Request](#anytype.Rpc.Object.Undo.Request) + - [Rpc.Object.Undo.Response](#anytype.Rpc.Object.Undo.Response) + - [Rpc.Object.Undo.Response.Error](#anytype.Rpc.Object.Undo.Response.Error) + - [Rpc.Object.UndoRedoCounter](#anytype.Rpc.Object.UndoRedoCounter) + - [Rpc.Object.WorkspaceSetDashboard](#anytype.Rpc.Object.WorkspaceSetDashboard) + - [Rpc.Object.WorkspaceSetDashboard.Request](#anytype.Rpc.Object.WorkspaceSetDashboard.Request) + - [Rpc.Object.WorkspaceSetDashboard.Response](#anytype.Rpc.Object.WorkspaceSetDashboard.Response) + - [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error) + - [Rpc.ObjectCollection](#anytype.Rpc.ObjectCollection) + - [Rpc.ObjectCollection.Add](#anytype.Rpc.ObjectCollection.Add) + - [Rpc.ObjectCollection.Add.Request](#anytype.Rpc.ObjectCollection.Add.Request) + - [Rpc.ObjectCollection.Add.Response](#anytype.Rpc.ObjectCollection.Add.Response) + - [Rpc.ObjectCollection.Add.Response.Error](#anytype.Rpc.ObjectCollection.Add.Response.Error) + - [Rpc.ObjectCollection.Remove](#anytype.Rpc.ObjectCollection.Remove) + - [Rpc.ObjectCollection.Remove.Request](#anytype.Rpc.ObjectCollection.Remove.Request) + - [Rpc.ObjectCollection.Remove.Response](#anytype.Rpc.ObjectCollection.Remove.Response) + - [Rpc.ObjectCollection.Remove.Response.Error](#anytype.Rpc.ObjectCollection.Remove.Response.Error) + - [Rpc.ObjectCollection.Sort](#anytype.Rpc.ObjectCollection.Sort) + - [Rpc.ObjectCollection.Sort.Request](#anytype.Rpc.ObjectCollection.Sort.Request) + - [Rpc.ObjectCollection.Sort.Response](#anytype.Rpc.ObjectCollection.Sort.Response) + - [Rpc.ObjectCollection.Sort.Response.Error](#anytype.Rpc.ObjectCollection.Sort.Response.Error) + - [Rpc.ObjectRelation](#anytype.Rpc.ObjectRelation) + - [Rpc.ObjectRelation.Add](#anytype.Rpc.ObjectRelation.Add) + - [Rpc.ObjectRelation.Add.Request](#anytype.Rpc.ObjectRelation.Add.Request) + - [Rpc.ObjectRelation.Add.Response](#anytype.Rpc.ObjectRelation.Add.Response) + - [Rpc.ObjectRelation.Add.Response.Error](#anytype.Rpc.ObjectRelation.Add.Response.Error) + - [Rpc.ObjectRelation.AddFeatured](#anytype.Rpc.ObjectRelation.AddFeatured) + - [Rpc.ObjectRelation.AddFeatured.Request](#anytype.Rpc.ObjectRelation.AddFeatured.Request) + - [Rpc.ObjectRelation.AddFeatured.Response](#anytype.Rpc.ObjectRelation.AddFeatured.Response) + - [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error) + - [Rpc.ObjectRelation.Delete](#anytype.Rpc.ObjectRelation.Delete) + - [Rpc.ObjectRelation.Delete.Request](#anytype.Rpc.ObjectRelation.Delete.Request) + - [Rpc.ObjectRelation.Delete.Response](#anytype.Rpc.ObjectRelation.Delete.Response) + - [Rpc.ObjectRelation.Delete.Response.Error](#anytype.Rpc.ObjectRelation.Delete.Response.Error) + - [Rpc.ObjectRelation.ListAvailable](#anytype.Rpc.ObjectRelation.ListAvailable) + - [Rpc.ObjectRelation.ListAvailable.Request](#anytype.Rpc.ObjectRelation.ListAvailable.Request) + - [Rpc.ObjectRelation.ListAvailable.Response](#anytype.Rpc.ObjectRelation.ListAvailable.Response) + - [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error) + - [Rpc.ObjectRelation.RemoveFeatured](#anytype.Rpc.ObjectRelation.RemoveFeatured) + - [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype.Rpc.ObjectRelation.RemoveFeatured.Request) + - [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response) + - [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error) + - [Rpc.ObjectType](#anytype.Rpc.ObjectType) + - [Rpc.ObjectType.Relation](#anytype.Rpc.ObjectType.Relation) + - [Rpc.ObjectType.Relation.Add](#anytype.Rpc.ObjectType.Relation.Add) + - [Rpc.ObjectType.Relation.Add.Request](#anytype.Rpc.ObjectType.Relation.Add.Request) + - [Rpc.ObjectType.Relation.Add.Response](#anytype.Rpc.ObjectType.Relation.Add.Response) + - [Rpc.ObjectType.Relation.Add.Response.Error](#anytype.Rpc.ObjectType.Relation.Add.Response.Error) + - [Rpc.ObjectType.Relation.List](#anytype.Rpc.ObjectType.Relation.List) + - [Rpc.ObjectType.Relation.List.Request](#anytype.Rpc.ObjectType.Relation.List.Request) + - [Rpc.ObjectType.Relation.List.Response](#anytype.Rpc.ObjectType.Relation.List.Response) + - [Rpc.ObjectType.Relation.List.Response.Error](#anytype.Rpc.ObjectType.Relation.List.Response.Error) + - [Rpc.ObjectType.Relation.Remove](#anytype.Rpc.ObjectType.Relation.Remove) + - [Rpc.ObjectType.Relation.Remove.Request](#anytype.Rpc.ObjectType.Relation.Remove.Request) + - [Rpc.ObjectType.Relation.Remove.Response](#anytype.Rpc.ObjectType.Relation.Remove.Response) + - [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error) + - [Rpc.Process](#anytype.Rpc.Process) + - [Rpc.Process.Cancel](#anytype.Rpc.Process.Cancel) + - [Rpc.Process.Cancel.Request](#anytype.Rpc.Process.Cancel.Request) + - [Rpc.Process.Cancel.Response](#anytype.Rpc.Process.Cancel.Response) + - [Rpc.Process.Cancel.Response.Error](#anytype.Rpc.Process.Cancel.Response.Error) + - [Rpc.Relation](#anytype.Rpc.Relation) + - [Rpc.Relation.ListRemoveOption](#anytype.Rpc.Relation.ListRemoveOption) + - [Rpc.Relation.ListRemoveOption.Request](#anytype.Rpc.Relation.ListRemoveOption.Request) + - [Rpc.Relation.ListRemoveOption.Response](#anytype.Rpc.Relation.ListRemoveOption.Response) + - [Rpc.Relation.ListRemoveOption.Response.Error](#anytype.Rpc.Relation.ListRemoveOption.Response.Error) + - [Rpc.Relation.Options](#anytype.Rpc.Relation.Options) + - [Rpc.Relation.Options.Request](#anytype.Rpc.Relation.Options.Request) + - [Rpc.Relation.Options.Response](#anytype.Rpc.Relation.Options.Response) + - [Rpc.Relation.Options.Response.Error](#anytype.Rpc.Relation.Options.Response.Error) + - [Rpc.Template](#anytype.Rpc.Template) + - [Rpc.Template.Clone](#anytype.Rpc.Template.Clone) + - [Rpc.Template.Clone.Request](#anytype.Rpc.Template.Clone.Request) + - [Rpc.Template.Clone.Response](#anytype.Rpc.Template.Clone.Response) + - [Rpc.Template.Clone.Response.Error](#anytype.Rpc.Template.Clone.Response.Error) + - [Rpc.Template.CreateFromObject](#anytype.Rpc.Template.CreateFromObject) + - [Rpc.Template.CreateFromObject.Request](#anytype.Rpc.Template.CreateFromObject.Request) + - [Rpc.Template.CreateFromObject.Response](#anytype.Rpc.Template.CreateFromObject.Response) + - [Rpc.Template.CreateFromObject.Response.Error](#anytype.Rpc.Template.CreateFromObject.Response.Error) + - [Rpc.Template.CreateFromObjectType](#anytype.Rpc.Template.CreateFromObjectType) + - [Rpc.Template.CreateFromObjectType.Request](#anytype.Rpc.Template.CreateFromObjectType.Request) + - [Rpc.Template.CreateFromObjectType.Response](#anytype.Rpc.Template.CreateFromObjectType.Response) + - [Rpc.Template.CreateFromObjectType.Response.Error](#anytype.Rpc.Template.CreateFromObjectType.Response.Error) + - [Rpc.Template.ExportAll](#anytype.Rpc.Template.ExportAll) + - [Rpc.Template.ExportAll.Request](#anytype.Rpc.Template.ExportAll.Request) + - [Rpc.Template.ExportAll.Response](#anytype.Rpc.Template.ExportAll.Response) + - [Rpc.Template.ExportAll.Response.Error](#anytype.Rpc.Template.ExportAll.Response.Error) + - [Rpc.Unsplash](#anytype.Rpc.Unsplash) + - [Rpc.Unsplash.Download](#anytype.Rpc.Unsplash.Download) + - [Rpc.Unsplash.Download.Request](#anytype.Rpc.Unsplash.Download.Request) + - [Rpc.Unsplash.Download.Response](#anytype.Rpc.Unsplash.Download.Response) + - [Rpc.Unsplash.Download.Response.Error](#anytype.Rpc.Unsplash.Download.Response.Error) + - [Rpc.Unsplash.Search](#anytype.Rpc.Unsplash.Search) + - [Rpc.Unsplash.Search.Request](#anytype.Rpc.Unsplash.Search.Request) + - [Rpc.Unsplash.Search.Response](#anytype.Rpc.Unsplash.Search.Response) + - [Rpc.Unsplash.Search.Response.Error](#anytype.Rpc.Unsplash.Search.Response.Error) + - [Rpc.Unsplash.Search.Response.Picture](#anytype.Rpc.Unsplash.Search.Response.Picture) + - [Rpc.UserData](#anytype.Rpc.UserData) + - [Rpc.UserData.Dump](#anytype.Rpc.UserData.Dump) + - [Rpc.UserData.Dump.Request](#anytype.Rpc.UserData.Dump.Request) + - [Rpc.UserData.Dump.Response](#anytype.Rpc.UserData.Dump.Response) + - [Rpc.UserData.Dump.Response.Error](#anytype.Rpc.UserData.Dump.Response.Error) + - [Rpc.Wallet](#anytype.Rpc.Wallet) + - [Rpc.Wallet.CloseSession](#anytype.Rpc.Wallet.CloseSession) + - [Rpc.Wallet.CloseSession.Request](#anytype.Rpc.Wallet.CloseSession.Request) + - [Rpc.Wallet.CloseSession.Response](#anytype.Rpc.Wallet.CloseSession.Response) + - [Rpc.Wallet.CloseSession.Response.Error](#anytype.Rpc.Wallet.CloseSession.Response.Error) + - [Rpc.Wallet.Convert](#anytype.Rpc.Wallet.Convert) + - [Rpc.Wallet.Convert.Request](#anytype.Rpc.Wallet.Convert.Request) + - [Rpc.Wallet.Convert.Response](#anytype.Rpc.Wallet.Convert.Response) + - [Rpc.Wallet.Convert.Response.Error](#anytype.Rpc.Wallet.Convert.Response.Error) + - [Rpc.Wallet.Create](#anytype.Rpc.Wallet.Create) + - [Rpc.Wallet.Create.Request](#anytype.Rpc.Wallet.Create.Request) + - [Rpc.Wallet.Create.Response](#anytype.Rpc.Wallet.Create.Response) + - [Rpc.Wallet.Create.Response.Error](#anytype.Rpc.Wallet.Create.Response.Error) + - [Rpc.Wallet.CreateSession](#anytype.Rpc.Wallet.CreateSession) + - [Rpc.Wallet.CreateSession.Request](#anytype.Rpc.Wallet.CreateSession.Request) + - [Rpc.Wallet.CreateSession.Response](#anytype.Rpc.Wallet.CreateSession.Response) + - [Rpc.Wallet.CreateSession.Response.Error](#anytype.Rpc.Wallet.CreateSession.Response.Error) + - [Rpc.Wallet.Recover](#anytype.Rpc.Wallet.Recover) + - [Rpc.Wallet.Recover.Request](#anytype.Rpc.Wallet.Recover.Request) + - [Rpc.Wallet.Recover.Response](#anytype.Rpc.Wallet.Recover.Response) + - [Rpc.Wallet.Recover.Response.Error](#anytype.Rpc.Wallet.Recover.Response.Error) + - [Rpc.Workspace](#anytype.Rpc.Workspace) + - [Rpc.Workspace.Create](#anytype.Rpc.Workspace.Create) + - [Rpc.Workspace.Create.Request](#anytype.Rpc.Workspace.Create.Request) + - [Rpc.Workspace.Create.Response](#anytype.Rpc.Workspace.Create.Response) + - [Rpc.Workspace.Create.Response.Error](#anytype.Rpc.Workspace.Create.Response.Error) + - [Rpc.Workspace.Export](#anytype.Rpc.Workspace.Export) + - [Rpc.Workspace.Export.Request](#anytype.Rpc.Workspace.Export.Request) + - [Rpc.Workspace.Export.Response](#anytype.Rpc.Workspace.Export.Response) + - [Rpc.Workspace.Export.Response.Error](#anytype.Rpc.Workspace.Export.Response.Error) + - [Rpc.Workspace.GetAll](#anytype.Rpc.Workspace.GetAll) + - [Rpc.Workspace.GetAll.Request](#anytype.Rpc.Workspace.GetAll.Request) + - [Rpc.Workspace.GetAll.Response](#anytype.Rpc.Workspace.GetAll.Response) + - [Rpc.Workspace.GetAll.Response.Error](#anytype.Rpc.Workspace.GetAll.Response.Error) + - [Rpc.Workspace.GetCurrent](#anytype.Rpc.Workspace.GetCurrent) + - [Rpc.Workspace.GetCurrent.Request](#anytype.Rpc.Workspace.GetCurrent.Request) + - [Rpc.Workspace.GetCurrent.Response](#anytype.Rpc.Workspace.GetCurrent.Response) + - [Rpc.Workspace.GetCurrent.Response.Error](#anytype.Rpc.Workspace.GetCurrent.Response.Error) + - [Rpc.Workspace.Object](#anytype.Rpc.Workspace.Object) + - [Rpc.Workspace.Object.Add](#anytype.Rpc.Workspace.Object.Add) + - [Rpc.Workspace.Object.Add.Request](#anytype.Rpc.Workspace.Object.Add.Request) + - [Rpc.Workspace.Object.Add.Response](#anytype.Rpc.Workspace.Object.Add.Response) + - [Rpc.Workspace.Object.Add.Response.Error](#anytype.Rpc.Workspace.Object.Add.Response.Error) + - [Rpc.Workspace.Object.ListAdd](#anytype.Rpc.Workspace.Object.ListAdd) + - [Rpc.Workspace.Object.ListAdd.Request](#anytype.Rpc.Workspace.Object.ListAdd.Request) + - [Rpc.Workspace.Object.ListAdd.Response](#anytype.Rpc.Workspace.Object.ListAdd.Response) + - [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error) + - [Rpc.Workspace.Object.ListRemove](#anytype.Rpc.Workspace.Object.ListRemove) + - [Rpc.Workspace.Object.ListRemove.Request](#anytype.Rpc.Workspace.Object.ListRemove.Request) + - [Rpc.Workspace.Object.ListRemove.Response](#anytype.Rpc.Workspace.Object.ListRemove.Response) + - [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error) + - [Rpc.Workspace.Select](#anytype.Rpc.Workspace.Select) + - [Rpc.Workspace.Select.Request](#anytype.Rpc.Workspace.Select.Request) + - [Rpc.Workspace.Select.Response](#anytype.Rpc.Workspace.Select.Response) + - [Rpc.Workspace.Select.Response.Error](#anytype.Rpc.Workspace.Select.Response.Error) + - [Rpc.Workspace.SetIsHighlighted](#anytype.Rpc.Workspace.SetIsHighlighted) + - [Rpc.Workspace.SetIsHighlighted.Request](#anytype.Rpc.Workspace.SetIsHighlighted.Request) + - [Rpc.Workspace.SetIsHighlighted.Response](#anytype.Rpc.Workspace.SetIsHighlighted.Response) + - [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error) + - [StreamRequest](#anytype.StreamRequest) - - [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype-Rpc-Account-ConfigUpdate-Response-Error-Code) - - [Rpc.Account.ConfigUpdate.Timezones](#anytype-Rpc-Account-ConfigUpdate-Timezones) - - [Rpc.Account.Create.Response.Error.Code](#anytype-Rpc-Account-Create-Response-Error-Code) - - [Rpc.Account.Delete.Response.Error.Code](#anytype-Rpc-Account-Delete-Response-Error-Code) - - [Rpc.Account.Move.Response.Error.Code](#anytype-Rpc-Account-Move-Response-Error-Code) - - [Rpc.Account.Recover.Response.Error.Code](#anytype-Rpc-Account-Recover-Response-Error-Code) - - [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error-Code) - - [Rpc.Account.Select.Response.Error.Code](#anytype-Rpc-Account-Select-Response-Error-Code) - - [Rpc.Account.Stop.Response.Error.Code](#anytype-Rpc-Account-Stop-Response-Error-Code) - - [Rpc.App.GetVersion.Response.Error.Code](#anytype-Rpc-App-GetVersion-Response-Error-Code) - - [Rpc.App.SetDeviceState.Request.DeviceState](#anytype-Rpc-App-SetDeviceState-Request-DeviceState) - - [Rpc.App.SetDeviceState.Response.Error.Code](#anytype-Rpc-App-SetDeviceState-Response-Error-Code) - - [Rpc.App.Shutdown.Response.Error.Code](#anytype-Rpc-App-Shutdown-Response-Error-Code) - - [Rpc.Block.Copy.Response.Error.Code](#anytype-Rpc-Block-Copy-Response-Error-Code) - - [Rpc.Block.Create.Response.Error.Code](#anytype-Rpc-Block-Create-Response-Error-Code) - - [Rpc.Block.CreateWidget.Response.Error.Code](#anytype-Rpc-Block-CreateWidget-Response-Error-Code) - - [Rpc.Block.Cut.Response.Error.Code](#anytype-Rpc-Block-Cut-Response-Error-Code) - - [Rpc.Block.Download.Response.Error.Code](#anytype-Rpc-Block-Download-Response-Error-Code) - - [Rpc.Block.Export.Response.Error.Code](#anytype-Rpc-Block-Export-Response-Error-Code) - - [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype-Rpc-Block-ListConvertToObjects-Response-Error-Code) - - [Rpc.Block.ListDelete.Response.Error.Code](#anytype-Rpc-Block-ListDelete-Response-Error-Code) - - [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype-Rpc-Block-ListDuplicate-Response-Error-Code) - - [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error-Code) - - [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error-Code) - - [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetAlign-Response-Error-Code) - - [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error-Code) - - [Rpc.Block.ListSetFields.Response.Error.Code](#anytype-Rpc-Block-ListSetFields-Response-Error-Code) - - [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error-Code) - - [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype-Rpc-Block-ListTurnInto-Response-Error-Code) - - [Rpc.Block.Merge.Response.Error.Code](#anytype-Rpc-Block-Merge-Response-Error-Code) - - [Rpc.Block.Paste.Response.Error.Code](#anytype-Rpc-Block-Paste-Response-Error-Code) - - [Rpc.Block.Replace.Response.Error.Code](#anytype-Rpc-Block-Replace-Response-Error-Code) - - [Rpc.Block.SetFields.Response.Error.Code](#anytype-Rpc-Block-SetFields-Response-Error-Code) - - [Rpc.Block.Split.Request.Mode](#anytype-Rpc-Block-Split-Request-Mode) - - [Rpc.Block.Split.Response.Error.Code](#anytype-Rpc-Block-Split-Response-Error-Code) - - [Rpc.Block.Upload.Response.Error.Code](#anytype-Rpc-Block-Upload-Response-Error-Code) - - [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error-Code) - - [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-Fetch-Response-Error-Code) - - [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error-Code) - - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error-Code) - - [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error-Code) - - [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error-Code) - - [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error-Code) - - [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error-Code) - - [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error-Code) - - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error-Code) - - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error-Code) - - [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error-Code) - - [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error-Code) - - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error-Code) - - [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype-Rpc-BlockDataview-SetSource-Response-Error-Code) - - [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error-Code) - - [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error-Code) - - [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error-Code) - - [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error-Code) - - [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Create-Response-Error-Code) - - [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Delete-Response-Error-Code) - - [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error-Code) - - [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error-Code) - - [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Update-Response-Error-Code) - - [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error-Code) - - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error-Code) - - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error-Code) - - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error-Code) - - [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error-Code) - - [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error-Code) - - [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error-Code) - - [Rpc.BlockFile.SetName.Response.Error.Code](#anytype-Rpc-BlockFile-SetName-Response-Error-Code) - - [Rpc.BlockImage.SetName.Response.Error.Code](#anytype-Rpc-BlockImage-SetName-Response-Error-Code) - - [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype-Rpc-BlockImage-SetWidth-Response-Error-Code) - - [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype-Rpc-BlockLatex-SetText-Response-Error-Code) - - [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error-Code) - - [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error-Code) - - [Rpc.BlockRelation.Add.Response.Error.Code](#anytype-Rpc-BlockRelation-Add-Response-Error-Code) - - [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype-Rpc-BlockRelation-SetKey-Response-Error-Code) - - [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error-Code) - - [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error-Code) - - [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error-Code) - - [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error-Code) - - [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnMove-Response-Error-Code) - - [Rpc.BlockTable.Create.Response.Error.Code](#anytype-Rpc-BlockTable-Create-Response-Error-Code) - - [Rpc.BlockTable.Expand.Response.Error.Code](#anytype-Rpc-BlockTable-Expand-Response-Error-Code) - - [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype-Rpc-BlockTable-RowCreate-Response-Error-Code) - - [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype-Rpc-BlockTable-RowDelete-Response-Error-Code) - - [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error-Code) - - [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype-Rpc-BlockTable-RowListClean-Response-Error-Code) - - [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype-Rpc-BlockTable-RowListFill-Response-Error-Code) - - [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error-Code) - - [Rpc.BlockTable.Sort.Response.Error.Code](#anytype-Rpc-BlockTable-Sort-Response-Error-Code) - - [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype-Rpc-BlockText-ListClearContent-Response-Error-Code) - - [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListClearStyle-Response-Error-Code) - - [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype-Rpc-BlockText-ListSetColor-Response-Error-Code) - - [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype-Rpc-BlockText-ListSetMark-Response-Error-Code) - - [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListSetStyle-Response-Error-Code) - - [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype-Rpc-BlockText-SetChecked-Response-Error-Code) - - [Rpc.BlockText.SetColor.Response.Error.Code](#anytype-Rpc-BlockText-SetColor-Response-Error-Code) - - [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype-Rpc-BlockText-SetIcon-Response-Error-Code) - - [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error-Code) - - [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype-Rpc-BlockText-SetStyle-Response-Error-Code) - - [Rpc.BlockText.SetText.Response.Error.Code](#anytype-Rpc-BlockText-SetText-Response-Error-Code) - - [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype-Rpc-BlockVideo-SetName-Response-Error-Code) - - [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype-Rpc-BlockVideo-SetWidth-Response-Error-Code) - - [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype-Rpc-Debug-ExportLocalstore-Response-Error-Code) - - [Rpc.Debug.Ping.Response.Error.Code](#anytype-Rpc-Debug-Ping-Response-Error-Code) - - [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype-Rpc-Debug-SpaceSummary-Response-Error-Code) - - [Rpc.Debug.Tree.Response.Error.Code](#anytype-Rpc-Debug-Tree-Response-Error-Code) - - [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype-Rpc-Debug-TreeHeads-Response-Error-Code) - - [Rpc.File.Download.Response.Error.Code](#anytype-Rpc-File-Download-Response-Error-Code) - - [Rpc.File.Drop.Response.Error.Code](#anytype-Rpc-File-Drop-Response-Error-Code) - - [Rpc.File.ListOffload.Response.Error.Code](#anytype-Rpc-File-ListOffload-Response-Error-Code) - - [Rpc.File.Offload.Response.Error.Code](#anytype-Rpc-File-Offload-Response-Error-Code) - - [Rpc.File.SpaceUsage.Response.Error.Code](#anytype-Rpc-File-SpaceUsage-Response-Error-Code) - - [Rpc.File.Upload.Response.Error.Code](#anytype-Rpc-File-Upload-Response-Error-Code) - - [Rpc.GenericErrorResponse.Error.Code](#anytype-Rpc-GenericErrorResponse-Error-Code) - - [Rpc.History.GetVersions.Response.Error.Code](#anytype-Rpc-History-GetVersions-Response-Error-Code) - - [Rpc.History.SetVersion.Response.Error.Code](#anytype-Rpc-History-SetVersion-Response-Error-Code) - - [Rpc.History.ShowVersion.Response.Error.Code](#anytype-Rpc-History-ShowVersion-Response-Error-Code) - - [Rpc.LinkPreview.Response.Error.Code](#anytype-Rpc-LinkPreview-Response-Error-Code) - - [Rpc.Log.Send.Request.Level](#anytype-Rpc-Log-Send-Request-Level) - - [Rpc.Log.Send.Response.Error.Code](#anytype-Rpc-Log-Send-Response-Error-Code) - - [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype-Rpc-Metrics-SetParameters-Response-Error-Code) - - [Rpc.Navigation.Context](#anytype-Rpc-Navigation-Context) - - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error-Code) - - [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype-Rpc-Navigation-ListObjects-Response-Error-Code) - - [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype-Rpc-Object-ApplyTemplate-Response-Error-Code) - - [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype-Rpc-Object-BookmarkFetch-Response-Error-Code) - - [Rpc.Object.Close.Response.Error.Code](#anytype-Rpc-Object-Close-Response-Error-Code) - - [Rpc.Object.Create.Response.Error.Code](#anytype-Rpc-Object-Create-Response-Error-Code) - - [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype-Rpc-Object-CreateBookmark-Response-Error-Code) - - [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype-Rpc-Object-CreateObjectType-Response-Error-Code) - - [Rpc.Object.CreateRelation.Response.Error.Code](#anytype-Rpc-Object-CreateRelation-Response-Error-Code) - - [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype-Rpc-Object-CreateRelationOption-Response-Error-Code) - - [Rpc.Object.CreateSet.Response.Error.Code](#anytype-Rpc-Object-CreateSet-Response-Error-Code) - - [Rpc.Object.Duplicate.Response.Error.Code](#anytype-Rpc-Object-Duplicate-Response-Error-Code) - - [Rpc.Object.Graph.Edge.Type](#anytype-Rpc-Object-Graph-Edge-Type) - - [Rpc.Object.Graph.Response.Error.Code](#anytype-Rpc-Object-Graph-Response-Error-Code) - - [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype-Rpc-Object-GroupsSubscribe-Response-Error-Code) - - [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error-Code) - - [Rpc.Object.Import.Request.CsvParams.Mode](#anytype-Rpc-Object-Import-Request-CsvParams-Mode) - - [Rpc.Object.Import.Request.Mode](#anytype-Rpc-Object-Import-Request-Mode) - - [Rpc.Object.Import.Request.Type](#anytype-Rpc-Object-Import-Request-Type) - - [Rpc.Object.Import.Response.Error.Code](#anytype-Rpc-Object-Import-Response-Error-Code) - - [Rpc.Object.ImportList.ImportResponse.Type](#anytype-Rpc-Object-ImportList-ImportResponse-Type) - - [Rpc.Object.ImportList.Response.Error.Code](#anytype-Rpc-Object-ImportList-Response-Error-Code) - - [Rpc.Object.ListDelete.Response.Error.Code](#anytype-Rpc-Object-ListDelete-Response-Error-Code) - - [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype-Rpc-Object-ListDuplicate-Response-Error-Code) - - [Rpc.Object.ListExport.Format](#anytype-Rpc-Object-ListExport-Format) - - [Rpc.Object.ListExport.Response.Error.Code](#anytype-Rpc-Object-ListExport-Response-Error-Code) - - [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype-Rpc-Object-ListSetIsArchived-Response-Error-Code) - - [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error-Code) - - [Rpc.Object.Open.Response.Error.Code](#anytype-Rpc-Object-Open-Response-Error-Code) - - [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error-Code) - - [Rpc.Object.Redo.Response.Error.Code](#anytype-Rpc-Object-Redo-Response-Error-Code) - - [Rpc.Object.Search.Response.Error.Code](#anytype-Rpc-Object-Search-Response-Error-Code) - - [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchSubscribe-Response-Error-Code) - - [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error-Code) - - [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error-Code) - - [Rpc.Object.SetDetails.Response.Error.Code](#anytype-Rpc-Object-SetDetails-Response-Error-Code) - - [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype-Rpc-Object-SetInternalFlags-Response-Error-Code) - - [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype-Rpc-Object-SetIsArchived-Response-Error-Code) - - [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-SetIsFavorite-Response-Error-Code) - - [Rpc.Object.SetLayout.Response.Error.Code](#anytype-Rpc-Object-SetLayout-Response-Error-Code) - - [Rpc.Object.SetObjectType.Response.Error.Code](#anytype-Rpc-Object-SetObjectType-Response-Error-Code) - - [Rpc.Object.SetSource.Response.Error.Code](#anytype-Rpc-Object-SetSource-Response-Error-Code) - - [Rpc.Object.ShareByLink.Response.Error.Code](#anytype-Rpc-Object-ShareByLink-Response-Error-Code) - - [Rpc.Object.Show.Response.Error.Code](#anytype-Rpc-Object-Show-Response-Error-Code) - - [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype-Rpc-Object-SubscribeIds-Response-Error-Code) - - [Rpc.Object.ToBookmark.Response.Error.Code](#anytype-Rpc-Object-ToBookmark-Response-Error-Code) - - [Rpc.Object.ToCollection.Response.Error.Code](#anytype-Rpc-Object-ToCollection-Response-Error-Code) - - [Rpc.Object.ToSet.Response.Error.Code](#anytype-Rpc-Object-ToSet-Response-Error-Code) - - [Rpc.Object.Undo.Response.Error.Code](#anytype-Rpc-Object-Undo-Response-Error-Code) - - [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error-Code) - - [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype-Rpc-ObjectCollection-Add-Response-Error-Code) - - [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype-Rpc-ObjectCollection-Remove-Response-Error-Code) - - [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype-Rpc-ObjectCollection-Sort-Response-Error-Code) - - [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype-Rpc-ObjectRelation-Add-Response-Error-Code) - - [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error-Code) - - [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype-Rpc-ObjectRelation-Delete-Response-Error-Code) - - [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error-Code) - - [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error-Code) - - [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Add-Response-Error-Code) - - [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-List-Response-Error-Code) - - [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error-Code) - - [Rpc.Process.Cancel.Response.Error.Code](#anytype-Rpc-Process-Cancel-Response-Error-Code) - - [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype-Rpc-Relation-ListRemoveOption-Response-Error-Code) - - [Rpc.Relation.Options.Response.Error.Code](#anytype-Rpc-Relation-Options-Response-Error-Code) - - [Rpc.Template.Clone.Response.Error.Code](#anytype-Rpc-Template-Clone-Response-Error-Code) - - [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype-Rpc-Template-CreateFromObject-Response-Error-Code) - - [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype-Rpc-Template-CreateFromObjectType-Response-Error-Code) - - [Rpc.Template.ExportAll.Response.Error.Code](#anytype-Rpc-Template-ExportAll-Response-Error-Code) - - [Rpc.Unsplash.Download.Response.Error.Code](#anytype-Rpc-Unsplash-Download-Response-Error-Code) - - [Rpc.Unsplash.Search.Response.Error.Code](#anytype-Rpc-Unsplash-Search-Response-Error-Code) - - [Rpc.UserData.Dump.Response.Error.Code](#anytype-Rpc-UserData-Dump-Response-Error-Code) - - [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype-Rpc-Wallet-CloseSession-Response-Error-Code) - - [Rpc.Wallet.Convert.Response.Error.Code](#anytype-Rpc-Wallet-Convert-Response-Error-Code) - - [Rpc.Wallet.Create.Response.Error.Code](#anytype-Rpc-Wallet-Create-Response-Error-Code) - - [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype-Rpc-Wallet-CreateSession-Response-Error-Code) - - [Rpc.Wallet.Recover.Response.Error.Code](#anytype-Rpc-Wallet-Recover-Response-Error-Code) - - [Rpc.Workspace.Create.Response.Error.Code](#anytype-Rpc-Workspace-Create-Response-Error-Code) - - [Rpc.Workspace.Export.Response.Error.Code](#anytype-Rpc-Workspace-Export-Response-Error-Code) - - [Rpc.Workspace.GetAll.Response.Error.Code](#anytype-Rpc-Workspace-GetAll-Response-Error-Code) - - [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype-Rpc-Workspace-GetCurrent-Response-Error-Code) - - [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype-Rpc-Workspace-Object-Add-Response-Error-Code) - - [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error-Code) - - [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error-Code) - - [Rpc.Workspace.Select.Response.Error.Code](#anytype-Rpc-Workspace-Select-Response-Error-Code) - - [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error-Code) + - [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype.Rpc.Account.ConfigUpdate.Response.Error.Code) + - [Rpc.Account.ConfigUpdate.Timezones](#anytype.Rpc.Account.ConfigUpdate.Timezones) + - [Rpc.Account.Create.Response.Error.Code](#anytype.Rpc.Account.Create.Response.Error.Code) + - [Rpc.Account.Delete.Response.Error.Code](#anytype.Rpc.Account.Delete.Response.Error.Code) + - [Rpc.Account.Move.Response.Error.Code](#anytype.Rpc.Account.Move.Response.Error.Code) + - [Rpc.Account.Recover.Response.Error.Code](#anytype.Rpc.Account.Recover.Response.Error.Code) + - [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error.Code) + - [Rpc.Account.Select.Response.Error.Code](#anytype.Rpc.Account.Select.Response.Error.Code) + - [Rpc.Account.Stop.Response.Error.Code](#anytype.Rpc.Account.Stop.Response.Error.Code) + - [Rpc.App.GetVersion.Response.Error.Code](#anytype.Rpc.App.GetVersion.Response.Error.Code) + - [Rpc.App.SetDeviceState.Request.DeviceState](#anytype.Rpc.App.SetDeviceState.Request.DeviceState) + - [Rpc.App.SetDeviceState.Response.Error.Code](#anytype.Rpc.App.SetDeviceState.Response.Error.Code) + - [Rpc.App.Shutdown.Response.Error.Code](#anytype.Rpc.App.Shutdown.Response.Error.Code) + - [Rpc.Block.Copy.Response.Error.Code](#anytype.Rpc.Block.Copy.Response.Error.Code) + - [Rpc.Block.Create.Response.Error.Code](#anytype.Rpc.Block.Create.Response.Error.Code) + - [Rpc.Block.CreateWidget.Response.Error.Code](#anytype.Rpc.Block.CreateWidget.Response.Error.Code) + - [Rpc.Block.Cut.Response.Error.Code](#anytype.Rpc.Block.Cut.Response.Error.Code) + - [Rpc.Block.Download.Response.Error.Code](#anytype.Rpc.Block.Download.Response.Error.Code) + - [Rpc.Block.Export.Response.Error.Code](#anytype.Rpc.Block.Export.Response.Error.Code) + - [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype.Rpc.Block.ListConvertToObjects.Response.Error.Code) + - [Rpc.Block.ListDelete.Response.Error.Code](#anytype.Rpc.Block.ListDelete.Response.Error.Code) + - [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype.Rpc.Block.ListDuplicate.Response.Error.Code) + - [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error.Code) + - [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error.Code) + - [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetAlign.Response.Error.Code) + - [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error.Code) + - [Rpc.Block.ListSetFields.Response.Error.Code](#anytype.Rpc.Block.ListSetFields.Response.Error.Code) + - [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error.Code) + - [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype.Rpc.Block.ListTurnInto.Response.Error.Code) + - [Rpc.Block.Merge.Response.Error.Code](#anytype.Rpc.Block.Merge.Response.Error.Code) + - [Rpc.Block.Paste.Response.Error.Code](#anytype.Rpc.Block.Paste.Response.Error.Code) + - [Rpc.Block.Replace.Response.Error.Code](#anytype.Rpc.Block.Replace.Response.Error.Code) + - [Rpc.Block.SetFields.Response.Error.Code](#anytype.Rpc.Block.SetFields.Response.Error.Code) + - [Rpc.Block.Split.Request.Mode](#anytype.Rpc.Block.Split.Request.Mode) + - [Rpc.Block.Split.Response.Error.Code](#anytype.Rpc.Block.Split.Response.Error.Code) + - [Rpc.Block.Upload.Response.Error.Code](#anytype.Rpc.Block.Upload.Response.Error.Code) + - [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code) + - [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.Fetch.Response.Error.Code) + - [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error.Code) + - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code) + - [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error.Code) + - [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error.Code) + - [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error.Code) + - [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error.Code) + - [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code) + - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code) + - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code) + - [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error.Code) + - [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error.Code) + - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code) + - [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype.Rpc.BlockDataview.SetSource.Response.Error.Code) + - [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error.Code) + - [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error.Code) + - [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error.Code) + - [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error.Code) + - [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Create.Response.Error.Code) + - [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Delete.Response.Error.Code) + - [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error.Code) + - [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error.Code) + - [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Update.Response.Error.Code) + - [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code) + - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code) + - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code) + - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code) + - [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error.Code) + - [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error.Code) + - [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error.Code) + - [Rpc.BlockFile.SetName.Response.Error.Code](#anytype.Rpc.BlockFile.SetName.Response.Error.Code) + - [Rpc.BlockImage.SetName.Response.Error.Code](#anytype.Rpc.BlockImage.SetName.Response.Error.Code) + - [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype.Rpc.BlockImage.SetWidth.Response.Error.Code) + - [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype.Rpc.BlockLatex.SetText.Response.Error.Code) + - [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error.Code) + - [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error.Code) + - [Rpc.BlockRelation.Add.Response.Error.Code](#anytype.Rpc.BlockRelation.Add.Response.Error.Code) + - [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype.Rpc.BlockRelation.SetKey.Response.Error.Code) + - [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error.Code) + - [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error.Code) + - [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error.Code) + - [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error.Code) + - [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnMove.Response.Error.Code) + - [Rpc.BlockTable.Create.Response.Error.Code](#anytype.Rpc.BlockTable.Create.Response.Error.Code) + - [Rpc.BlockTable.Expand.Response.Error.Code](#anytype.Rpc.BlockTable.Expand.Response.Error.Code) + - [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype.Rpc.BlockTable.RowCreate.Response.Error.Code) + - [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype.Rpc.BlockTable.RowDelete.Response.Error.Code) + - [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error.Code) + - [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype.Rpc.BlockTable.RowListClean.Response.Error.Code) + - [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype.Rpc.BlockTable.RowListFill.Response.Error.Code) + - [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error.Code) + - [Rpc.BlockTable.Sort.Response.Error.Code](#anytype.Rpc.BlockTable.Sort.Response.Error.Code) + - [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype.Rpc.BlockText.ListClearContent.Response.Error.Code) + - [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListClearStyle.Response.Error.Code) + - [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype.Rpc.BlockText.ListSetColor.Response.Error.Code) + - [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype.Rpc.BlockText.ListSetMark.Response.Error.Code) + - [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListSetStyle.Response.Error.Code) + - [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype.Rpc.BlockText.SetChecked.Response.Error.Code) + - [Rpc.BlockText.SetColor.Response.Error.Code](#anytype.Rpc.BlockText.SetColor.Response.Error.Code) + - [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype.Rpc.BlockText.SetIcon.Response.Error.Code) + - [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error.Code) + - [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype.Rpc.BlockText.SetStyle.Response.Error.Code) + - [Rpc.BlockText.SetText.Response.Error.Code](#anytype.Rpc.BlockText.SetText.Response.Error.Code) + - [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype.Rpc.BlockVideo.SetName.Response.Error.Code) + - [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype.Rpc.BlockVideo.SetWidth.Response.Error.Code) + - [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype.Rpc.Debug.ExportLocalstore.Response.Error.Code) + - [Rpc.Debug.Ping.Response.Error.Code](#anytype.Rpc.Debug.Ping.Response.Error.Code) + - [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype.Rpc.Debug.SpaceSummary.Response.Error.Code) + - [Rpc.Debug.Tree.Response.Error.Code](#anytype.Rpc.Debug.Tree.Response.Error.Code) + - [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype.Rpc.Debug.TreeHeads.Response.Error.Code) + - [Rpc.File.Download.Response.Error.Code](#anytype.Rpc.File.Download.Response.Error.Code) + - [Rpc.File.Drop.Response.Error.Code](#anytype.Rpc.File.Drop.Response.Error.Code) + - [Rpc.File.ListOffload.Response.Error.Code](#anytype.Rpc.File.ListOffload.Response.Error.Code) + - [Rpc.File.Offload.Response.Error.Code](#anytype.Rpc.File.Offload.Response.Error.Code) + - [Rpc.File.Upload.Response.Error.Code](#anytype.Rpc.File.Upload.Response.Error.Code) + - [Rpc.GenericErrorResponse.Error.Code](#anytype.Rpc.GenericErrorResponse.Error.Code) + - [Rpc.History.GetVersions.Response.Error.Code](#anytype.Rpc.History.GetVersions.Response.Error.Code) + - [Rpc.History.SetVersion.Response.Error.Code](#anytype.Rpc.History.SetVersion.Response.Error.Code) + - [Rpc.History.ShowVersion.Response.Error.Code](#anytype.Rpc.History.ShowVersion.Response.Error.Code) + - [Rpc.LinkPreview.Response.Error.Code](#anytype.Rpc.LinkPreview.Response.Error.Code) + - [Rpc.Log.Send.Request.Level](#anytype.Rpc.Log.Send.Request.Level) + - [Rpc.Log.Send.Response.Error.Code](#anytype.Rpc.Log.Send.Response.Error.Code) + - [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype.Rpc.Metrics.SetParameters.Response.Error.Code) + - [Rpc.Navigation.Context](#anytype.Rpc.Navigation.Context) + - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code) + - [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype.Rpc.Navigation.ListObjects.Response.Error.Code) + - [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype.Rpc.Object.ApplyTemplate.Response.Error.Code) + - [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype.Rpc.Object.BookmarkFetch.Response.Error.Code) + - [Rpc.Object.Close.Response.Error.Code](#anytype.Rpc.Object.Close.Response.Error.Code) + - [Rpc.Object.Create.Response.Error.Code](#anytype.Rpc.Object.Create.Response.Error.Code) + - [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype.Rpc.Object.CreateBookmark.Response.Error.Code) + - [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype.Rpc.Object.CreateObjectType.Response.Error.Code) + - [Rpc.Object.CreateRelation.Response.Error.Code](#anytype.Rpc.Object.CreateRelation.Response.Error.Code) + - [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype.Rpc.Object.CreateRelationOption.Response.Error.Code) + - [Rpc.Object.CreateSet.Response.Error.Code](#anytype.Rpc.Object.CreateSet.Response.Error.Code) + - [Rpc.Object.Duplicate.Response.Error.Code](#anytype.Rpc.Object.Duplicate.Response.Error.Code) + - [Rpc.Object.Graph.Edge.Type](#anytype.Rpc.Object.Graph.Edge.Type) + - [Rpc.Object.Graph.Response.Error.Code](#anytype.Rpc.Object.Graph.Response.Error.Code) + - [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype.Rpc.Object.GroupsSubscribe.Response.Error.Code) + - [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code) + - [Rpc.Object.Import.Request.CsvParams.Mode](#anytype.Rpc.Object.Import.Request.CsvParams.Mode) + - [Rpc.Object.Import.Request.Mode](#anytype.Rpc.Object.Import.Request.Mode) + - [Rpc.Object.Import.Request.Type](#anytype.Rpc.Object.Import.Request.Type) + - [Rpc.Object.Import.Response.Error.Code](#anytype.Rpc.Object.Import.Response.Error.Code) + - [Rpc.Object.ImportList.ImportResponse.Type](#anytype.Rpc.Object.ImportList.ImportResponse.Type) + - [Rpc.Object.ImportList.Response.Error.Code](#anytype.Rpc.Object.ImportList.Response.Error.Code) + - [Rpc.Object.ListDelete.Response.Error.Code](#anytype.Rpc.Object.ListDelete.Response.Error.Code) + - [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype.Rpc.Object.ListDuplicate.Response.Error.Code) + - [Rpc.Object.ListExport.Format](#anytype.Rpc.Object.ListExport.Format) + - [Rpc.Object.ListExport.Response.Error.Code](#anytype.Rpc.Object.ListExport.Response.Error.Code) + - [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype.Rpc.Object.ListSetIsArchived.Response.Error.Code) + - [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error.Code) + - [Rpc.Object.Open.Response.Error.Code](#anytype.Rpc.Object.Open.Response.Error.Code) + - [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error.Code) + - [Rpc.Object.Redo.Response.Error.Code](#anytype.Rpc.Object.Redo.Response.Error.Code) + - [Rpc.Object.Search.Response.Error.Code](#anytype.Rpc.Object.Search.Response.Error.Code) + - [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchSubscribe.Response.Error.Code) + - [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error.Code) + - [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error.Code) + - [Rpc.Object.SetDetails.Response.Error.Code](#anytype.Rpc.Object.SetDetails.Response.Error.Code) + - [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype.Rpc.Object.SetInternalFlags.Response.Error.Code) + - [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype.Rpc.Object.SetIsArchived.Response.Error.Code) + - [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.SetIsFavorite.Response.Error.Code) + - [Rpc.Object.SetLayout.Response.Error.Code](#anytype.Rpc.Object.SetLayout.Response.Error.Code) + - [Rpc.Object.SetObjectType.Response.Error.Code](#anytype.Rpc.Object.SetObjectType.Response.Error.Code) + - [Rpc.Object.SetSource.Response.Error.Code](#anytype.Rpc.Object.SetSource.Response.Error.Code) + - [Rpc.Object.ShareByLink.Response.Error.Code](#anytype.Rpc.Object.ShareByLink.Response.Error.Code) + - [Rpc.Object.Show.Response.Error.Code](#anytype.Rpc.Object.Show.Response.Error.Code) + - [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype.Rpc.Object.SubscribeIds.Response.Error.Code) + - [Rpc.Object.ToBookmark.Response.Error.Code](#anytype.Rpc.Object.ToBookmark.Response.Error.Code) + - [Rpc.Object.ToCollection.Response.Error.Code](#anytype.Rpc.Object.ToCollection.Response.Error.Code) + - [Rpc.Object.ToSet.Response.Error.Code](#anytype.Rpc.Object.ToSet.Response.Error.Code) + - [Rpc.Object.Undo.Response.Error.Code](#anytype.Rpc.Object.Undo.Response.Error.Code) + - [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error.Code) + - [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype.Rpc.ObjectCollection.Add.Response.Error.Code) + - [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype.Rpc.ObjectCollection.Remove.Response.Error.Code) + - [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype.Rpc.ObjectCollection.Sort.Response.Error.Code) + - [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype.Rpc.ObjectRelation.Add.Response.Error.Code) + - [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error.Code) + - [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype.Rpc.ObjectRelation.Delete.Response.Error.Code) + - [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error.Code) + - [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code) + - [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Add.Response.Error.Code) + - [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.List.Response.Error.Code) + - [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error.Code) + - [Rpc.Process.Cancel.Response.Error.Code](#anytype.Rpc.Process.Cancel.Response.Error.Code) + - [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype.Rpc.Relation.ListRemoveOption.Response.Error.Code) + - [Rpc.Relation.Options.Response.Error.Code](#anytype.Rpc.Relation.Options.Response.Error.Code) + - [Rpc.Template.Clone.Response.Error.Code](#anytype.Rpc.Template.Clone.Response.Error.Code) + - [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype.Rpc.Template.CreateFromObject.Response.Error.Code) + - [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype.Rpc.Template.CreateFromObjectType.Response.Error.Code) + - [Rpc.Template.ExportAll.Response.Error.Code](#anytype.Rpc.Template.ExportAll.Response.Error.Code) + - [Rpc.Unsplash.Download.Response.Error.Code](#anytype.Rpc.Unsplash.Download.Response.Error.Code) + - [Rpc.Unsplash.Search.Response.Error.Code](#anytype.Rpc.Unsplash.Search.Response.Error.Code) + - [Rpc.UserData.Dump.Response.Error.Code](#anytype.Rpc.UserData.Dump.Response.Error.Code) + - [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype.Rpc.Wallet.CloseSession.Response.Error.Code) + - [Rpc.Wallet.Convert.Response.Error.Code](#anytype.Rpc.Wallet.Convert.Response.Error.Code) + - [Rpc.Wallet.Create.Response.Error.Code](#anytype.Rpc.Wallet.Create.Response.Error.Code) + - [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype.Rpc.Wallet.CreateSession.Response.Error.Code) + - [Rpc.Wallet.Recover.Response.Error.Code](#anytype.Rpc.Wallet.Recover.Response.Error.Code) + - [Rpc.Workspace.Create.Response.Error.Code](#anytype.Rpc.Workspace.Create.Response.Error.Code) + - [Rpc.Workspace.Export.Response.Error.Code](#anytype.Rpc.Workspace.Export.Response.Error.Code) + - [Rpc.Workspace.GetAll.Response.Error.Code](#anytype.Rpc.Workspace.GetAll.Response.Error.Code) + - [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype.Rpc.Workspace.GetCurrent.Response.Error.Code) + - [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype.Rpc.Workspace.Object.Add.Response.Error.Code) + - [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error.Code) + - [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error.Code) + - [Rpc.Workspace.Select.Response.Error.Code](#anytype.Rpc.Workspace.Select.Response.Error.Code) + - [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error.Code) - - [File-level Extensions](#pb_protos_commands-proto-extensions) + - [File-level Extensions](#pb/protos/commands.proto-extensions) -- [pb/protos/events.proto](#pb_protos_events-proto) - - [Event](#anytype-Event) - - [Event.Account](#anytype-Event-Account) - - [Event.Account.Config](#anytype-Event-Account-Config) - - [Event.Account.Config.Update](#anytype-Event-Account-Config-Update) - - [Event.Account.Details](#anytype-Event-Account-Details) - - [Event.Account.Show](#anytype-Event-Account-Show) - - [Event.Account.Update](#anytype-Event-Account-Update) - - [Event.Block](#anytype-Event-Block) - - [Event.Block.Add](#anytype-Event-Block-Add) - - [Event.Block.Dataview](#anytype-Event-Block-Dataview) - - [Event.Block.Dataview.GroupOrderUpdate](#anytype-Event-Block-Dataview-GroupOrderUpdate) - - [Event.Block.Dataview.IsCollectionSet](#anytype-Event-Block-Dataview-IsCollectionSet) - - [Event.Block.Dataview.ObjectOrderUpdate](#anytype-Event-Block-Dataview-ObjectOrderUpdate) - - [Event.Block.Dataview.OldRelationDelete](#anytype-Event-Block-Dataview-OldRelationDelete) - - [Event.Block.Dataview.OldRelationSet](#anytype-Event-Block-Dataview-OldRelationSet) - - [Event.Block.Dataview.RelationDelete](#anytype-Event-Block-Dataview-RelationDelete) - - [Event.Block.Dataview.RelationSet](#anytype-Event-Block-Dataview-RelationSet) - - [Event.Block.Dataview.SliceChange](#anytype-Event-Block-Dataview-SliceChange) - - [Event.Block.Dataview.SourceSet](#anytype-Event-Block-Dataview-SourceSet) - - [Event.Block.Dataview.TargetObjectIdSet](#anytype-Event-Block-Dataview-TargetObjectIdSet) - - [Event.Block.Dataview.ViewDelete](#anytype-Event-Block-Dataview-ViewDelete) - - [Event.Block.Dataview.ViewOrder](#anytype-Event-Block-Dataview-ViewOrder) - - [Event.Block.Dataview.ViewSet](#anytype-Event-Block-Dataview-ViewSet) - - [Event.Block.Dataview.ViewUpdate](#anytype-Event-Block-Dataview-ViewUpdate) - - [Event.Block.Dataview.ViewUpdate.Fields](#anytype-Event-Block-Dataview-ViewUpdate-Fields) - - [Event.Block.Dataview.ViewUpdate.Filter](#anytype-Event-Block-Dataview-ViewUpdate-Filter) - - [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Add) - - [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Move) - - [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Remove) - - [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Update) - - [Event.Block.Dataview.ViewUpdate.Relation](#anytype-Event-Block-Dataview-ViewUpdate-Relation) - - [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Add) - - [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Move) - - [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Remove) - - [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Update) - - [Event.Block.Dataview.ViewUpdate.Sort](#anytype-Event-Block-Dataview-ViewUpdate-Sort) - - [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Add) - - [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Move) - - [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Remove) - - [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Update) - - [Event.Block.Delete](#anytype-Event-Block-Delete) - - [Event.Block.FilesUpload](#anytype-Event-Block-FilesUpload) - - [Event.Block.Fill](#anytype-Event-Block-Fill) - - [Event.Block.Fill.Align](#anytype-Event-Block-Fill-Align) - - [Event.Block.Fill.BackgroundColor](#anytype-Event-Block-Fill-BackgroundColor) - - [Event.Block.Fill.Bookmark](#anytype-Event-Block-Fill-Bookmark) - - [Event.Block.Fill.Bookmark.Description](#anytype-Event-Block-Fill-Bookmark-Description) - - [Event.Block.Fill.Bookmark.FaviconHash](#anytype-Event-Block-Fill-Bookmark-FaviconHash) - - [Event.Block.Fill.Bookmark.ImageHash](#anytype-Event-Block-Fill-Bookmark-ImageHash) - - [Event.Block.Fill.Bookmark.TargetObjectId](#anytype-Event-Block-Fill-Bookmark-TargetObjectId) - - [Event.Block.Fill.Bookmark.Title](#anytype-Event-Block-Fill-Bookmark-Title) - - [Event.Block.Fill.Bookmark.Type](#anytype-Event-Block-Fill-Bookmark-Type) - - [Event.Block.Fill.Bookmark.Url](#anytype-Event-Block-Fill-Bookmark-Url) - - [Event.Block.Fill.ChildrenIds](#anytype-Event-Block-Fill-ChildrenIds) - - [Event.Block.Fill.DatabaseRecords](#anytype-Event-Block-Fill-DatabaseRecords) - - [Event.Block.Fill.Details](#anytype-Event-Block-Fill-Details) - - [Event.Block.Fill.Div](#anytype-Event-Block-Fill-Div) - - [Event.Block.Fill.Div.Style](#anytype-Event-Block-Fill-Div-Style) - - [Event.Block.Fill.Fields](#anytype-Event-Block-Fill-Fields) - - [Event.Block.Fill.File](#anytype-Event-Block-Fill-File) - - [Event.Block.Fill.File.Hash](#anytype-Event-Block-Fill-File-Hash) - - [Event.Block.Fill.File.Mime](#anytype-Event-Block-Fill-File-Mime) - - [Event.Block.Fill.File.Name](#anytype-Event-Block-Fill-File-Name) - - [Event.Block.Fill.File.Size](#anytype-Event-Block-Fill-File-Size) - - [Event.Block.Fill.File.State](#anytype-Event-Block-Fill-File-State) - - [Event.Block.Fill.File.Style](#anytype-Event-Block-Fill-File-Style) - - [Event.Block.Fill.File.Type](#anytype-Event-Block-Fill-File-Type) - - [Event.Block.Fill.File.Width](#anytype-Event-Block-Fill-File-Width) - - [Event.Block.Fill.Link](#anytype-Event-Block-Fill-Link) - - [Event.Block.Fill.Link.Fields](#anytype-Event-Block-Fill-Link-Fields) - - [Event.Block.Fill.Link.Style](#anytype-Event-Block-Fill-Link-Style) - - [Event.Block.Fill.Link.TargetBlockId](#anytype-Event-Block-Fill-Link-TargetBlockId) - - [Event.Block.Fill.Restrictions](#anytype-Event-Block-Fill-Restrictions) - - [Event.Block.Fill.Text](#anytype-Event-Block-Fill-Text) - - [Event.Block.Fill.Text.Checked](#anytype-Event-Block-Fill-Text-Checked) - - [Event.Block.Fill.Text.Color](#anytype-Event-Block-Fill-Text-Color) - - [Event.Block.Fill.Text.Marks](#anytype-Event-Block-Fill-Text-Marks) - - [Event.Block.Fill.Text.Style](#anytype-Event-Block-Fill-Text-Style) - - [Event.Block.Fill.Text.Text](#anytype-Event-Block-Fill-Text-Text) - - [Event.Block.MarksInfo](#anytype-Event-Block-MarksInfo) - - [Event.Block.Set](#anytype-Event-Block-Set) - - [Event.Block.Set.Align](#anytype-Event-Block-Set-Align) - - [Event.Block.Set.BackgroundColor](#anytype-Event-Block-Set-BackgroundColor) - - [Event.Block.Set.Bookmark](#anytype-Event-Block-Set-Bookmark) - - [Event.Block.Set.Bookmark.Description](#anytype-Event-Block-Set-Bookmark-Description) - - [Event.Block.Set.Bookmark.FaviconHash](#anytype-Event-Block-Set-Bookmark-FaviconHash) - - [Event.Block.Set.Bookmark.ImageHash](#anytype-Event-Block-Set-Bookmark-ImageHash) - - [Event.Block.Set.Bookmark.State](#anytype-Event-Block-Set-Bookmark-State) - - [Event.Block.Set.Bookmark.TargetObjectId](#anytype-Event-Block-Set-Bookmark-TargetObjectId) - - [Event.Block.Set.Bookmark.Title](#anytype-Event-Block-Set-Bookmark-Title) - - [Event.Block.Set.Bookmark.Type](#anytype-Event-Block-Set-Bookmark-Type) - - [Event.Block.Set.Bookmark.Url](#anytype-Event-Block-Set-Bookmark-Url) - - [Event.Block.Set.ChildrenIds](#anytype-Event-Block-Set-ChildrenIds) - - [Event.Block.Set.Div](#anytype-Event-Block-Set-Div) - - [Event.Block.Set.Div.Style](#anytype-Event-Block-Set-Div-Style) - - [Event.Block.Set.Fields](#anytype-Event-Block-Set-Fields) - - [Event.Block.Set.File](#anytype-Event-Block-Set-File) - - [Event.Block.Set.File.Hash](#anytype-Event-Block-Set-File-Hash) - - [Event.Block.Set.File.Mime](#anytype-Event-Block-Set-File-Mime) - - [Event.Block.Set.File.Name](#anytype-Event-Block-Set-File-Name) - - [Event.Block.Set.File.Size](#anytype-Event-Block-Set-File-Size) - - [Event.Block.Set.File.State](#anytype-Event-Block-Set-File-State) - - [Event.Block.Set.File.Style](#anytype-Event-Block-Set-File-Style) - - [Event.Block.Set.File.Type](#anytype-Event-Block-Set-File-Type) - - [Event.Block.Set.File.Width](#anytype-Event-Block-Set-File-Width) - - [Event.Block.Set.Latex](#anytype-Event-Block-Set-Latex) - - [Event.Block.Set.Latex.Text](#anytype-Event-Block-Set-Latex-Text) - - [Event.Block.Set.Link](#anytype-Event-Block-Set-Link) - - [Event.Block.Set.Link.CardStyle](#anytype-Event-Block-Set-Link-CardStyle) - - [Event.Block.Set.Link.Description](#anytype-Event-Block-Set-Link-Description) - - [Event.Block.Set.Link.Fields](#anytype-Event-Block-Set-Link-Fields) - - [Event.Block.Set.Link.IconSize](#anytype-Event-Block-Set-Link-IconSize) - - [Event.Block.Set.Link.Relations](#anytype-Event-Block-Set-Link-Relations) - - [Event.Block.Set.Link.Style](#anytype-Event-Block-Set-Link-Style) - - [Event.Block.Set.Link.TargetBlockId](#anytype-Event-Block-Set-Link-TargetBlockId) - - [Event.Block.Set.Relation](#anytype-Event-Block-Set-Relation) - - [Event.Block.Set.Relation.Key](#anytype-Event-Block-Set-Relation-Key) - - [Event.Block.Set.Restrictions](#anytype-Event-Block-Set-Restrictions) - - [Event.Block.Set.TableRow](#anytype-Event-Block-Set-TableRow) - - [Event.Block.Set.TableRow.IsHeader](#anytype-Event-Block-Set-TableRow-IsHeader) - - [Event.Block.Set.Text](#anytype-Event-Block-Set-Text) - - [Event.Block.Set.Text.Checked](#anytype-Event-Block-Set-Text-Checked) - - [Event.Block.Set.Text.Color](#anytype-Event-Block-Set-Text-Color) - - [Event.Block.Set.Text.IconEmoji](#anytype-Event-Block-Set-Text-IconEmoji) - - [Event.Block.Set.Text.IconImage](#anytype-Event-Block-Set-Text-IconImage) - - [Event.Block.Set.Text.Marks](#anytype-Event-Block-Set-Text-Marks) - - [Event.Block.Set.Text.Style](#anytype-Event-Block-Set-Text-Style) - - [Event.Block.Set.Text.Text](#anytype-Event-Block-Set-Text-Text) - - [Event.Block.Set.VerticalAlign](#anytype-Event-Block-Set-VerticalAlign) - - [Event.Block.Set.Widget](#anytype-Event-Block-Set-Widget) - - [Event.Block.Set.Widget.Layout](#anytype-Event-Block-Set-Widget-Layout) - - [Event.Message](#anytype-Event-Message) - - [Event.Object](#anytype-Event-Object) - - [Event.Object.Details](#anytype-Event-Object-Details) - - [Event.Object.Details.Amend](#anytype-Event-Object-Details-Amend) - - [Event.Object.Details.Amend.KeyValue](#anytype-Event-Object-Details-Amend-KeyValue) - - [Event.Object.Details.Set](#anytype-Event-Object-Details-Set) - - [Event.Object.Details.Unset](#anytype-Event-Object-Details-Unset) - - [Event.Object.Relations](#anytype-Event-Object-Relations) - - [Event.Object.Relations.Amend](#anytype-Event-Object-Relations-Amend) - - [Event.Object.Relations.Remove](#anytype-Event-Object-Relations-Remove) - - [Event.Object.Remove](#anytype-Event-Object-Remove) - - [Event.Object.Restrictions](#anytype-Event-Object-Restrictions) - - [Event.Object.Restrictions.Set](#anytype-Event-Object-Restrictions-Set) - - [Event.Object.Subscription](#anytype-Event-Object-Subscription) - - [Event.Object.Subscription.Add](#anytype-Event-Object-Subscription-Add) - - [Event.Object.Subscription.Counters](#anytype-Event-Object-Subscription-Counters) - - [Event.Object.Subscription.Groups](#anytype-Event-Object-Subscription-Groups) - - [Event.Object.Subscription.Position](#anytype-Event-Object-Subscription-Position) - - [Event.Object.Subscription.Remove](#anytype-Event-Object-Subscription-Remove) - - [Event.Ping](#anytype-Event-Ping) - - [Event.Process](#anytype-Event-Process) - - [Event.Process.Done](#anytype-Event-Process-Done) - - [Event.Process.New](#anytype-Event-Process-New) - - [Event.Process.Update](#anytype-Event-Process-Update) - - [Event.Status](#anytype-Event-Status) - - [Event.Status.Thread](#anytype-Event-Status-Thread) - - [Event.Status.Thread.Account](#anytype-Event-Status-Thread-Account) - - [Event.Status.Thread.Cafe](#anytype-Event-Status-Thread-Cafe) - - [Event.Status.Thread.Cafe.PinStatus](#anytype-Event-Status-Thread-Cafe-PinStatus) - - [Event.Status.Thread.Device](#anytype-Event-Status-Thread-Device) - - [Event.Status.Thread.Summary](#anytype-Event-Status-Thread-Summary) - - [Event.User](#anytype-Event-User) - - [Event.User.Block](#anytype-Event-User-Block) - - [Event.User.Block.Join](#anytype-Event-User-Block-Join) - - [Event.User.Block.Left](#anytype-Event-User-Block-Left) - - [Event.User.Block.SelectRange](#anytype-Event-User-Block-SelectRange) - - [Event.User.Block.TextRange](#anytype-Event-User-Block-TextRange) - - [Model](#anytype-Model) - - [Model.Process](#anytype-Model-Process) - - [Model.Process.Progress](#anytype-Model-Process-Progress) - - [ResponseEvent](#anytype-ResponseEvent) +- [pb/protos/events.proto](#pb/protos/events.proto) + - [Event](#anytype.Event) + - [Event.Account](#anytype.Event.Account) + - [Event.Account.Config](#anytype.Event.Account.Config) + - [Event.Account.Config.Update](#anytype.Event.Account.Config.Update) + - [Event.Account.Details](#anytype.Event.Account.Details) + - [Event.Account.Show](#anytype.Event.Account.Show) + - [Event.Account.Update](#anytype.Event.Account.Update) + - [Event.Block](#anytype.Event.Block) + - [Event.Block.Add](#anytype.Event.Block.Add) + - [Event.Block.Dataview](#anytype.Event.Block.Dataview) + - [Event.Block.Dataview.GroupOrderUpdate](#anytype.Event.Block.Dataview.GroupOrderUpdate) + - [Event.Block.Dataview.IsCollectionSet](#anytype.Event.Block.Dataview.IsCollectionSet) + - [Event.Block.Dataview.ObjectOrderUpdate](#anytype.Event.Block.Dataview.ObjectOrderUpdate) + - [Event.Block.Dataview.OldRelationDelete](#anytype.Event.Block.Dataview.OldRelationDelete) + - [Event.Block.Dataview.OldRelationSet](#anytype.Event.Block.Dataview.OldRelationSet) + - [Event.Block.Dataview.RelationDelete](#anytype.Event.Block.Dataview.RelationDelete) + - [Event.Block.Dataview.RelationSet](#anytype.Event.Block.Dataview.RelationSet) + - [Event.Block.Dataview.SliceChange](#anytype.Event.Block.Dataview.SliceChange) + - [Event.Block.Dataview.SourceSet](#anytype.Event.Block.Dataview.SourceSet) + - [Event.Block.Dataview.TargetObjectIdSet](#anytype.Event.Block.Dataview.TargetObjectIdSet) + - [Event.Block.Dataview.ViewDelete](#anytype.Event.Block.Dataview.ViewDelete) + - [Event.Block.Dataview.ViewOrder](#anytype.Event.Block.Dataview.ViewOrder) + - [Event.Block.Dataview.ViewSet](#anytype.Event.Block.Dataview.ViewSet) + - [Event.Block.Dataview.ViewUpdate](#anytype.Event.Block.Dataview.ViewUpdate) + - [Event.Block.Dataview.ViewUpdate.Fields](#anytype.Event.Block.Dataview.ViewUpdate.Fields) + - [Event.Block.Dataview.ViewUpdate.Filter](#anytype.Event.Block.Dataview.ViewUpdate.Filter) + - [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Add) + - [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Move) + - [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Remove) + - [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Update) + - [Event.Block.Dataview.ViewUpdate.Relation](#anytype.Event.Block.Dataview.ViewUpdate.Relation) + - [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Add) + - [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Move) + - [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Remove) + - [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Update) + - [Event.Block.Dataview.ViewUpdate.Sort](#anytype.Event.Block.Dataview.ViewUpdate.Sort) + - [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Add) + - [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Move) + - [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Remove) + - [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Update) + - [Event.Block.Delete](#anytype.Event.Block.Delete) + - [Event.Block.FilesUpload](#anytype.Event.Block.FilesUpload) + - [Event.Block.Fill](#anytype.Event.Block.Fill) + - [Event.Block.Fill.Align](#anytype.Event.Block.Fill.Align) + - [Event.Block.Fill.BackgroundColor](#anytype.Event.Block.Fill.BackgroundColor) + - [Event.Block.Fill.Bookmark](#anytype.Event.Block.Fill.Bookmark) + - [Event.Block.Fill.Bookmark.Description](#anytype.Event.Block.Fill.Bookmark.Description) + - [Event.Block.Fill.Bookmark.FaviconHash](#anytype.Event.Block.Fill.Bookmark.FaviconHash) + - [Event.Block.Fill.Bookmark.ImageHash](#anytype.Event.Block.Fill.Bookmark.ImageHash) + - [Event.Block.Fill.Bookmark.TargetObjectId](#anytype.Event.Block.Fill.Bookmark.TargetObjectId) + - [Event.Block.Fill.Bookmark.Title](#anytype.Event.Block.Fill.Bookmark.Title) + - [Event.Block.Fill.Bookmark.Type](#anytype.Event.Block.Fill.Bookmark.Type) + - [Event.Block.Fill.Bookmark.Url](#anytype.Event.Block.Fill.Bookmark.Url) + - [Event.Block.Fill.ChildrenIds](#anytype.Event.Block.Fill.ChildrenIds) + - [Event.Block.Fill.DatabaseRecords](#anytype.Event.Block.Fill.DatabaseRecords) + - [Event.Block.Fill.Details](#anytype.Event.Block.Fill.Details) + - [Event.Block.Fill.Div](#anytype.Event.Block.Fill.Div) + - [Event.Block.Fill.Div.Style](#anytype.Event.Block.Fill.Div.Style) + - [Event.Block.Fill.Fields](#anytype.Event.Block.Fill.Fields) + - [Event.Block.Fill.File](#anytype.Event.Block.Fill.File) + - [Event.Block.Fill.File.Hash](#anytype.Event.Block.Fill.File.Hash) + - [Event.Block.Fill.File.Mime](#anytype.Event.Block.Fill.File.Mime) + - [Event.Block.Fill.File.Name](#anytype.Event.Block.Fill.File.Name) + - [Event.Block.Fill.File.Size](#anytype.Event.Block.Fill.File.Size) + - [Event.Block.Fill.File.State](#anytype.Event.Block.Fill.File.State) + - [Event.Block.Fill.File.Style](#anytype.Event.Block.Fill.File.Style) + - [Event.Block.Fill.File.Type](#anytype.Event.Block.Fill.File.Type) + - [Event.Block.Fill.File.Width](#anytype.Event.Block.Fill.File.Width) + - [Event.Block.Fill.Link](#anytype.Event.Block.Fill.Link) + - [Event.Block.Fill.Link.Fields](#anytype.Event.Block.Fill.Link.Fields) + - [Event.Block.Fill.Link.Style](#anytype.Event.Block.Fill.Link.Style) + - [Event.Block.Fill.Link.TargetBlockId](#anytype.Event.Block.Fill.Link.TargetBlockId) + - [Event.Block.Fill.Restrictions](#anytype.Event.Block.Fill.Restrictions) + - [Event.Block.Fill.Text](#anytype.Event.Block.Fill.Text) + - [Event.Block.Fill.Text.Checked](#anytype.Event.Block.Fill.Text.Checked) + - [Event.Block.Fill.Text.Color](#anytype.Event.Block.Fill.Text.Color) + - [Event.Block.Fill.Text.Marks](#anytype.Event.Block.Fill.Text.Marks) + - [Event.Block.Fill.Text.Style](#anytype.Event.Block.Fill.Text.Style) + - [Event.Block.Fill.Text.Text](#anytype.Event.Block.Fill.Text.Text) + - [Event.Block.MarksInfo](#anytype.Event.Block.MarksInfo) + - [Event.Block.Set](#anytype.Event.Block.Set) + - [Event.Block.Set.Align](#anytype.Event.Block.Set.Align) + - [Event.Block.Set.BackgroundColor](#anytype.Event.Block.Set.BackgroundColor) + - [Event.Block.Set.Bookmark](#anytype.Event.Block.Set.Bookmark) + - [Event.Block.Set.Bookmark.Description](#anytype.Event.Block.Set.Bookmark.Description) + - [Event.Block.Set.Bookmark.FaviconHash](#anytype.Event.Block.Set.Bookmark.FaviconHash) + - [Event.Block.Set.Bookmark.ImageHash](#anytype.Event.Block.Set.Bookmark.ImageHash) + - [Event.Block.Set.Bookmark.State](#anytype.Event.Block.Set.Bookmark.State) + - [Event.Block.Set.Bookmark.TargetObjectId](#anytype.Event.Block.Set.Bookmark.TargetObjectId) + - [Event.Block.Set.Bookmark.Title](#anytype.Event.Block.Set.Bookmark.Title) + - [Event.Block.Set.Bookmark.Type](#anytype.Event.Block.Set.Bookmark.Type) + - [Event.Block.Set.Bookmark.Url](#anytype.Event.Block.Set.Bookmark.Url) + - [Event.Block.Set.ChildrenIds](#anytype.Event.Block.Set.ChildrenIds) + - [Event.Block.Set.Div](#anytype.Event.Block.Set.Div) + - [Event.Block.Set.Div.Style](#anytype.Event.Block.Set.Div.Style) + - [Event.Block.Set.Fields](#anytype.Event.Block.Set.Fields) + - [Event.Block.Set.File](#anytype.Event.Block.Set.File) + - [Event.Block.Set.File.Hash](#anytype.Event.Block.Set.File.Hash) + - [Event.Block.Set.File.Mime](#anytype.Event.Block.Set.File.Mime) + - [Event.Block.Set.File.Name](#anytype.Event.Block.Set.File.Name) + - [Event.Block.Set.File.Size](#anytype.Event.Block.Set.File.Size) + - [Event.Block.Set.File.State](#anytype.Event.Block.Set.File.State) + - [Event.Block.Set.File.Style](#anytype.Event.Block.Set.File.Style) + - [Event.Block.Set.File.Type](#anytype.Event.Block.Set.File.Type) + - [Event.Block.Set.File.Width](#anytype.Event.Block.Set.File.Width) + - [Event.Block.Set.Latex](#anytype.Event.Block.Set.Latex) + - [Event.Block.Set.Latex.Text](#anytype.Event.Block.Set.Latex.Text) + - [Event.Block.Set.Link](#anytype.Event.Block.Set.Link) + - [Event.Block.Set.Link.CardStyle](#anytype.Event.Block.Set.Link.CardStyle) + - [Event.Block.Set.Link.Description](#anytype.Event.Block.Set.Link.Description) + - [Event.Block.Set.Link.Fields](#anytype.Event.Block.Set.Link.Fields) + - [Event.Block.Set.Link.IconSize](#anytype.Event.Block.Set.Link.IconSize) + - [Event.Block.Set.Link.Relations](#anytype.Event.Block.Set.Link.Relations) + - [Event.Block.Set.Link.Style](#anytype.Event.Block.Set.Link.Style) + - [Event.Block.Set.Link.TargetBlockId](#anytype.Event.Block.Set.Link.TargetBlockId) + - [Event.Block.Set.Relation](#anytype.Event.Block.Set.Relation) + - [Event.Block.Set.Relation.Key](#anytype.Event.Block.Set.Relation.Key) + - [Event.Block.Set.Restrictions](#anytype.Event.Block.Set.Restrictions) + - [Event.Block.Set.TableRow](#anytype.Event.Block.Set.TableRow) + - [Event.Block.Set.TableRow.IsHeader](#anytype.Event.Block.Set.TableRow.IsHeader) + - [Event.Block.Set.Text](#anytype.Event.Block.Set.Text) + - [Event.Block.Set.Text.Checked](#anytype.Event.Block.Set.Text.Checked) + - [Event.Block.Set.Text.Color](#anytype.Event.Block.Set.Text.Color) + - [Event.Block.Set.Text.IconEmoji](#anytype.Event.Block.Set.Text.IconEmoji) + - [Event.Block.Set.Text.IconImage](#anytype.Event.Block.Set.Text.IconImage) + - [Event.Block.Set.Text.Marks](#anytype.Event.Block.Set.Text.Marks) + - [Event.Block.Set.Text.Style](#anytype.Event.Block.Set.Text.Style) + - [Event.Block.Set.Text.Text](#anytype.Event.Block.Set.Text.Text) + - [Event.Block.Set.VerticalAlign](#anytype.Event.Block.Set.VerticalAlign) + - [Event.Block.Set.Widget](#anytype.Event.Block.Set.Widget) + - [Event.Block.Set.Widget.Layout](#anytype.Event.Block.Set.Widget.Layout) + - [Event.Message](#anytype.Event.Message) + - [Event.Object](#anytype.Event.Object) + - [Event.Object.Details](#anytype.Event.Object.Details) + - [Event.Object.Details.Amend](#anytype.Event.Object.Details.Amend) + - [Event.Object.Details.Amend.KeyValue](#anytype.Event.Object.Details.Amend.KeyValue) + - [Event.Object.Details.Set](#anytype.Event.Object.Details.Set) + - [Event.Object.Details.Unset](#anytype.Event.Object.Details.Unset) + - [Event.Object.Relations](#anytype.Event.Object.Relations) + - [Event.Object.Relations.Amend](#anytype.Event.Object.Relations.Amend) + - [Event.Object.Relations.Remove](#anytype.Event.Object.Relations.Remove) + - [Event.Object.Remove](#anytype.Event.Object.Remove) + - [Event.Object.Restrictions](#anytype.Event.Object.Restrictions) + - [Event.Object.Restrictions.Set](#anytype.Event.Object.Restrictions.Set) + - [Event.Object.Subscription](#anytype.Event.Object.Subscription) + - [Event.Object.Subscription.Add](#anytype.Event.Object.Subscription.Add) + - [Event.Object.Subscription.Counters](#anytype.Event.Object.Subscription.Counters) + - [Event.Object.Subscription.Groups](#anytype.Event.Object.Subscription.Groups) + - [Event.Object.Subscription.Position](#anytype.Event.Object.Subscription.Position) + - [Event.Object.Subscription.Remove](#anytype.Event.Object.Subscription.Remove) + - [Event.Ping](#anytype.Event.Ping) + - [Event.Process](#anytype.Event.Process) + - [Event.Process.Done](#anytype.Event.Process.Done) + - [Event.Process.New](#anytype.Event.Process.New) + - [Event.Process.Update](#anytype.Event.Process.Update) + - [Event.Status](#anytype.Event.Status) + - [Event.Status.Thread](#anytype.Event.Status.Thread) + - [Event.Status.Thread.Account](#anytype.Event.Status.Thread.Account) + - [Event.Status.Thread.Cafe](#anytype.Event.Status.Thread.Cafe) + - [Event.Status.Thread.Cafe.PinStatus](#anytype.Event.Status.Thread.Cafe.PinStatus) + - [Event.Status.Thread.Device](#anytype.Event.Status.Thread.Device) + - [Event.Status.Thread.Summary](#anytype.Event.Status.Thread.Summary) + - [Event.User](#anytype.Event.User) + - [Event.User.Block](#anytype.Event.User.Block) + - [Event.User.Block.Join](#anytype.Event.User.Block.Join) + - [Event.User.Block.Left](#anytype.Event.User.Block.Left) + - [Event.User.Block.SelectRange](#anytype.Event.User.Block.SelectRange) + - [Event.User.Block.TextRange](#anytype.Event.User.Block.TextRange) + - [Model](#anytype.Model) + - [Model.Process](#anytype.Model.Process) + - [Model.Process.Progress](#anytype.Model.Process.Progress) + - [ResponseEvent](#anytype.ResponseEvent) - - [Event.Block.Dataview.SliceOperation](#anytype-Event-Block-Dataview-SliceOperation) - - [Event.Status.Thread.SyncStatus](#anytype-Event-Status-Thread-SyncStatus) - - [Model.Process.State](#anytype-Model-Process-State) - - [Model.Process.Type](#anytype-Model-Process-Type) + - [Event.Block.Dataview.SliceOperation](#anytype.Event.Block.Dataview.SliceOperation) + - [Event.Status.Thread.SyncStatus](#anytype.Event.Status.Thread.SyncStatus) + - [Model.Process.State](#anytype.Model.Process.State) + - [Model.Process.Type](#anytype.Model.Process.Type) -- [pb/protos/snapshot.proto](#pb_protos_snapshot-proto) - - [Profile](#anytype-Profile) - - [SnapshotWithType](#anytype-SnapshotWithType) +- [pb/protos/snapshot.proto](#pb/protos/snapshot.proto) + - [Profile](#anytype.Profile) + - [SnapshotWithType](#anytype.SnapshotWithType) -- [pkg/lib/pb/model/protos/localstore.proto](#pkg_lib_pb_model_protos_localstore-proto) - - [ObjectDetails](#anytype-model-ObjectDetails) - - [ObjectInfo](#anytype-model-ObjectInfo) - - [ObjectInfoWithLinks](#anytype-model-ObjectInfoWithLinks) - - [ObjectInfoWithOutboundLinks](#anytype-model-ObjectInfoWithOutboundLinks) - - [ObjectInfoWithOutboundLinksIDs](#anytype-model-ObjectInfoWithOutboundLinksIDs) - - [ObjectLinks](#anytype-model-ObjectLinks) - - [ObjectLinksInfo](#anytype-model-ObjectLinksInfo) - - [ObjectStoreChecksums](#anytype-model-ObjectStoreChecksums) +- [pkg/lib/pb/model/protos/localstore.proto](#pkg/lib/pb/model/protos/localstore.proto) + - [ObjectDetails](#anytype.model.ObjectDetails) + - [ObjectInfo](#anytype.model.ObjectInfo) + - [ObjectInfoWithLinks](#anytype.model.ObjectInfoWithLinks) + - [ObjectInfoWithOutboundLinks](#anytype.model.ObjectInfoWithOutboundLinks) + - [ObjectInfoWithOutboundLinksIDs](#anytype.model.ObjectInfoWithOutboundLinksIDs) + - [ObjectLinks](#anytype.model.ObjectLinks) + - [ObjectLinksInfo](#anytype.model.ObjectLinksInfo) + - [ObjectStoreChecksums](#anytype.model.ObjectStoreChecksums) -- [pkg/lib/pb/model/protos/models.proto](#pkg_lib_pb_model_protos_models-proto) - - [Account](#anytype-model-Account) - - [Account.Avatar](#anytype-model-Account-Avatar) - - [Account.Config](#anytype-model-Account-Config) - - [Account.Info](#anytype-model-Account-Info) - - [Account.Status](#anytype-model-Account-Status) - - [Block](#anytype-model-Block) - - [Block.Content](#anytype-model-Block-Content) - - [Block.Content.Bookmark](#anytype-model-Block-Content-Bookmark) - - [Block.Content.Dataview](#anytype-model-Block-Content-Dataview) - - [Block.Content.Dataview.Checkbox](#anytype-model-Block-Content-Dataview-Checkbox) - - [Block.Content.Dataview.Date](#anytype-model-Block-Content-Dataview-Date) - - [Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) - - [Block.Content.Dataview.Group](#anytype-model-Block-Content-Dataview-Group) - - [Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) - - [Block.Content.Dataview.ObjectOrder](#anytype-model-Block-Content-Dataview-ObjectOrder) - - [Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) - - [Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) - - [Block.Content.Dataview.Status](#anytype-model-Block-Content-Dataview-Status) - - [Block.Content.Dataview.Tag](#anytype-model-Block-Content-Dataview-Tag) - - [Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) - - [Block.Content.Dataview.ViewGroup](#anytype-model-Block-Content-Dataview-ViewGroup) - - [Block.Content.Div](#anytype-model-Block-Content-Div) - - [Block.Content.FeaturedRelations](#anytype-model-Block-Content-FeaturedRelations) - - [Block.Content.File](#anytype-model-Block-Content-File) - - [Block.Content.Icon](#anytype-model-Block-Content-Icon) - - [Block.Content.Latex](#anytype-model-Block-Content-Latex) - - [Block.Content.Layout](#anytype-model-Block-Content-Layout) - - [Block.Content.Link](#anytype-model-Block-Content-Link) - - [Block.Content.Relation](#anytype-model-Block-Content-Relation) - - [Block.Content.Smartblock](#anytype-model-Block-Content-Smartblock) - - [Block.Content.Table](#anytype-model-Block-Content-Table) - - [Block.Content.TableColumn](#anytype-model-Block-Content-TableColumn) - - [Block.Content.TableOfContents](#anytype-model-Block-Content-TableOfContents) - - [Block.Content.TableRow](#anytype-model-Block-Content-TableRow) - - [Block.Content.Text](#anytype-model-Block-Content-Text) - - [Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) - - [Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) - - [Block.Content.Widget](#anytype-model-Block-Content-Widget) - - [Block.Restrictions](#anytype-model-Block-Restrictions) - - [BlockMetaOnly](#anytype-model-BlockMetaOnly) - - [InternalFlag](#anytype-model-InternalFlag) - - [Layout](#anytype-model-Layout) - - [LinkPreview](#anytype-model-LinkPreview) - - [Object](#anytype-model-Object) - - [Object.ChangePayload](#anytype-model-Object-ChangePayload) - - [ObjectType](#anytype-model-ObjectType) - - [ObjectView](#anytype-model-ObjectView) - - [ObjectView.DetailsSet](#anytype-model-ObjectView-DetailsSet) - - [ObjectView.HistorySize](#anytype-model-ObjectView-HistorySize) - - [ObjectView.RelationWithValuePerObject](#anytype-model-ObjectView-RelationWithValuePerObject) - - [Range](#anytype-model-Range) - - [Relation](#anytype-model-Relation) - - [Relation.Option](#anytype-model-Relation-Option) - - [RelationLink](#anytype-model-RelationLink) - - [RelationOptions](#anytype-model-RelationOptions) - - [RelationWithValue](#anytype-model-RelationWithValue) - - [Relations](#anytype-model-Relations) - - [Restrictions](#anytype-model-Restrictions) - - [Restrictions.DataviewRestrictions](#anytype-model-Restrictions-DataviewRestrictions) - - [SmartBlockSnapshotBase](#anytype-model-SmartBlockSnapshotBase) - - [ThreadCreateQueueEntry](#anytype-model-ThreadCreateQueueEntry) - - [ThreadDeeplinkPayload](#anytype-model-ThreadDeeplinkPayload) +- [pkg/lib/pb/model/protos/models.proto](#pkg/lib/pb/model/protos/models.proto) + - [Account](#anytype.model.Account) + - [Account.Avatar](#anytype.model.Account.Avatar) + - [Account.Config](#anytype.model.Account.Config) + - [Account.Info](#anytype.model.Account.Info) + - [Account.Status](#anytype.model.Account.Status) + - [Block](#anytype.model.Block) + - [Block.Content](#anytype.model.Block.Content) + - [Block.Content.Bookmark](#anytype.model.Block.Content.Bookmark) + - [Block.Content.Dataview](#anytype.model.Block.Content.Dataview) + - [Block.Content.Dataview.Checkbox](#anytype.model.Block.Content.Dataview.Checkbox) + - [Block.Content.Dataview.Date](#anytype.model.Block.Content.Dataview.Date) + - [Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) + - [Block.Content.Dataview.Group](#anytype.model.Block.Content.Dataview.Group) + - [Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) + - [Block.Content.Dataview.ObjectOrder](#anytype.model.Block.Content.Dataview.ObjectOrder) + - [Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) + - [Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) + - [Block.Content.Dataview.Status](#anytype.model.Block.Content.Dataview.Status) + - [Block.Content.Dataview.Tag](#anytype.model.Block.Content.Dataview.Tag) + - [Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) + - [Block.Content.Dataview.ViewGroup](#anytype.model.Block.Content.Dataview.ViewGroup) + - [Block.Content.Div](#anytype.model.Block.Content.Div) + - [Block.Content.FeaturedRelations](#anytype.model.Block.Content.FeaturedRelations) + - [Block.Content.File](#anytype.model.Block.Content.File) + - [Block.Content.Icon](#anytype.model.Block.Content.Icon) + - [Block.Content.Latex](#anytype.model.Block.Content.Latex) + - [Block.Content.Layout](#anytype.model.Block.Content.Layout) + - [Block.Content.Link](#anytype.model.Block.Content.Link) + - [Block.Content.Relation](#anytype.model.Block.Content.Relation) + - [Block.Content.Smartblock](#anytype.model.Block.Content.Smartblock) + - [Block.Content.Table](#anytype.model.Block.Content.Table) + - [Block.Content.TableColumn](#anytype.model.Block.Content.TableColumn) + - [Block.Content.TableOfContents](#anytype.model.Block.Content.TableOfContents) + - [Block.Content.TableRow](#anytype.model.Block.Content.TableRow) + - [Block.Content.Text](#anytype.model.Block.Content.Text) + - [Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) + - [Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) + - [Block.Content.Widget](#anytype.model.Block.Content.Widget) + - [Block.Restrictions](#anytype.model.Block.Restrictions) + - [BlockMetaOnly](#anytype.model.BlockMetaOnly) + - [InternalFlag](#anytype.model.InternalFlag) + - [Layout](#anytype.model.Layout) + - [LinkPreview](#anytype.model.LinkPreview) + - [Object](#anytype.model.Object) + - [Object.ChangePayload](#anytype.model.Object.ChangePayload) + - [ObjectType](#anytype.model.ObjectType) + - [ObjectView](#anytype.model.ObjectView) + - [ObjectView.DetailsSet](#anytype.model.ObjectView.DetailsSet) + - [ObjectView.HistorySize](#anytype.model.ObjectView.HistorySize) + - [ObjectView.RelationWithValuePerObject](#anytype.model.ObjectView.RelationWithValuePerObject) + - [Range](#anytype.model.Range) + - [Relation](#anytype.model.Relation) + - [Relation.Option](#anytype.model.Relation.Option) + - [RelationLink](#anytype.model.RelationLink) + - [RelationOptions](#anytype.model.RelationOptions) + - [RelationWithValue](#anytype.model.RelationWithValue) + - [Relations](#anytype.model.Relations) + - [Restrictions](#anytype.model.Restrictions) + - [Restrictions.DataviewRestrictions](#anytype.model.Restrictions.DataviewRestrictions) + - [SmartBlockSnapshotBase](#anytype.model.SmartBlockSnapshotBase) + - [ThreadCreateQueueEntry](#anytype.model.ThreadCreateQueueEntry) + - [ThreadDeeplinkPayload](#anytype.model.ThreadDeeplinkPayload) - - [Account.StatusType](#anytype-model-Account-StatusType) - - [Block.Align](#anytype-model-Block-Align) - - [Block.Content.Bookmark.State](#anytype-model-Block-Content-Bookmark-State) - - [Block.Content.Dataview.Filter.Condition](#anytype-model-Block-Content-Dataview-Filter-Condition) - - [Block.Content.Dataview.Filter.Operator](#anytype-model-Block-Content-Dataview-Filter-Operator) - - [Block.Content.Dataview.Filter.QuickOption](#anytype-model-Block-Content-Dataview-Filter-QuickOption) - - [Block.Content.Dataview.Relation.DateFormat](#anytype-model-Block-Content-Dataview-Relation-DateFormat) - - [Block.Content.Dataview.Relation.TimeFormat](#anytype-model-Block-Content-Dataview-Relation-TimeFormat) - - [Block.Content.Dataview.Sort.Type](#anytype-model-Block-Content-Dataview-Sort-Type) - - [Block.Content.Dataview.View.Size](#anytype-model-Block-Content-Dataview-View-Size) - - [Block.Content.Dataview.View.Type](#anytype-model-Block-Content-Dataview-View-Type) - - [Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) - - [Block.Content.File.State](#anytype-model-Block-Content-File-State) - - [Block.Content.File.Style](#anytype-model-Block-Content-File-Style) - - [Block.Content.File.Type](#anytype-model-Block-Content-File-Type) - - [Block.Content.Layout.Style](#anytype-model-Block-Content-Layout-Style) - - [Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) - - [Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) - - [Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) - - [Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) - - [Block.Content.Text.Mark.Type](#anytype-model-Block-Content-Text-Mark-Type) - - [Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) - - [Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) - - [Block.Position](#anytype-model-Block-Position) - - [Block.VerticalAlign](#anytype-model-Block-VerticalAlign) - - [InternalFlag.Value](#anytype-model-InternalFlag-Value) - - [LinkPreview.Type](#anytype-model-LinkPreview-Type) - - [ObjectType.Layout](#anytype-model-ObjectType-Layout) - - [Relation.DataSource](#anytype-model-Relation-DataSource) - - [Relation.Scope](#anytype-model-Relation-Scope) - - [RelationFormat](#anytype-model-RelationFormat) - - [Restrictions.DataviewRestriction](#anytype-model-Restrictions-DataviewRestriction) - - [Restrictions.ObjectRestriction](#anytype-model-Restrictions-ObjectRestriction) - - [SmartBlockType](#anytype-model-SmartBlockType) + - [Account.StatusType](#anytype.model.Account.StatusType) + - [Block.Align](#anytype.model.Block.Align) + - [Block.Content.Bookmark.State](#anytype.model.Block.Content.Bookmark.State) + - [Block.Content.Dataview.Filter.Condition](#anytype.model.Block.Content.Dataview.Filter.Condition) + - [Block.Content.Dataview.Filter.Operator](#anytype.model.Block.Content.Dataview.Filter.Operator) + - [Block.Content.Dataview.Filter.QuickOption](#anytype.model.Block.Content.Dataview.Filter.QuickOption) + - [Block.Content.Dataview.Relation.DateFormat](#anytype.model.Block.Content.Dataview.Relation.DateFormat) + - [Block.Content.Dataview.Relation.TimeFormat](#anytype.model.Block.Content.Dataview.Relation.TimeFormat) + - [Block.Content.Dataview.Sort.Type](#anytype.model.Block.Content.Dataview.Sort.Type) + - [Block.Content.Dataview.View.Size](#anytype.model.Block.Content.Dataview.View.Size) + - [Block.Content.Dataview.View.Type](#anytype.model.Block.Content.Dataview.View.Type) + - [Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) + - [Block.Content.File.State](#anytype.model.Block.Content.File.State) + - [Block.Content.File.Style](#anytype.model.Block.Content.File.Style) + - [Block.Content.File.Type](#anytype.model.Block.Content.File.Type) + - [Block.Content.Layout.Style](#anytype.model.Block.Content.Layout.Style) + - [Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) + - [Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) + - [Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) + - [Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) + - [Block.Content.Text.Mark.Type](#anytype.model.Block.Content.Text.Mark.Type) + - [Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) + - [Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) + - [Block.Position](#anytype.model.Block.Position) + - [Block.VerticalAlign](#anytype.model.Block.VerticalAlign) + - [InternalFlag.Value](#anytype.model.InternalFlag.Value) + - [LinkPreview.Type](#anytype.model.LinkPreview.Type) + - [ObjectType.Layout](#anytype.model.ObjectType.Layout) + - [Relation.DataSource](#anytype.model.Relation.DataSource) + - [Relation.Scope](#anytype.model.Relation.Scope) + - [RelationFormat](#anytype.model.RelationFormat) + - [Restrictions.DataviewRestriction](#anytype.model.Restrictions.DataviewRestriction) + - [Restrictions.ObjectRestriction](#anytype.model.Restrictions.ObjectRestriction) + - [SmartBlockType](#anytype.model.SmartBlockType) - [Scalar Value Types](#scalar-value-types) - +
## pb/protos/service/service.proto @@ -1409,214 +1403,213 @@ - + ### ClientCommands | Method Name | Request Type | Response Type | Description | | ----------- | ------------ | ------------- | ------------| -| AppGetVersion | [Rpc.App.GetVersion.Request](#anytype-Rpc-App-GetVersion-Request) | [Rpc.App.GetVersion.Response](#anytype-Rpc-App-GetVersion-Response) | | -| AppSetDeviceState | [Rpc.App.SetDeviceState.Request](#anytype-Rpc-App-SetDeviceState-Request) | [Rpc.App.SetDeviceState.Response](#anytype-Rpc-App-SetDeviceState-Response) | | -| AppShutdown | [Rpc.App.Shutdown.Request](#anytype-Rpc-App-Shutdown-Request) | [Rpc.App.Shutdown.Response](#anytype-Rpc-App-Shutdown-Response) | | -| WalletCreate | [Rpc.Wallet.Create.Request](#anytype-Rpc-Wallet-Create-Request) | [Rpc.Wallet.Create.Response](#anytype-Rpc-Wallet-Create-Response) | Wallet *** | -| WalletRecover | [Rpc.Wallet.Recover.Request](#anytype-Rpc-Wallet-Recover-Request) | [Rpc.Wallet.Recover.Response](#anytype-Rpc-Wallet-Recover-Response) | | -| WalletConvert | [Rpc.Wallet.Convert.Request](#anytype-Rpc-Wallet-Convert-Request) | [Rpc.Wallet.Convert.Response](#anytype-Rpc-Wallet-Convert-Response) | | -| WalletCreateSession | [Rpc.Wallet.CreateSession.Request](#anytype-Rpc-Wallet-CreateSession-Request) | [Rpc.Wallet.CreateSession.Response](#anytype-Rpc-Wallet-CreateSession-Response) | | -| WalletCloseSession | [Rpc.Wallet.CloseSession.Request](#anytype-Rpc-Wallet-CloseSession-Request) | [Rpc.Wallet.CloseSession.Response](#anytype-Rpc-Wallet-CloseSession-Response) | | -| WorkspaceCreate | [Rpc.Workspace.Create.Request](#anytype-Rpc-Workspace-Create-Request) | [Rpc.Workspace.Create.Response](#anytype-Rpc-Workspace-Create-Response) | Workspace *** | -| WorkspaceObjectAdd | [Rpc.Workspace.Object.Add.Request](#anytype-Rpc-Workspace-Object-Add-Request) | [Rpc.Workspace.Object.Add.Response](#anytype-Rpc-Workspace-Object-Add-Response) | | -| WorkspaceObjectListAdd | [Rpc.Workspace.Object.ListAdd.Request](#anytype-Rpc-Workspace-Object-ListAdd-Request) | [Rpc.Workspace.Object.ListAdd.Response](#anytype-Rpc-Workspace-Object-ListAdd-Response) | | -| WorkspaceObjectListRemove | [Rpc.Workspace.Object.ListRemove.Request](#anytype-Rpc-Workspace-Object-ListRemove-Request) | [Rpc.Workspace.Object.ListRemove.Response](#anytype-Rpc-Workspace-Object-ListRemove-Response) | | -| WorkspaceSelect | [Rpc.Workspace.Select.Request](#anytype-Rpc-Workspace-Select-Request) | [Rpc.Workspace.Select.Response](#anytype-Rpc-Workspace-Select-Response) | | -| WorkspaceGetCurrent | [Rpc.Workspace.GetCurrent.Request](#anytype-Rpc-Workspace-GetCurrent-Request) | [Rpc.Workspace.GetCurrent.Response](#anytype-Rpc-Workspace-GetCurrent-Response) | | -| WorkspaceGetAll | [Rpc.Workspace.GetAll.Request](#anytype-Rpc-Workspace-GetAll-Request) | [Rpc.Workspace.GetAll.Response](#anytype-Rpc-Workspace-GetAll-Response) | | -| WorkspaceSetIsHighlighted | [Rpc.Workspace.SetIsHighlighted.Request](#anytype-Rpc-Workspace-SetIsHighlighted-Request) | [Rpc.Workspace.SetIsHighlighted.Response](#anytype-Rpc-Workspace-SetIsHighlighted-Response) | | -| WorkspaceExport | [Rpc.Workspace.Export.Request](#anytype-Rpc-Workspace-Export-Request) | [Rpc.Workspace.Export.Response](#anytype-Rpc-Workspace-Export-Response) | | -| AccountRecover | [Rpc.Account.Recover.Request](#anytype-Rpc-Account-Recover-Request) | [Rpc.Account.Recover.Response](#anytype-Rpc-Account-Recover-Response) | Account *** | -| AccountCreate | [Rpc.Account.Create.Request](#anytype-Rpc-Account-Create-Request) | [Rpc.Account.Create.Response](#anytype-Rpc-Account-Create-Response) | | -| AccountDelete | [Rpc.Account.Delete.Request](#anytype-Rpc-Account-Delete-Request) | [Rpc.Account.Delete.Response](#anytype-Rpc-Account-Delete-Response) | | -| AccountSelect | [Rpc.Account.Select.Request](#anytype-Rpc-Account-Select-Request) | [Rpc.Account.Select.Response](#anytype-Rpc-Account-Select-Response) | | -| AccountStop | [Rpc.Account.Stop.Request](#anytype-Rpc-Account-Stop-Request) | [Rpc.Account.Stop.Response](#anytype-Rpc-Account-Stop-Response) | | -| AccountMove | [Rpc.Account.Move.Request](#anytype-Rpc-Account-Move-Request) | [Rpc.Account.Move.Response](#anytype-Rpc-Account-Move-Response) | | -| AccountConfigUpdate | [Rpc.Account.ConfigUpdate.Request](#anytype-Rpc-Account-ConfigUpdate-Request) | [Rpc.Account.ConfigUpdate.Response](#anytype-Rpc-Account-ConfigUpdate-Response) | | -| AccountRecoverFromLegacyExport | [Rpc.Account.RecoverFromLegacyExport.Request](#anytype-Rpc-Account-RecoverFromLegacyExport-Request) | [Rpc.Account.RecoverFromLegacyExport.Response](#anytype-Rpc-Account-RecoverFromLegacyExport-Response) | | -| ObjectOpen | [Rpc.Object.Open.Request](#anytype-Rpc-Object-Open-Request) | [Rpc.Object.Open.Response](#anytype-Rpc-Object-Open-Response) | Object *** | -| ObjectClose | [Rpc.Object.Close.Request](#anytype-Rpc-Object-Close-Request) | [Rpc.Object.Close.Response](#anytype-Rpc-Object-Close-Response) | | -| ObjectShow | [Rpc.Object.Show.Request](#anytype-Rpc-Object-Show-Request) | [Rpc.Object.Show.Response](#anytype-Rpc-Object-Show-Response) | | -| ObjectCreate | [Rpc.Object.Create.Request](#anytype-Rpc-Object-Create-Request) | [Rpc.Object.Create.Response](#anytype-Rpc-Object-Create-Response) | ObjectCreate just creates the new page, without adding the link to it from some other page | -| ObjectCreateBookmark | [Rpc.Object.CreateBookmark.Request](#anytype-Rpc-Object-CreateBookmark-Request) | [Rpc.Object.CreateBookmark.Response](#anytype-Rpc-Object-CreateBookmark-Response) | | -| ObjectCreateSet | [Rpc.Object.CreateSet.Request](#anytype-Rpc-Object-CreateSet-Request) | [Rpc.Object.CreateSet.Response](#anytype-Rpc-Object-CreateSet-Response) | ObjectCreateSet just creates the new set, without adding the link to it from some other page | -| ObjectGraph | [Rpc.Object.Graph.Request](#anytype-Rpc-Object-Graph-Request) | [Rpc.Object.Graph.Response](#anytype-Rpc-Object-Graph-Response) | | -| ObjectSearch | [Rpc.Object.Search.Request](#anytype-Rpc-Object-Search-Request) | [Rpc.Object.Search.Response](#anytype-Rpc-Object-Search-Response) | | -| ObjectSearchSubscribe | [Rpc.Object.SearchSubscribe.Request](#anytype-Rpc-Object-SearchSubscribe-Request) | [Rpc.Object.SearchSubscribe.Response](#anytype-Rpc-Object-SearchSubscribe-Response) | | -| ObjectSubscribeIds | [Rpc.Object.SubscribeIds.Request](#anytype-Rpc-Object-SubscribeIds-Request) | [Rpc.Object.SubscribeIds.Response](#anytype-Rpc-Object-SubscribeIds-Response) | | -| ObjectGroupsSubscribe | [Rpc.Object.GroupsSubscribe.Request](#anytype-Rpc-Object-GroupsSubscribe-Request) | [Rpc.Object.GroupsSubscribe.Response](#anytype-Rpc-Object-GroupsSubscribe-Response) | | -| ObjectSearchUnsubscribe | [Rpc.Object.SearchUnsubscribe.Request](#anytype-Rpc-Object-SearchUnsubscribe-Request) | [Rpc.Object.SearchUnsubscribe.Response](#anytype-Rpc-Object-SearchUnsubscribe-Response) | | -| ObjectSetDetails | [Rpc.Object.SetDetails.Request](#anytype-Rpc-Object-SetDetails-Request) | [Rpc.Object.SetDetails.Response](#anytype-Rpc-Object-SetDetails-Response) | | -| ObjectDuplicate | [Rpc.Object.Duplicate.Request](#anytype-Rpc-Object-Duplicate-Request) | [Rpc.Object.Duplicate.Response](#anytype-Rpc-Object-Duplicate-Response) | | -| ObjectSetObjectType | [Rpc.Object.SetObjectType.Request](#anytype-Rpc-Object-SetObjectType-Request) | [Rpc.Object.SetObjectType.Response](#anytype-Rpc-Object-SetObjectType-Response) | ObjectSetObjectType sets an existing object type to the object so it will appear in sets and suggests relations from this type | -| ObjectSetLayout | [Rpc.Object.SetLayout.Request](#anytype-Rpc-Object-SetLayout-Request) | [Rpc.Object.SetLayout.Response](#anytype-Rpc-Object-SetLayout-Response) | | -| ObjectSetInternalFlags | [Rpc.Object.SetInternalFlags.Request](#anytype-Rpc-Object-SetInternalFlags-Request) | [Rpc.Object.SetInternalFlags.Response](#anytype-Rpc-Object-SetInternalFlags-Response) | | -| ObjectSetIsFavorite | [Rpc.Object.SetIsFavorite.Request](#anytype-Rpc-Object-SetIsFavorite-Request) | [Rpc.Object.SetIsFavorite.Response](#anytype-Rpc-Object-SetIsFavorite-Response) | | -| ObjectSetIsArchived | [Rpc.Object.SetIsArchived.Request](#anytype-Rpc-Object-SetIsArchived-Request) | [Rpc.Object.SetIsArchived.Response](#anytype-Rpc-Object-SetIsArchived-Response) | | -| ObjectSetSource | [Rpc.Object.SetSource.Request](#anytype-Rpc-Object-SetSource-Request) | [Rpc.Object.SetSource.Response](#anytype-Rpc-Object-SetSource-Response) | | -| ObjectWorkspaceSetDashboard | [Rpc.Object.WorkspaceSetDashboard.Request](#anytype-Rpc-Object-WorkspaceSetDashboard-Request) | [Rpc.Object.WorkspaceSetDashboard.Response](#anytype-Rpc-Object-WorkspaceSetDashboard-Response) | | -| ObjectListDuplicate | [Rpc.Object.ListDuplicate.Request](#anytype-Rpc-Object-ListDuplicate-Request) | [Rpc.Object.ListDuplicate.Response](#anytype-Rpc-Object-ListDuplicate-Response) | | -| ObjectListDelete | [Rpc.Object.ListDelete.Request](#anytype-Rpc-Object-ListDelete-Request) | [Rpc.Object.ListDelete.Response](#anytype-Rpc-Object-ListDelete-Response) | | -| ObjectListSetIsArchived | [Rpc.Object.ListSetIsArchived.Request](#anytype-Rpc-Object-ListSetIsArchived-Request) | [Rpc.Object.ListSetIsArchived.Response](#anytype-Rpc-Object-ListSetIsArchived-Response) | | -| ObjectListSetIsFavorite | [Rpc.Object.ListSetIsFavorite.Request](#anytype-Rpc-Object-ListSetIsFavorite-Request) | [Rpc.Object.ListSetIsFavorite.Response](#anytype-Rpc-Object-ListSetIsFavorite-Response) | | -| ObjectApplyTemplate | [Rpc.Object.ApplyTemplate.Request](#anytype-Rpc-Object-ApplyTemplate-Request) | [Rpc.Object.ApplyTemplate.Response](#anytype-Rpc-Object-ApplyTemplate-Response) | | -| ObjectToSet | [Rpc.Object.ToSet.Request](#anytype-Rpc-Object-ToSet-Request) | [Rpc.Object.ToSet.Response](#anytype-Rpc-Object-ToSet-Response) | ObjectToSet creates new set from given object and removes object | -| ObjectToCollection | [Rpc.Object.ToCollection.Request](#anytype-Rpc-Object-ToCollection-Request) | [Rpc.Object.ToCollection.Response](#anytype-Rpc-Object-ToCollection-Response) | | -| ObjectShareByLink | [Rpc.Object.ShareByLink.Request](#anytype-Rpc-Object-ShareByLink-Request) | [Rpc.Object.ShareByLink.Response](#anytype-Rpc-Object-ShareByLink-Response) | | -| ObjectUndo | [Rpc.Object.Undo.Request](#anytype-Rpc-Object-Undo-Request) | [Rpc.Object.Undo.Response](#anytype-Rpc-Object-Undo-Response) | | -| ObjectRedo | [Rpc.Object.Redo.Request](#anytype-Rpc-Object-Redo-Request) | [Rpc.Object.Redo.Response](#anytype-Rpc-Object-Redo-Response) | | -| ObjectListExport | [Rpc.Object.ListExport.Request](#anytype-Rpc-Object-ListExport-Request) | [Rpc.Object.ListExport.Response](#anytype-Rpc-Object-ListExport-Response) | | -| ObjectBookmarkFetch | [Rpc.Object.BookmarkFetch.Request](#anytype-Rpc-Object-BookmarkFetch-Request) | [Rpc.Object.BookmarkFetch.Response](#anytype-Rpc-Object-BookmarkFetch-Response) | | -| ObjectToBookmark | [Rpc.Object.ToBookmark.Request](#anytype-Rpc-Object-ToBookmark-Request) | [Rpc.Object.ToBookmark.Response](#anytype-Rpc-Object-ToBookmark-Response) | | -| ObjectImport | [Rpc.Object.Import.Request](#anytype-Rpc-Object-Import-Request) | [Rpc.Object.Import.Response](#anytype-Rpc-Object-Import-Response) | | -| ObjectImportList | [Rpc.Object.ImportList.Request](#anytype-Rpc-Object-ImportList-Request) | [Rpc.Object.ImportList.Response](#anytype-Rpc-Object-ImportList-Response) | | -| ObjectImportNotionValidateToken | [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype-Rpc-Object-Import-Notion-ValidateToken-Request) | [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response) | | -| ObjectCollectionAdd | [Rpc.ObjectCollection.Add.Request](#anytype-Rpc-ObjectCollection-Add-Request) | [Rpc.ObjectCollection.Add.Response](#anytype-Rpc-ObjectCollection-Add-Response) | Collections *** | -| ObjectCollectionRemove | [Rpc.ObjectCollection.Remove.Request](#anytype-Rpc-ObjectCollection-Remove-Request) | [Rpc.ObjectCollection.Remove.Response](#anytype-Rpc-ObjectCollection-Remove-Response) | | -| ObjectCollectionSort | [Rpc.ObjectCollection.Sort.Request](#anytype-Rpc-ObjectCollection-Sort-Request) | [Rpc.ObjectCollection.Sort.Response](#anytype-Rpc-ObjectCollection-Sort-Response) | | -| ObjectCreateRelation | [Rpc.Object.CreateRelation.Request](#anytype-Rpc-Object-CreateRelation-Request) | [Rpc.Object.CreateRelation.Response](#anytype-Rpc-Object-CreateRelation-Response) | Relations *** | -| ObjectCreateRelationOption | [Rpc.Object.CreateRelationOption.Request](#anytype-Rpc-Object-CreateRelationOption-Request) | [Rpc.Object.CreateRelationOption.Response](#anytype-Rpc-Object-CreateRelationOption-Response) | | -| RelationListRemoveOption | [Rpc.Relation.ListRemoveOption.Request](#anytype-Rpc-Relation-ListRemoveOption-Request) | [Rpc.Relation.ListRemoveOption.Response](#anytype-Rpc-Relation-ListRemoveOption-Response) | | -| RelationOptions | [Rpc.Relation.Options.Request](#anytype-Rpc-Relation-Options-Request) | [Rpc.Relation.Options.Response](#anytype-Rpc-Relation-Options-Response) | | -| ObjectRelationAdd | [Rpc.ObjectRelation.Add.Request](#anytype-Rpc-ObjectRelation-Add-Request) | [Rpc.ObjectRelation.Add.Response](#anytype-Rpc-ObjectRelation-Add-Response) | Object Relations *** | -| ObjectRelationDelete | [Rpc.ObjectRelation.Delete.Request](#anytype-Rpc-ObjectRelation-Delete-Request) | [Rpc.ObjectRelation.Delete.Response](#anytype-Rpc-ObjectRelation-Delete-Response) | | -| ObjectRelationAddFeatured | [Rpc.ObjectRelation.AddFeatured.Request](#anytype-Rpc-ObjectRelation-AddFeatured-Request) | [Rpc.ObjectRelation.AddFeatured.Response](#anytype-Rpc-ObjectRelation-AddFeatured-Response) | | -| ObjectRelationRemoveFeatured | [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype-Rpc-ObjectRelation-RemoveFeatured-Request) | [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response) | | -| ObjectRelationListAvailable | [Rpc.ObjectRelation.ListAvailable.Request](#anytype-Rpc-ObjectRelation-ListAvailable-Request) | [Rpc.ObjectRelation.ListAvailable.Response](#anytype-Rpc-ObjectRelation-ListAvailable-Response) | | -| ObjectCreateObjectType | [Rpc.Object.CreateObjectType.Request](#anytype-Rpc-Object-CreateObjectType-Request) | [Rpc.Object.CreateObjectType.Response](#anytype-Rpc-Object-CreateObjectType-Response) | ObjectType commands *** | -| ObjectTypeRelationList | [Rpc.ObjectType.Relation.List.Request](#anytype-Rpc-ObjectType-Relation-List-Request) | [Rpc.ObjectType.Relation.List.Response](#anytype-Rpc-ObjectType-Relation-List-Response) | | -| ObjectTypeRelationAdd | [Rpc.ObjectType.Relation.Add.Request](#anytype-Rpc-ObjectType-Relation-Add-Request) | [Rpc.ObjectType.Relation.Add.Response](#anytype-Rpc-ObjectType-Relation-Add-Response) | | -| ObjectTypeRelationRemove | [Rpc.ObjectType.Relation.Remove.Request](#anytype-Rpc-ObjectType-Relation-Remove-Request) | [Rpc.ObjectType.Relation.Remove.Response](#anytype-Rpc-ObjectType-Relation-Remove-Response) | | -| HistoryShowVersion | [Rpc.History.ShowVersion.Request](#anytype-Rpc-History-ShowVersion-Request) | [Rpc.History.ShowVersion.Response](#anytype-Rpc-History-ShowVersion-Response) | | -| HistoryGetVersions | [Rpc.History.GetVersions.Request](#anytype-Rpc-History-GetVersions-Request) | [Rpc.History.GetVersions.Response](#anytype-Rpc-History-GetVersions-Response) | | -| HistorySetVersion | [Rpc.History.SetVersion.Request](#anytype-Rpc-History-SetVersion-Request) | [Rpc.History.SetVersion.Response](#anytype-Rpc-History-SetVersion-Response) | | -| FileOffload | [Rpc.File.Offload.Request](#anytype-Rpc-File-Offload-Request) | [Rpc.File.Offload.Response](#anytype-Rpc-File-Offload-Response) | Files *** | -| FileListOffload | [Rpc.File.ListOffload.Request](#anytype-Rpc-File-ListOffload-Request) | [Rpc.File.ListOffload.Response](#anytype-Rpc-File-ListOffload-Response) | | -| FileUpload | [Rpc.File.Upload.Request](#anytype-Rpc-File-Upload-Request) | [Rpc.File.Upload.Response](#anytype-Rpc-File-Upload-Response) | | -| FileDownload | [Rpc.File.Download.Request](#anytype-Rpc-File-Download-Request) | [Rpc.File.Download.Response](#anytype-Rpc-File-Download-Response) | | -| FileDrop | [Rpc.File.Drop.Request](#anytype-Rpc-File-Drop-Request) | [Rpc.File.Drop.Response](#anytype-Rpc-File-Drop-Response) | | -| FileSpaceUsage | [Rpc.File.SpaceUsage.Request](#anytype-Rpc-File-SpaceUsage-Request) | [Rpc.File.SpaceUsage.Response](#anytype-Rpc-File-SpaceUsage-Response) | | -| NavigationListObjects | [Rpc.Navigation.ListObjects.Request](#anytype-Rpc-Navigation-ListObjects-Request) | [Rpc.Navigation.ListObjects.Response](#anytype-Rpc-Navigation-ListObjects-Response) | | -| NavigationGetObjectInfoWithLinks | [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Request) | [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response) | | -| TemplateCreateFromObject | [Rpc.Template.CreateFromObject.Request](#anytype-Rpc-Template-CreateFromObject-Request) | [Rpc.Template.CreateFromObject.Response](#anytype-Rpc-Template-CreateFromObject-Response) | | -| TemplateCreateFromObjectType | [Rpc.Template.CreateFromObjectType.Request](#anytype-Rpc-Template-CreateFromObjectType-Request) | [Rpc.Template.CreateFromObjectType.Response](#anytype-Rpc-Template-CreateFromObjectType-Response) | to be renamed to ObjectCreateTemplate | -| TemplateClone | [Rpc.Template.Clone.Request](#anytype-Rpc-Template-Clone-Request) | [Rpc.Template.Clone.Response](#anytype-Rpc-Template-Clone-Response) | | -| TemplateExportAll | [Rpc.Template.ExportAll.Request](#anytype-Rpc-Template-ExportAll-Request) | [Rpc.Template.ExportAll.Response](#anytype-Rpc-Template-ExportAll-Response) | | -| LinkPreview | [Rpc.LinkPreview.Request](#anytype-Rpc-LinkPreview-Request) | [Rpc.LinkPreview.Response](#anytype-Rpc-LinkPreview-Response) | | -| UnsplashSearch | [Rpc.Unsplash.Search.Request](#anytype-Rpc-Unsplash-Search-Request) | [Rpc.Unsplash.Search.Response](#anytype-Rpc-Unsplash-Search-Response) | | -| UnsplashDownload | [Rpc.Unsplash.Download.Request](#anytype-Rpc-Unsplash-Download-Request) | [Rpc.Unsplash.Download.Response](#anytype-Rpc-Unsplash-Download-Response) | UnsplashDownload downloads picture from unsplash by ID, put it to the IPFS and returns the hash. The artist info is available in the object details | -| BlockUpload | [Rpc.Block.Upload.Request](#anytype-Rpc-Block-Upload-Request) | [Rpc.Block.Upload.Response](#anytype-Rpc-Block-Upload-Response) | General Block commands *** | -| BlockReplace | [Rpc.Block.Replace.Request](#anytype-Rpc-Block-Replace-Request) | [Rpc.Block.Replace.Response](#anytype-Rpc-Block-Replace-Response) | | -| BlockCreate | [Rpc.Block.Create.Request](#anytype-Rpc-Block-Create-Request) | [Rpc.Block.Create.Response](#anytype-Rpc-Block-Create-Response) | | -| BlockSplit | [Rpc.Block.Split.Request](#anytype-Rpc-Block-Split-Request) | [Rpc.Block.Split.Response](#anytype-Rpc-Block-Split-Response) | | -| BlockMerge | [Rpc.Block.Merge.Request](#anytype-Rpc-Block-Merge-Request) | [Rpc.Block.Merge.Response](#anytype-Rpc-Block-Merge-Response) | | -| BlockCopy | [Rpc.Block.Copy.Request](#anytype-Rpc-Block-Copy-Request) | [Rpc.Block.Copy.Response](#anytype-Rpc-Block-Copy-Response) | | -| BlockPaste | [Rpc.Block.Paste.Request](#anytype-Rpc-Block-Paste-Request) | [Rpc.Block.Paste.Response](#anytype-Rpc-Block-Paste-Response) | | -| BlockCut | [Rpc.Block.Cut.Request](#anytype-Rpc-Block-Cut-Request) | [Rpc.Block.Cut.Response](#anytype-Rpc-Block-Cut-Response) | | -| BlockSetFields | [Rpc.Block.SetFields.Request](#anytype-Rpc-Block-SetFields-Request) | [Rpc.Block.SetFields.Response](#anytype-Rpc-Block-SetFields-Response) | | -| BlockExport | [Rpc.Block.Export.Request](#anytype-Rpc-Block-Export-Request) | [Rpc.Block.Export.Response](#anytype-Rpc-Block-Export-Response) | | -| BlockListDelete | [Rpc.Block.ListDelete.Request](#anytype-Rpc-Block-ListDelete-Request) | [Rpc.Block.ListDelete.Response](#anytype-Rpc-Block-ListDelete-Response) | | -| BlockListMoveToExistingObject | [Rpc.Block.ListMoveToExistingObject.Request](#anytype-Rpc-Block-ListMoveToExistingObject-Request) | [Rpc.Block.ListMoveToExistingObject.Response](#anytype-Rpc-Block-ListMoveToExistingObject-Response) | | -| BlockListMoveToNewObject | [Rpc.Block.ListMoveToNewObject.Request](#anytype-Rpc-Block-ListMoveToNewObject-Request) | [Rpc.Block.ListMoveToNewObject.Response](#anytype-Rpc-Block-ListMoveToNewObject-Response) | | -| BlockListConvertToObjects | [Rpc.Block.ListConvertToObjects.Request](#anytype-Rpc-Block-ListConvertToObjects-Request) | [Rpc.Block.ListConvertToObjects.Response](#anytype-Rpc-Block-ListConvertToObjects-Response) | | -| BlockListSetFields | [Rpc.Block.ListSetFields.Request](#anytype-Rpc-Block-ListSetFields-Request) | [Rpc.Block.ListSetFields.Response](#anytype-Rpc-Block-ListSetFields-Response) | | -| BlockListDuplicate | [Rpc.Block.ListDuplicate.Request](#anytype-Rpc-Block-ListDuplicate-Request) | [Rpc.Block.ListDuplicate.Response](#anytype-Rpc-Block-ListDuplicate-Response) | | -| BlockListSetBackgroundColor | [Rpc.Block.ListSetBackgroundColor.Request](#anytype-Rpc-Block-ListSetBackgroundColor-Request) | [Rpc.Block.ListSetBackgroundColor.Response](#anytype-Rpc-Block-ListSetBackgroundColor-Response) | | -| BlockListSetAlign | [Rpc.Block.ListSetAlign.Request](#anytype-Rpc-Block-ListSetAlign-Request) | [Rpc.Block.ListSetAlign.Response](#anytype-Rpc-Block-ListSetAlign-Response) | | -| BlockListSetVerticalAlign | [Rpc.Block.ListSetVerticalAlign.Request](#anytype-Rpc-Block-ListSetVerticalAlign-Request) | [Rpc.Block.ListSetVerticalAlign.Response](#anytype-Rpc-Block-ListSetVerticalAlign-Response) | | -| BlockListTurnInto | [Rpc.Block.ListTurnInto.Request](#anytype-Rpc-Block-ListTurnInto-Request) | [Rpc.Block.ListTurnInto.Response](#anytype-Rpc-Block-ListTurnInto-Response) | | -| BlockTextSetText | [Rpc.BlockText.SetText.Request](#anytype-Rpc-BlockText-SetText-Request) | [Rpc.BlockText.SetText.Response](#anytype-Rpc-BlockText-SetText-Response) | Text Block commands *** | -| BlockTextSetColor | [Rpc.BlockText.SetColor.Request](#anytype-Rpc-BlockText-SetColor-Request) | [Rpc.BlockText.SetColor.Response](#anytype-Rpc-BlockText-SetColor-Response) | | -| BlockTextSetStyle | [Rpc.BlockText.SetStyle.Request](#anytype-Rpc-BlockText-SetStyle-Request) | [Rpc.BlockText.SetStyle.Response](#anytype-Rpc-BlockText-SetStyle-Response) | | -| BlockTextSetChecked | [Rpc.BlockText.SetChecked.Request](#anytype-Rpc-BlockText-SetChecked-Request) | [Rpc.BlockText.SetChecked.Response](#anytype-Rpc-BlockText-SetChecked-Response) | | -| BlockTextSetIcon | [Rpc.BlockText.SetIcon.Request](#anytype-Rpc-BlockText-SetIcon-Request) | [Rpc.BlockText.SetIcon.Response](#anytype-Rpc-BlockText-SetIcon-Response) | | -| BlockTextListSetColor | [Rpc.BlockText.ListSetColor.Request](#anytype-Rpc-BlockText-ListSetColor-Request) | [Rpc.BlockText.ListSetColor.Response](#anytype-Rpc-BlockText-ListSetColor-Response) | | -| BlockTextListSetMark | [Rpc.BlockText.ListSetMark.Request](#anytype-Rpc-BlockText-ListSetMark-Request) | [Rpc.BlockText.ListSetMark.Response](#anytype-Rpc-BlockText-ListSetMark-Response) | | -| BlockTextListSetStyle | [Rpc.BlockText.ListSetStyle.Request](#anytype-Rpc-BlockText-ListSetStyle-Request) | [Rpc.BlockText.ListSetStyle.Response](#anytype-Rpc-BlockText-ListSetStyle-Response) | | -| BlockTextListClearStyle | [Rpc.BlockText.ListClearStyle.Request](#anytype-Rpc-BlockText-ListClearStyle-Request) | [Rpc.BlockText.ListClearStyle.Response](#anytype-Rpc-BlockText-ListClearStyle-Response) | | -| BlockTextListClearContent | [Rpc.BlockText.ListClearContent.Request](#anytype-Rpc-BlockText-ListClearContent-Request) | [Rpc.BlockText.ListClearContent.Response](#anytype-Rpc-BlockText-ListClearContent-Response) | | -| BlockFileSetName | [Rpc.BlockFile.SetName.Request](#anytype-Rpc-BlockFile-SetName-Request) | [Rpc.BlockFile.SetName.Response](#anytype-Rpc-BlockFile-SetName-Response) | File block commands *** | -| BlockImageSetName | [Rpc.BlockImage.SetName.Request](#anytype-Rpc-BlockImage-SetName-Request) | [Rpc.BlockImage.SetName.Response](#anytype-Rpc-BlockImage-SetName-Response) | | -| BlockVideoSetName | [Rpc.BlockVideo.SetName.Request](#anytype-Rpc-BlockVideo-SetName-Request) | [Rpc.BlockVideo.SetName.Response](#anytype-Rpc-BlockVideo-SetName-Response) | | -| BlockFileCreateAndUpload | [Rpc.BlockFile.CreateAndUpload.Request](#anytype-Rpc-BlockFile-CreateAndUpload-Request) | [Rpc.BlockFile.CreateAndUpload.Response](#anytype-Rpc-BlockFile-CreateAndUpload-Response) | | -| BlockFileListSetStyle | [Rpc.BlockFile.ListSetStyle.Request](#anytype-Rpc-BlockFile-ListSetStyle-Request) | [Rpc.BlockFile.ListSetStyle.Response](#anytype-Rpc-BlockFile-ListSetStyle-Response) | | -| BlockDataviewViewCreate | [Rpc.BlockDataview.View.Create.Request](#anytype-Rpc-BlockDataview-View-Create-Request) | [Rpc.BlockDataview.View.Create.Response](#anytype-Rpc-BlockDataview-View-Create-Response) | Dataview block commands *** | -| BlockDataviewViewDelete | [Rpc.BlockDataview.View.Delete.Request](#anytype-Rpc-BlockDataview-View-Delete-Request) | [Rpc.BlockDataview.View.Delete.Response](#anytype-Rpc-BlockDataview-View-Delete-Response) | | -| BlockDataviewViewUpdate | [Rpc.BlockDataview.View.Update.Request](#anytype-Rpc-BlockDataview-View-Update-Request) | [Rpc.BlockDataview.View.Update.Response](#anytype-Rpc-BlockDataview-View-Update-Response) | | -| BlockDataviewViewSetActive | [Rpc.BlockDataview.View.SetActive.Request](#anytype-Rpc-BlockDataview-View-SetActive-Request) | [Rpc.BlockDataview.View.SetActive.Response](#anytype-Rpc-BlockDataview-View-SetActive-Response) | | -| BlockDataviewViewSetPosition | [Rpc.BlockDataview.View.SetPosition.Request](#anytype-Rpc-BlockDataview-View-SetPosition-Request) | [Rpc.BlockDataview.View.SetPosition.Response](#anytype-Rpc-BlockDataview-View-SetPosition-Response) | | -| BlockDataviewSetSource | [Rpc.BlockDataview.SetSource.Request](#anytype-Rpc-BlockDataview-SetSource-Request) | [Rpc.BlockDataview.SetSource.Response](#anytype-Rpc-BlockDataview-SetSource-Response) | | -| BlockDataviewRelationAdd | [Rpc.BlockDataview.Relation.Add.Request](#anytype-Rpc-BlockDataview-Relation-Add-Request) | [Rpc.BlockDataview.Relation.Add.Response](#anytype-Rpc-BlockDataview-Relation-Add-Response) | | -| BlockDataviewRelationDelete | [Rpc.BlockDataview.Relation.Delete.Request](#anytype-Rpc-BlockDataview-Relation-Delete-Request) | [Rpc.BlockDataview.Relation.Delete.Response](#anytype-Rpc-BlockDataview-Relation-Delete-Response) | | -| BlockDataviewRelationListAvailable | [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Request) | [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response) | | -| BlockDataviewGroupOrderUpdate | [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype-Rpc-BlockDataview-GroupOrder-Update-Request) | [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response) | | -| BlockDataviewObjectOrderUpdate | [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Request) | [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response) | | -| BlockDataviewObjectOrderMove | [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Request) | [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response) | | -| BlockDataviewCreateFromExistingObject | [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Request) | [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response) | | -| BlockDataviewFilterAdd | [Rpc.BlockDataview.Filter.Add.Request](#anytype-Rpc-BlockDataview-Filter-Add-Request) | [Rpc.BlockDataview.Filter.Add.Response](#anytype-Rpc-BlockDataview-Filter-Add-Response) | | -| BlockDataviewFilterRemove | [Rpc.BlockDataview.Filter.Remove.Request](#anytype-Rpc-BlockDataview-Filter-Remove-Request) | [Rpc.BlockDataview.Filter.Remove.Response](#anytype-Rpc-BlockDataview-Filter-Remove-Response) | | -| BlockDataviewFilterReplace | [Rpc.BlockDataview.Filter.Replace.Request](#anytype-Rpc-BlockDataview-Filter-Replace-Request) | [Rpc.BlockDataview.Filter.Replace.Response](#anytype-Rpc-BlockDataview-Filter-Replace-Response) | | -| BlockDataviewFilterSort | [Rpc.BlockDataview.Filter.Sort.Request](#anytype-Rpc-BlockDataview-Filter-Sort-Request) | [Rpc.BlockDataview.Filter.Sort.Response](#anytype-Rpc-BlockDataview-Filter-Sort-Response) | | -| BlockDataviewSortAdd | [Rpc.BlockDataview.Sort.Add.Request](#anytype-Rpc-BlockDataview-Sort-Add-Request) | [Rpc.BlockDataview.Sort.Add.Response](#anytype-Rpc-BlockDataview-Sort-Add-Response) | | -| BlockDataviewSortRemove | [Rpc.BlockDataview.Sort.Remove.Request](#anytype-Rpc-BlockDataview-Sort-Remove-Request) | [Rpc.BlockDataview.Sort.Remove.Response](#anytype-Rpc-BlockDataview-Sort-Remove-Response) | | -| BlockDataviewSortReplace | [Rpc.BlockDataview.Sort.Replace.Request](#anytype-Rpc-BlockDataview-Sort-Replace-Request) | [Rpc.BlockDataview.Sort.Replace.Response](#anytype-Rpc-BlockDataview-Sort-Replace-Response) | | -| BlockDataviewSortSort | [Rpc.BlockDataview.Sort.Sort.Request](#anytype-Rpc-BlockDataview-Sort-Sort-Request) | [Rpc.BlockDataview.Sort.Sort.Response](#anytype-Rpc-BlockDataview-Sort-Sort-Response) | | -| BlockDataviewViewRelationAdd | [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype-Rpc-BlockDataview-ViewRelation-Add-Request) | [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response) | | -| BlockDataviewViewRelationRemove | [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Request) | [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response) | | -| BlockDataviewViewRelationReplace | [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Request) | [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response) | | -| BlockDataviewViewRelationSort | [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Request) | [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response) | | -| BlockTableCreate | [Rpc.BlockTable.Create.Request](#anytype-Rpc-BlockTable-Create-Request) | [Rpc.BlockTable.Create.Response](#anytype-Rpc-BlockTable-Create-Response) | Simple table block commands *** | -| BlockTableExpand | [Rpc.BlockTable.Expand.Request](#anytype-Rpc-BlockTable-Expand-Request) | [Rpc.BlockTable.Expand.Response](#anytype-Rpc-BlockTable-Expand-Response) | | -| BlockTableRowCreate | [Rpc.BlockTable.RowCreate.Request](#anytype-Rpc-BlockTable-RowCreate-Request) | [Rpc.BlockTable.RowCreate.Response](#anytype-Rpc-BlockTable-RowCreate-Response) | | -| BlockTableRowDelete | [Rpc.BlockTable.RowDelete.Request](#anytype-Rpc-BlockTable-RowDelete-Request) | [Rpc.BlockTable.RowDelete.Response](#anytype-Rpc-BlockTable-RowDelete-Response) | | -| BlockTableRowDuplicate | [Rpc.BlockTable.RowDuplicate.Request](#anytype-Rpc-BlockTable-RowDuplicate-Request) | [Rpc.BlockTable.RowDuplicate.Response](#anytype-Rpc-BlockTable-RowDuplicate-Response) | | -| BlockTableRowSetHeader | [Rpc.BlockTable.RowSetHeader.Request](#anytype-Rpc-BlockTable-RowSetHeader-Request) | [Rpc.BlockTable.RowSetHeader.Response](#anytype-Rpc-BlockTable-RowSetHeader-Response) | | -| BlockTableColumnCreate | [Rpc.BlockTable.ColumnCreate.Request](#anytype-Rpc-BlockTable-ColumnCreate-Request) | [Rpc.BlockTable.ColumnCreate.Response](#anytype-Rpc-BlockTable-ColumnCreate-Response) | | -| BlockTableColumnMove | [Rpc.BlockTable.ColumnMove.Request](#anytype-Rpc-BlockTable-ColumnMove-Request) | [Rpc.BlockTable.ColumnMove.Response](#anytype-Rpc-BlockTable-ColumnMove-Response) | | -| BlockTableColumnDelete | [Rpc.BlockTable.ColumnDelete.Request](#anytype-Rpc-BlockTable-ColumnDelete-Request) | [Rpc.BlockTable.ColumnDelete.Response](#anytype-Rpc-BlockTable-ColumnDelete-Response) | | -| BlockTableColumnDuplicate | [Rpc.BlockTable.ColumnDuplicate.Request](#anytype-Rpc-BlockTable-ColumnDuplicate-Request) | [Rpc.BlockTable.ColumnDuplicate.Response](#anytype-Rpc-BlockTable-ColumnDuplicate-Response) | | -| BlockTableRowListFill | [Rpc.BlockTable.RowListFill.Request](#anytype-Rpc-BlockTable-RowListFill-Request) | [Rpc.BlockTable.RowListFill.Response](#anytype-Rpc-BlockTable-RowListFill-Response) | | -| BlockTableRowListClean | [Rpc.BlockTable.RowListClean.Request](#anytype-Rpc-BlockTable-RowListClean-Request) | [Rpc.BlockTable.RowListClean.Response](#anytype-Rpc-BlockTable-RowListClean-Response) | | -| BlockTableColumnListFill | [Rpc.BlockTable.ColumnListFill.Request](#anytype-Rpc-BlockTable-ColumnListFill-Request) | [Rpc.BlockTable.ColumnListFill.Response](#anytype-Rpc-BlockTable-ColumnListFill-Response) | | -| BlockTableSort | [Rpc.BlockTable.Sort.Request](#anytype-Rpc-BlockTable-Sort-Request) | [Rpc.BlockTable.Sort.Response](#anytype-Rpc-BlockTable-Sort-Response) | | -| BlockLinkCreateWithObject | [Rpc.BlockLink.CreateWithObject.Request](#anytype-Rpc-BlockLink-CreateWithObject-Request) | [Rpc.BlockLink.CreateWithObject.Response](#anytype-Rpc-BlockLink-CreateWithObject-Response) | Other specific block commands *** | -| BlockLinkListSetAppearance | [Rpc.BlockLink.ListSetAppearance.Request](#anytype-Rpc-BlockLink-ListSetAppearance-Request) | [Rpc.BlockLink.ListSetAppearance.Response](#anytype-Rpc-BlockLink-ListSetAppearance-Response) | | -| BlockBookmarkFetch | [Rpc.BlockBookmark.Fetch.Request](#anytype-Rpc-BlockBookmark-Fetch-Request) | [Rpc.BlockBookmark.Fetch.Response](#anytype-Rpc-BlockBookmark-Fetch-Response) | | -| BlockBookmarkCreateAndFetch | [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype-Rpc-BlockBookmark-CreateAndFetch-Request) | [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response) | | -| BlockRelationSetKey | [Rpc.BlockRelation.SetKey.Request](#anytype-Rpc-BlockRelation-SetKey-Request) | [Rpc.BlockRelation.SetKey.Response](#anytype-Rpc-BlockRelation-SetKey-Response) | | -| BlockRelationAdd | [Rpc.BlockRelation.Add.Request](#anytype-Rpc-BlockRelation-Add-Request) | [Rpc.BlockRelation.Add.Response](#anytype-Rpc-BlockRelation-Add-Response) | | -| BlockDivListSetStyle | [Rpc.BlockDiv.ListSetStyle.Request](#anytype-Rpc-BlockDiv-ListSetStyle-Request) | [Rpc.BlockDiv.ListSetStyle.Response](#anytype-Rpc-BlockDiv-ListSetStyle-Response) | | -| BlockLatexSetText | [Rpc.BlockLatex.SetText.Request](#anytype-Rpc-BlockLatex-SetText-Request) | [Rpc.BlockLatex.SetText.Response](#anytype-Rpc-BlockLatex-SetText-Response) | | -| BlockCreateWidget | [Rpc.Block.CreateWidget.Request](#anytype-Rpc-Block-CreateWidget-Request) | [Rpc.Block.CreateWidget.Response](#anytype-Rpc-Block-CreateWidget-Response) | | -| ProcessCancel | [Rpc.Process.Cancel.Request](#anytype-Rpc-Process-Cancel-Request) | [Rpc.Process.Cancel.Response](#anytype-Rpc-Process-Cancel-Response) | | -| LogSend | [Rpc.Log.Send.Request](#anytype-Rpc-Log-Send-Request) | [Rpc.Log.Send.Response](#anytype-Rpc-Log-Send-Response) | | -| DebugTree | [Rpc.Debug.Tree.Request](#anytype-Rpc-Debug-Tree-Request) | [Rpc.Debug.Tree.Response](#anytype-Rpc-Debug-Tree-Response) | | -| DebugTreeHeads | [Rpc.Debug.TreeHeads.Request](#anytype-Rpc-Debug-TreeHeads-Request) | [Rpc.Debug.TreeHeads.Response](#anytype-Rpc-Debug-TreeHeads-Response) | | -| DebugSpaceSummary | [Rpc.Debug.SpaceSummary.Request](#anytype-Rpc-Debug-SpaceSummary-Request) | [Rpc.Debug.SpaceSummary.Response](#anytype-Rpc-Debug-SpaceSummary-Response) | | -| DebugExportLocalstore | [Rpc.Debug.ExportLocalstore.Request](#anytype-Rpc-Debug-ExportLocalstore-Request) | [Rpc.Debug.ExportLocalstore.Response](#anytype-Rpc-Debug-ExportLocalstore-Response) | | -| DebugPing | [Rpc.Debug.Ping.Request](#anytype-Rpc-Debug-Ping-Request) | [Rpc.Debug.Ping.Response](#anytype-Rpc-Debug-Ping-Response) | | -| MetricsSetParameters | [Rpc.Metrics.SetParameters.Request](#anytype-Rpc-Metrics-SetParameters-Request) | [Rpc.Metrics.SetParameters.Response](#anytype-Rpc-Metrics-SetParameters-Response) | | -| ListenSessionEvents | [StreamRequest](#anytype-StreamRequest) | [Event](#anytype-Event) stream | used only for lib-server via grpc | +| AppGetVersion | [Rpc.App.GetVersion.Request](#anytype.Rpc.App.GetVersion.Request) | [Rpc.App.GetVersion.Response](#anytype.Rpc.App.GetVersion.Response) | | +| AppSetDeviceState | [Rpc.App.SetDeviceState.Request](#anytype.Rpc.App.SetDeviceState.Request) | [Rpc.App.SetDeviceState.Response](#anytype.Rpc.App.SetDeviceState.Response) | | +| AppShutdown | [Rpc.App.Shutdown.Request](#anytype.Rpc.App.Shutdown.Request) | [Rpc.App.Shutdown.Response](#anytype.Rpc.App.Shutdown.Response) | | +| WalletCreate | [Rpc.Wallet.Create.Request](#anytype.Rpc.Wallet.Create.Request) | [Rpc.Wallet.Create.Response](#anytype.Rpc.Wallet.Create.Response) | Wallet *** | +| WalletRecover | [Rpc.Wallet.Recover.Request](#anytype.Rpc.Wallet.Recover.Request) | [Rpc.Wallet.Recover.Response](#anytype.Rpc.Wallet.Recover.Response) | | +| WalletConvert | [Rpc.Wallet.Convert.Request](#anytype.Rpc.Wallet.Convert.Request) | [Rpc.Wallet.Convert.Response](#anytype.Rpc.Wallet.Convert.Response) | | +| WalletCreateSession | [Rpc.Wallet.CreateSession.Request](#anytype.Rpc.Wallet.CreateSession.Request) | [Rpc.Wallet.CreateSession.Response](#anytype.Rpc.Wallet.CreateSession.Response) | | +| WalletCloseSession | [Rpc.Wallet.CloseSession.Request](#anytype.Rpc.Wallet.CloseSession.Request) | [Rpc.Wallet.CloseSession.Response](#anytype.Rpc.Wallet.CloseSession.Response) | | +| WorkspaceCreate | [Rpc.Workspace.Create.Request](#anytype.Rpc.Workspace.Create.Request) | [Rpc.Workspace.Create.Response](#anytype.Rpc.Workspace.Create.Response) | Workspace *** | +| WorkspaceObjectAdd | [Rpc.Workspace.Object.Add.Request](#anytype.Rpc.Workspace.Object.Add.Request) | [Rpc.Workspace.Object.Add.Response](#anytype.Rpc.Workspace.Object.Add.Response) | | +| WorkspaceObjectListAdd | [Rpc.Workspace.Object.ListAdd.Request](#anytype.Rpc.Workspace.Object.ListAdd.Request) | [Rpc.Workspace.Object.ListAdd.Response](#anytype.Rpc.Workspace.Object.ListAdd.Response) | | +| WorkspaceObjectListRemove | [Rpc.Workspace.Object.ListRemove.Request](#anytype.Rpc.Workspace.Object.ListRemove.Request) | [Rpc.Workspace.Object.ListRemove.Response](#anytype.Rpc.Workspace.Object.ListRemove.Response) | | +| WorkspaceSelect | [Rpc.Workspace.Select.Request](#anytype.Rpc.Workspace.Select.Request) | [Rpc.Workspace.Select.Response](#anytype.Rpc.Workspace.Select.Response) | | +| WorkspaceGetCurrent | [Rpc.Workspace.GetCurrent.Request](#anytype.Rpc.Workspace.GetCurrent.Request) | [Rpc.Workspace.GetCurrent.Response](#anytype.Rpc.Workspace.GetCurrent.Response) | | +| WorkspaceGetAll | [Rpc.Workspace.GetAll.Request](#anytype.Rpc.Workspace.GetAll.Request) | [Rpc.Workspace.GetAll.Response](#anytype.Rpc.Workspace.GetAll.Response) | | +| WorkspaceSetIsHighlighted | [Rpc.Workspace.SetIsHighlighted.Request](#anytype.Rpc.Workspace.SetIsHighlighted.Request) | [Rpc.Workspace.SetIsHighlighted.Response](#anytype.Rpc.Workspace.SetIsHighlighted.Response) | | +| WorkspaceExport | [Rpc.Workspace.Export.Request](#anytype.Rpc.Workspace.Export.Request) | [Rpc.Workspace.Export.Response](#anytype.Rpc.Workspace.Export.Response) | | +| AccountRecover | [Rpc.Account.Recover.Request](#anytype.Rpc.Account.Recover.Request) | [Rpc.Account.Recover.Response](#anytype.Rpc.Account.Recover.Response) | Account *** | +| AccountCreate | [Rpc.Account.Create.Request](#anytype.Rpc.Account.Create.Request) | [Rpc.Account.Create.Response](#anytype.Rpc.Account.Create.Response) | | +| AccountDelete | [Rpc.Account.Delete.Request](#anytype.Rpc.Account.Delete.Request) | [Rpc.Account.Delete.Response](#anytype.Rpc.Account.Delete.Response) | | +| AccountSelect | [Rpc.Account.Select.Request](#anytype.Rpc.Account.Select.Request) | [Rpc.Account.Select.Response](#anytype.Rpc.Account.Select.Response) | | +| AccountStop | [Rpc.Account.Stop.Request](#anytype.Rpc.Account.Stop.Request) | [Rpc.Account.Stop.Response](#anytype.Rpc.Account.Stop.Response) | | +| AccountMove | [Rpc.Account.Move.Request](#anytype.Rpc.Account.Move.Request) | [Rpc.Account.Move.Response](#anytype.Rpc.Account.Move.Response) | | +| AccountConfigUpdate | [Rpc.Account.ConfigUpdate.Request](#anytype.Rpc.Account.ConfigUpdate.Request) | [Rpc.Account.ConfigUpdate.Response](#anytype.Rpc.Account.ConfigUpdate.Response) | | +| AccountRecoverFromLegacyExport | [Rpc.Account.RecoverFromLegacyExport.Request](#anytype.Rpc.Account.RecoverFromLegacyExport.Request) | [Rpc.Account.RecoverFromLegacyExport.Response](#anytype.Rpc.Account.RecoverFromLegacyExport.Response) | | +| ObjectOpen | [Rpc.Object.Open.Request](#anytype.Rpc.Object.Open.Request) | [Rpc.Object.Open.Response](#anytype.Rpc.Object.Open.Response) | Object *** | +| ObjectClose | [Rpc.Object.Close.Request](#anytype.Rpc.Object.Close.Request) | [Rpc.Object.Close.Response](#anytype.Rpc.Object.Close.Response) | | +| ObjectShow | [Rpc.Object.Show.Request](#anytype.Rpc.Object.Show.Request) | [Rpc.Object.Show.Response](#anytype.Rpc.Object.Show.Response) | | +| ObjectCreate | [Rpc.Object.Create.Request](#anytype.Rpc.Object.Create.Request) | [Rpc.Object.Create.Response](#anytype.Rpc.Object.Create.Response) | ObjectCreate just creates the new page, without adding the link to it from some other page | +| ObjectCreateBookmark | [Rpc.Object.CreateBookmark.Request](#anytype.Rpc.Object.CreateBookmark.Request) | [Rpc.Object.CreateBookmark.Response](#anytype.Rpc.Object.CreateBookmark.Response) | | +| ObjectCreateSet | [Rpc.Object.CreateSet.Request](#anytype.Rpc.Object.CreateSet.Request) | [Rpc.Object.CreateSet.Response](#anytype.Rpc.Object.CreateSet.Response) | ObjectCreateSet just creates the new set, without adding the link to it from some other page | +| ObjectGraph | [Rpc.Object.Graph.Request](#anytype.Rpc.Object.Graph.Request) | [Rpc.Object.Graph.Response](#anytype.Rpc.Object.Graph.Response) | | +| ObjectSearch | [Rpc.Object.Search.Request](#anytype.Rpc.Object.Search.Request) | [Rpc.Object.Search.Response](#anytype.Rpc.Object.Search.Response) | | +| ObjectSearchSubscribe | [Rpc.Object.SearchSubscribe.Request](#anytype.Rpc.Object.SearchSubscribe.Request) | [Rpc.Object.SearchSubscribe.Response](#anytype.Rpc.Object.SearchSubscribe.Response) | | +| ObjectSubscribeIds | [Rpc.Object.SubscribeIds.Request](#anytype.Rpc.Object.SubscribeIds.Request) | [Rpc.Object.SubscribeIds.Response](#anytype.Rpc.Object.SubscribeIds.Response) | | +| ObjectGroupsSubscribe | [Rpc.Object.GroupsSubscribe.Request](#anytype.Rpc.Object.GroupsSubscribe.Request) | [Rpc.Object.GroupsSubscribe.Response](#anytype.Rpc.Object.GroupsSubscribe.Response) | | +| ObjectSearchUnsubscribe | [Rpc.Object.SearchUnsubscribe.Request](#anytype.Rpc.Object.SearchUnsubscribe.Request) | [Rpc.Object.SearchUnsubscribe.Response](#anytype.Rpc.Object.SearchUnsubscribe.Response) | | +| ObjectSetDetails | [Rpc.Object.SetDetails.Request](#anytype.Rpc.Object.SetDetails.Request) | [Rpc.Object.SetDetails.Response](#anytype.Rpc.Object.SetDetails.Response) | | +| ObjectDuplicate | [Rpc.Object.Duplicate.Request](#anytype.Rpc.Object.Duplicate.Request) | [Rpc.Object.Duplicate.Response](#anytype.Rpc.Object.Duplicate.Response) | | +| ObjectSetObjectType | [Rpc.Object.SetObjectType.Request](#anytype.Rpc.Object.SetObjectType.Request) | [Rpc.Object.SetObjectType.Response](#anytype.Rpc.Object.SetObjectType.Response) | ObjectSetObjectType sets an existing object type to the object so it will appear in sets and suggests relations from this type | +| ObjectSetLayout | [Rpc.Object.SetLayout.Request](#anytype.Rpc.Object.SetLayout.Request) | [Rpc.Object.SetLayout.Response](#anytype.Rpc.Object.SetLayout.Response) | | +| ObjectSetInternalFlags | [Rpc.Object.SetInternalFlags.Request](#anytype.Rpc.Object.SetInternalFlags.Request) | [Rpc.Object.SetInternalFlags.Response](#anytype.Rpc.Object.SetInternalFlags.Response) | | +| ObjectSetIsFavorite | [Rpc.Object.SetIsFavorite.Request](#anytype.Rpc.Object.SetIsFavorite.Request) | [Rpc.Object.SetIsFavorite.Response](#anytype.Rpc.Object.SetIsFavorite.Response) | | +| ObjectSetIsArchived | [Rpc.Object.SetIsArchived.Request](#anytype.Rpc.Object.SetIsArchived.Request) | [Rpc.Object.SetIsArchived.Response](#anytype.Rpc.Object.SetIsArchived.Response) | | +| ObjectSetSource | [Rpc.Object.SetSource.Request](#anytype.Rpc.Object.SetSource.Request) | [Rpc.Object.SetSource.Response](#anytype.Rpc.Object.SetSource.Response) | | +| ObjectWorkspaceSetDashboard | [Rpc.Object.WorkspaceSetDashboard.Request](#anytype.Rpc.Object.WorkspaceSetDashboard.Request) | [Rpc.Object.WorkspaceSetDashboard.Response](#anytype.Rpc.Object.WorkspaceSetDashboard.Response) | | +| ObjectListDuplicate | [Rpc.Object.ListDuplicate.Request](#anytype.Rpc.Object.ListDuplicate.Request) | [Rpc.Object.ListDuplicate.Response](#anytype.Rpc.Object.ListDuplicate.Response) | | +| ObjectListDelete | [Rpc.Object.ListDelete.Request](#anytype.Rpc.Object.ListDelete.Request) | [Rpc.Object.ListDelete.Response](#anytype.Rpc.Object.ListDelete.Response) | | +| ObjectListSetIsArchived | [Rpc.Object.ListSetIsArchived.Request](#anytype.Rpc.Object.ListSetIsArchived.Request) | [Rpc.Object.ListSetIsArchived.Response](#anytype.Rpc.Object.ListSetIsArchived.Response) | | +| ObjectListSetIsFavorite | [Rpc.Object.ListSetIsFavorite.Request](#anytype.Rpc.Object.ListSetIsFavorite.Request) | [Rpc.Object.ListSetIsFavorite.Response](#anytype.Rpc.Object.ListSetIsFavorite.Response) | | +| ObjectApplyTemplate | [Rpc.Object.ApplyTemplate.Request](#anytype.Rpc.Object.ApplyTemplate.Request) | [Rpc.Object.ApplyTemplate.Response](#anytype.Rpc.Object.ApplyTemplate.Response) | | +| ObjectToSet | [Rpc.Object.ToSet.Request](#anytype.Rpc.Object.ToSet.Request) | [Rpc.Object.ToSet.Response](#anytype.Rpc.Object.ToSet.Response) | ObjectToSet creates new set from given object and removes object | +| ObjectToCollection | [Rpc.Object.ToCollection.Request](#anytype.Rpc.Object.ToCollection.Request) | [Rpc.Object.ToCollection.Response](#anytype.Rpc.Object.ToCollection.Response) | | +| ObjectShareByLink | [Rpc.Object.ShareByLink.Request](#anytype.Rpc.Object.ShareByLink.Request) | [Rpc.Object.ShareByLink.Response](#anytype.Rpc.Object.ShareByLink.Response) | | +| ObjectUndo | [Rpc.Object.Undo.Request](#anytype.Rpc.Object.Undo.Request) | [Rpc.Object.Undo.Response](#anytype.Rpc.Object.Undo.Response) | | +| ObjectRedo | [Rpc.Object.Redo.Request](#anytype.Rpc.Object.Redo.Request) | [Rpc.Object.Redo.Response](#anytype.Rpc.Object.Redo.Response) | | +| ObjectListExport | [Rpc.Object.ListExport.Request](#anytype.Rpc.Object.ListExport.Request) | [Rpc.Object.ListExport.Response](#anytype.Rpc.Object.ListExport.Response) | | +| ObjectBookmarkFetch | [Rpc.Object.BookmarkFetch.Request](#anytype.Rpc.Object.BookmarkFetch.Request) | [Rpc.Object.BookmarkFetch.Response](#anytype.Rpc.Object.BookmarkFetch.Response) | | +| ObjectToBookmark | [Rpc.Object.ToBookmark.Request](#anytype.Rpc.Object.ToBookmark.Request) | [Rpc.Object.ToBookmark.Response](#anytype.Rpc.Object.ToBookmark.Response) | | +| ObjectImport | [Rpc.Object.Import.Request](#anytype.Rpc.Object.Import.Request) | [Rpc.Object.Import.Response](#anytype.Rpc.Object.Import.Response) | | +| ObjectImportList | [Rpc.Object.ImportList.Request](#anytype.Rpc.Object.ImportList.Request) | [Rpc.Object.ImportList.Response](#anytype.Rpc.Object.ImportList.Response) | | +| ObjectImportNotionValidateToken | [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype.Rpc.Object.Import.Notion.ValidateToken.Request) | [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response) | | +| ObjectCollectionAdd | [Rpc.ObjectCollection.Add.Request](#anytype.Rpc.ObjectCollection.Add.Request) | [Rpc.ObjectCollection.Add.Response](#anytype.Rpc.ObjectCollection.Add.Response) | Collections *** | +| ObjectCollectionRemove | [Rpc.ObjectCollection.Remove.Request](#anytype.Rpc.ObjectCollection.Remove.Request) | [Rpc.ObjectCollection.Remove.Response](#anytype.Rpc.ObjectCollection.Remove.Response) | | +| ObjectCollectionSort | [Rpc.ObjectCollection.Sort.Request](#anytype.Rpc.ObjectCollection.Sort.Request) | [Rpc.ObjectCollection.Sort.Response](#anytype.Rpc.ObjectCollection.Sort.Response) | | +| ObjectCreateRelation | [Rpc.Object.CreateRelation.Request](#anytype.Rpc.Object.CreateRelation.Request) | [Rpc.Object.CreateRelation.Response](#anytype.Rpc.Object.CreateRelation.Response) | Relations *** | +| ObjectCreateRelationOption | [Rpc.Object.CreateRelationOption.Request](#anytype.Rpc.Object.CreateRelationOption.Request) | [Rpc.Object.CreateRelationOption.Response](#anytype.Rpc.Object.CreateRelationOption.Response) | | +| RelationListRemoveOption | [Rpc.Relation.ListRemoveOption.Request](#anytype.Rpc.Relation.ListRemoveOption.Request) | [Rpc.Relation.ListRemoveOption.Response](#anytype.Rpc.Relation.ListRemoveOption.Response) | | +| RelationOptions | [Rpc.Relation.Options.Request](#anytype.Rpc.Relation.Options.Request) | [Rpc.Relation.Options.Response](#anytype.Rpc.Relation.Options.Response) | | +| ObjectRelationAdd | [Rpc.ObjectRelation.Add.Request](#anytype.Rpc.ObjectRelation.Add.Request) | [Rpc.ObjectRelation.Add.Response](#anytype.Rpc.ObjectRelation.Add.Response) | Object Relations *** | +| ObjectRelationDelete | [Rpc.ObjectRelation.Delete.Request](#anytype.Rpc.ObjectRelation.Delete.Request) | [Rpc.ObjectRelation.Delete.Response](#anytype.Rpc.ObjectRelation.Delete.Response) | | +| ObjectRelationAddFeatured | [Rpc.ObjectRelation.AddFeatured.Request](#anytype.Rpc.ObjectRelation.AddFeatured.Request) | [Rpc.ObjectRelation.AddFeatured.Response](#anytype.Rpc.ObjectRelation.AddFeatured.Response) | | +| ObjectRelationRemoveFeatured | [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype.Rpc.ObjectRelation.RemoveFeatured.Request) | [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response) | | +| ObjectRelationListAvailable | [Rpc.ObjectRelation.ListAvailable.Request](#anytype.Rpc.ObjectRelation.ListAvailable.Request) | [Rpc.ObjectRelation.ListAvailable.Response](#anytype.Rpc.ObjectRelation.ListAvailable.Response) | | +| ObjectCreateObjectType | [Rpc.Object.CreateObjectType.Request](#anytype.Rpc.Object.CreateObjectType.Request) | [Rpc.Object.CreateObjectType.Response](#anytype.Rpc.Object.CreateObjectType.Response) | ObjectType commands *** | +| ObjectTypeRelationList | [Rpc.ObjectType.Relation.List.Request](#anytype.Rpc.ObjectType.Relation.List.Request) | [Rpc.ObjectType.Relation.List.Response](#anytype.Rpc.ObjectType.Relation.List.Response) | | +| ObjectTypeRelationAdd | [Rpc.ObjectType.Relation.Add.Request](#anytype.Rpc.ObjectType.Relation.Add.Request) | [Rpc.ObjectType.Relation.Add.Response](#anytype.Rpc.ObjectType.Relation.Add.Response) | | +| ObjectTypeRelationRemove | [Rpc.ObjectType.Relation.Remove.Request](#anytype.Rpc.ObjectType.Relation.Remove.Request) | [Rpc.ObjectType.Relation.Remove.Response](#anytype.Rpc.ObjectType.Relation.Remove.Response) | | +| HistoryShowVersion | [Rpc.History.ShowVersion.Request](#anytype.Rpc.History.ShowVersion.Request) | [Rpc.History.ShowVersion.Response](#anytype.Rpc.History.ShowVersion.Response) | | +| HistoryGetVersions | [Rpc.History.GetVersions.Request](#anytype.Rpc.History.GetVersions.Request) | [Rpc.History.GetVersions.Response](#anytype.Rpc.History.GetVersions.Response) | | +| HistorySetVersion | [Rpc.History.SetVersion.Request](#anytype.Rpc.History.SetVersion.Request) | [Rpc.History.SetVersion.Response](#anytype.Rpc.History.SetVersion.Response) | | +| FileOffload | [Rpc.File.Offload.Request](#anytype.Rpc.File.Offload.Request) | [Rpc.File.Offload.Response](#anytype.Rpc.File.Offload.Response) | Files *** | +| FileListOffload | [Rpc.File.ListOffload.Request](#anytype.Rpc.File.ListOffload.Request) | [Rpc.File.ListOffload.Response](#anytype.Rpc.File.ListOffload.Response) | | +| FileUpload | [Rpc.File.Upload.Request](#anytype.Rpc.File.Upload.Request) | [Rpc.File.Upload.Response](#anytype.Rpc.File.Upload.Response) | | +| FileDownload | [Rpc.File.Download.Request](#anytype.Rpc.File.Download.Request) | [Rpc.File.Download.Response](#anytype.Rpc.File.Download.Response) | | +| FileDrop | [Rpc.File.Drop.Request](#anytype.Rpc.File.Drop.Request) | [Rpc.File.Drop.Response](#anytype.Rpc.File.Drop.Response) | | +| NavigationListObjects | [Rpc.Navigation.ListObjects.Request](#anytype.Rpc.Navigation.ListObjects.Request) | [Rpc.Navigation.ListObjects.Response](#anytype.Rpc.Navigation.ListObjects.Response) | | +| NavigationGetObjectInfoWithLinks | [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Request) | [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response) | | +| TemplateCreateFromObject | [Rpc.Template.CreateFromObject.Request](#anytype.Rpc.Template.CreateFromObject.Request) | [Rpc.Template.CreateFromObject.Response](#anytype.Rpc.Template.CreateFromObject.Response) | | +| TemplateCreateFromObjectType | [Rpc.Template.CreateFromObjectType.Request](#anytype.Rpc.Template.CreateFromObjectType.Request) | [Rpc.Template.CreateFromObjectType.Response](#anytype.Rpc.Template.CreateFromObjectType.Response) | to be renamed to ObjectCreateTemplate | +| TemplateClone | [Rpc.Template.Clone.Request](#anytype.Rpc.Template.Clone.Request) | [Rpc.Template.Clone.Response](#anytype.Rpc.Template.Clone.Response) | | +| TemplateExportAll | [Rpc.Template.ExportAll.Request](#anytype.Rpc.Template.ExportAll.Request) | [Rpc.Template.ExportAll.Response](#anytype.Rpc.Template.ExportAll.Response) | | +| LinkPreview | [Rpc.LinkPreview.Request](#anytype.Rpc.LinkPreview.Request) | [Rpc.LinkPreview.Response](#anytype.Rpc.LinkPreview.Response) | | +| UnsplashSearch | [Rpc.Unsplash.Search.Request](#anytype.Rpc.Unsplash.Search.Request) | [Rpc.Unsplash.Search.Response](#anytype.Rpc.Unsplash.Search.Response) | | +| UnsplashDownload | [Rpc.Unsplash.Download.Request](#anytype.Rpc.Unsplash.Download.Request) | [Rpc.Unsplash.Download.Response](#anytype.Rpc.Unsplash.Download.Response) | UnsplashDownload downloads picture from unsplash by ID, put it to the IPFS and returns the hash. The artist info is available in the object details | +| BlockUpload | [Rpc.Block.Upload.Request](#anytype.Rpc.Block.Upload.Request) | [Rpc.Block.Upload.Response](#anytype.Rpc.Block.Upload.Response) | General Block commands *** | +| BlockReplace | [Rpc.Block.Replace.Request](#anytype.Rpc.Block.Replace.Request) | [Rpc.Block.Replace.Response](#anytype.Rpc.Block.Replace.Response) | | +| BlockCreate | [Rpc.Block.Create.Request](#anytype.Rpc.Block.Create.Request) | [Rpc.Block.Create.Response](#anytype.Rpc.Block.Create.Response) | | +| BlockSplit | [Rpc.Block.Split.Request](#anytype.Rpc.Block.Split.Request) | [Rpc.Block.Split.Response](#anytype.Rpc.Block.Split.Response) | | +| BlockMerge | [Rpc.Block.Merge.Request](#anytype.Rpc.Block.Merge.Request) | [Rpc.Block.Merge.Response](#anytype.Rpc.Block.Merge.Response) | | +| BlockCopy | [Rpc.Block.Copy.Request](#anytype.Rpc.Block.Copy.Request) | [Rpc.Block.Copy.Response](#anytype.Rpc.Block.Copy.Response) | | +| BlockPaste | [Rpc.Block.Paste.Request](#anytype.Rpc.Block.Paste.Request) | [Rpc.Block.Paste.Response](#anytype.Rpc.Block.Paste.Response) | | +| BlockCut | [Rpc.Block.Cut.Request](#anytype.Rpc.Block.Cut.Request) | [Rpc.Block.Cut.Response](#anytype.Rpc.Block.Cut.Response) | | +| BlockSetFields | [Rpc.Block.SetFields.Request](#anytype.Rpc.Block.SetFields.Request) | [Rpc.Block.SetFields.Response](#anytype.Rpc.Block.SetFields.Response) | | +| BlockExport | [Rpc.Block.Export.Request](#anytype.Rpc.Block.Export.Request) | [Rpc.Block.Export.Response](#anytype.Rpc.Block.Export.Response) | | +| BlockListDelete | [Rpc.Block.ListDelete.Request](#anytype.Rpc.Block.ListDelete.Request) | [Rpc.Block.ListDelete.Response](#anytype.Rpc.Block.ListDelete.Response) | | +| BlockListMoveToExistingObject | [Rpc.Block.ListMoveToExistingObject.Request](#anytype.Rpc.Block.ListMoveToExistingObject.Request) | [Rpc.Block.ListMoveToExistingObject.Response](#anytype.Rpc.Block.ListMoveToExistingObject.Response) | | +| BlockListMoveToNewObject | [Rpc.Block.ListMoveToNewObject.Request](#anytype.Rpc.Block.ListMoveToNewObject.Request) | [Rpc.Block.ListMoveToNewObject.Response](#anytype.Rpc.Block.ListMoveToNewObject.Response) | | +| BlockListConvertToObjects | [Rpc.Block.ListConvertToObjects.Request](#anytype.Rpc.Block.ListConvertToObjects.Request) | [Rpc.Block.ListConvertToObjects.Response](#anytype.Rpc.Block.ListConvertToObjects.Response) | | +| BlockListSetFields | [Rpc.Block.ListSetFields.Request](#anytype.Rpc.Block.ListSetFields.Request) | [Rpc.Block.ListSetFields.Response](#anytype.Rpc.Block.ListSetFields.Response) | | +| BlockListDuplicate | [Rpc.Block.ListDuplicate.Request](#anytype.Rpc.Block.ListDuplicate.Request) | [Rpc.Block.ListDuplicate.Response](#anytype.Rpc.Block.ListDuplicate.Response) | | +| BlockListSetBackgroundColor | [Rpc.Block.ListSetBackgroundColor.Request](#anytype.Rpc.Block.ListSetBackgroundColor.Request) | [Rpc.Block.ListSetBackgroundColor.Response](#anytype.Rpc.Block.ListSetBackgroundColor.Response) | | +| BlockListSetAlign | [Rpc.Block.ListSetAlign.Request](#anytype.Rpc.Block.ListSetAlign.Request) | [Rpc.Block.ListSetAlign.Response](#anytype.Rpc.Block.ListSetAlign.Response) | | +| BlockListSetVerticalAlign | [Rpc.Block.ListSetVerticalAlign.Request](#anytype.Rpc.Block.ListSetVerticalAlign.Request) | [Rpc.Block.ListSetVerticalAlign.Response](#anytype.Rpc.Block.ListSetVerticalAlign.Response) | | +| BlockListTurnInto | [Rpc.Block.ListTurnInto.Request](#anytype.Rpc.Block.ListTurnInto.Request) | [Rpc.Block.ListTurnInto.Response](#anytype.Rpc.Block.ListTurnInto.Response) | | +| BlockTextSetText | [Rpc.BlockText.SetText.Request](#anytype.Rpc.BlockText.SetText.Request) | [Rpc.BlockText.SetText.Response](#anytype.Rpc.BlockText.SetText.Response) | Text Block commands *** | +| BlockTextSetColor | [Rpc.BlockText.SetColor.Request](#anytype.Rpc.BlockText.SetColor.Request) | [Rpc.BlockText.SetColor.Response](#anytype.Rpc.BlockText.SetColor.Response) | | +| BlockTextSetStyle | [Rpc.BlockText.SetStyle.Request](#anytype.Rpc.BlockText.SetStyle.Request) | [Rpc.BlockText.SetStyle.Response](#anytype.Rpc.BlockText.SetStyle.Response) | | +| BlockTextSetChecked | [Rpc.BlockText.SetChecked.Request](#anytype.Rpc.BlockText.SetChecked.Request) | [Rpc.BlockText.SetChecked.Response](#anytype.Rpc.BlockText.SetChecked.Response) | | +| BlockTextSetIcon | [Rpc.BlockText.SetIcon.Request](#anytype.Rpc.BlockText.SetIcon.Request) | [Rpc.BlockText.SetIcon.Response](#anytype.Rpc.BlockText.SetIcon.Response) | | +| BlockTextListSetColor | [Rpc.BlockText.ListSetColor.Request](#anytype.Rpc.BlockText.ListSetColor.Request) | [Rpc.BlockText.ListSetColor.Response](#anytype.Rpc.BlockText.ListSetColor.Response) | | +| BlockTextListSetMark | [Rpc.BlockText.ListSetMark.Request](#anytype.Rpc.BlockText.ListSetMark.Request) | [Rpc.BlockText.ListSetMark.Response](#anytype.Rpc.BlockText.ListSetMark.Response) | | +| BlockTextListSetStyle | [Rpc.BlockText.ListSetStyle.Request](#anytype.Rpc.BlockText.ListSetStyle.Request) | [Rpc.BlockText.ListSetStyle.Response](#anytype.Rpc.BlockText.ListSetStyle.Response) | | +| BlockTextListClearStyle | [Rpc.BlockText.ListClearStyle.Request](#anytype.Rpc.BlockText.ListClearStyle.Request) | [Rpc.BlockText.ListClearStyle.Response](#anytype.Rpc.BlockText.ListClearStyle.Response) | | +| BlockTextListClearContent | [Rpc.BlockText.ListClearContent.Request](#anytype.Rpc.BlockText.ListClearContent.Request) | [Rpc.BlockText.ListClearContent.Response](#anytype.Rpc.BlockText.ListClearContent.Response) | | +| BlockFileSetName | [Rpc.BlockFile.SetName.Request](#anytype.Rpc.BlockFile.SetName.Request) | [Rpc.BlockFile.SetName.Response](#anytype.Rpc.BlockFile.SetName.Response) | File block commands *** | +| BlockImageSetName | [Rpc.BlockImage.SetName.Request](#anytype.Rpc.BlockImage.SetName.Request) | [Rpc.BlockImage.SetName.Response](#anytype.Rpc.BlockImage.SetName.Response) | | +| BlockVideoSetName | [Rpc.BlockVideo.SetName.Request](#anytype.Rpc.BlockVideo.SetName.Request) | [Rpc.BlockVideo.SetName.Response](#anytype.Rpc.BlockVideo.SetName.Response) | | +| BlockFileCreateAndUpload | [Rpc.BlockFile.CreateAndUpload.Request](#anytype.Rpc.BlockFile.CreateAndUpload.Request) | [Rpc.BlockFile.CreateAndUpload.Response](#anytype.Rpc.BlockFile.CreateAndUpload.Response) | | +| BlockFileListSetStyle | [Rpc.BlockFile.ListSetStyle.Request](#anytype.Rpc.BlockFile.ListSetStyle.Request) | [Rpc.BlockFile.ListSetStyle.Response](#anytype.Rpc.BlockFile.ListSetStyle.Response) | | +| BlockDataviewViewCreate | [Rpc.BlockDataview.View.Create.Request](#anytype.Rpc.BlockDataview.View.Create.Request) | [Rpc.BlockDataview.View.Create.Response](#anytype.Rpc.BlockDataview.View.Create.Response) | Dataview block commands *** | +| BlockDataviewViewDelete | [Rpc.BlockDataview.View.Delete.Request](#anytype.Rpc.BlockDataview.View.Delete.Request) | [Rpc.BlockDataview.View.Delete.Response](#anytype.Rpc.BlockDataview.View.Delete.Response) | | +| BlockDataviewViewUpdate | [Rpc.BlockDataview.View.Update.Request](#anytype.Rpc.BlockDataview.View.Update.Request) | [Rpc.BlockDataview.View.Update.Response](#anytype.Rpc.BlockDataview.View.Update.Response) | | +| BlockDataviewViewSetActive | [Rpc.BlockDataview.View.SetActive.Request](#anytype.Rpc.BlockDataview.View.SetActive.Request) | [Rpc.BlockDataview.View.SetActive.Response](#anytype.Rpc.BlockDataview.View.SetActive.Response) | | +| BlockDataviewViewSetPosition | [Rpc.BlockDataview.View.SetPosition.Request](#anytype.Rpc.BlockDataview.View.SetPosition.Request) | [Rpc.BlockDataview.View.SetPosition.Response](#anytype.Rpc.BlockDataview.View.SetPosition.Response) | | +| BlockDataviewSetSource | [Rpc.BlockDataview.SetSource.Request](#anytype.Rpc.BlockDataview.SetSource.Request) | [Rpc.BlockDataview.SetSource.Response](#anytype.Rpc.BlockDataview.SetSource.Response) | | +| BlockDataviewRelationAdd | [Rpc.BlockDataview.Relation.Add.Request](#anytype.Rpc.BlockDataview.Relation.Add.Request) | [Rpc.BlockDataview.Relation.Add.Response](#anytype.Rpc.BlockDataview.Relation.Add.Response) | | +| BlockDataviewRelationDelete | [Rpc.BlockDataview.Relation.Delete.Request](#anytype.Rpc.BlockDataview.Relation.Delete.Request) | [Rpc.BlockDataview.Relation.Delete.Response](#anytype.Rpc.BlockDataview.Relation.Delete.Response) | | +| BlockDataviewRelationListAvailable | [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Request) | [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response) | | +| BlockDataviewGroupOrderUpdate | [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype.Rpc.BlockDataview.GroupOrder.Update.Request) | [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response) | | +| BlockDataviewObjectOrderUpdate | [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Request) | [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response) | | +| BlockDataviewObjectOrderMove | [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Request) | [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response) | | +| BlockDataviewCreateFromExistingObject | [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Request) | [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response) | | +| BlockDataviewFilterAdd | [Rpc.BlockDataview.Filter.Add.Request](#anytype.Rpc.BlockDataview.Filter.Add.Request) | [Rpc.BlockDataview.Filter.Add.Response](#anytype.Rpc.BlockDataview.Filter.Add.Response) | | +| BlockDataviewFilterRemove | [Rpc.BlockDataview.Filter.Remove.Request](#anytype.Rpc.BlockDataview.Filter.Remove.Request) | [Rpc.BlockDataview.Filter.Remove.Response](#anytype.Rpc.BlockDataview.Filter.Remove.Response) | | +| BlockDataviewFilterReplace | [Rpc.BlockDataview.Filter.Replace.Request](#anytype.Rpc.BlockDataview.Filter.Replace.Request) | [Rpc.BlockDataview.Filter.Replace.Response](#anytype.Rpc.BlockDataview.Filter.Replace.Response) | | +| BlockDataviewFilterSort | [Rpc.BlockDataview.Filter.Sort.Request](#anytype.Rpc.BlockDataview.Filter.Sort.Request) | [Rpc.BlockDataview.Filter.Sort.Response](#anytype.Rpc.BlockDataview.Filter.Sort.Response) | | +| BlockDataviewSortAdd | [Rpc.BlockDataview.Sort.Add.Request](#anytype.Rpc.BlockDataview.Sort.Add.Request) | [Rpc.BlockDataview.Sort.Add.Response](#anytype.Rpc.BlockDataview.Sort.Add.Response) | | +| BlockDataviewSortRemove | [Rpc.BlockDataview.Sort.Remove.Request](#anytype.Rpc.BlockDataview.Sort.Remove.Request) | [Rpc.BlockDataview.Sort.Remove.Response](#anytype.Rpc.BlockDataview.Sort.Remove.Response) | | +| BlockDataviewSortReplace | [Rpc.BlockDataview.Sort.Replace.Request](#anytype.Rpc.BlockDataview.Sort.Replace.Request) | [Rpc.BlockDataview.Sort.Replace.Response](#anytype.Rpc.BlockDataview.Sort.Replace.Response) | | +| BlockDataviewSortSort | [Rpc.BlockDataview.Sort.Sort.Request](#anytype.Rpc.BlockDataview.Sort.Sort.Request) | [Rpc.BlockDataview.Sort.Sort.Response](#anytype.Rpc.BlockDataview.Sort.Sort.Response) | | +| BlockDataviewViewRelationAdd | [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype.Rpc.BlockDataview.ViewRelation.Add.Request) | [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response) | | +| BlockDataviewViewRelationRemove | [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Request) | [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response) | | +| BlockDataviewViewRelationReplace | [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Request) | [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response) | | +| BlockDataviewViewRelationSort | [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Request) | [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response) | | +| BlockTableCreate | [Rpc.BlockTable.Create.Request](#anytype.Rpc.BlockTable.Create.Request) | [Rpc.BlockTable.Create.Response](#anytype.Rpc.BlockTable.Create.Response) | Simple table block commands *** | +| BlockTableExpand | [Rpc.BlockTable.Expand.Request](#anytype.Rpc.BlockTable.Expand.Request) | [Rpc.BlockTable.Expand.Response](#anytype.Rpc.BlockTable.Expand.Response) | | +| BlockTableRowCreate | [Rpc.BlockTable.RowCreate.Request](#anytype.Rpc.BlockTable.RowCreate.Request) | [Rpc.BlockTable.RowCreate.Response](#anytype.Rpc.BlockTable.RowCreate.Response) | | +| BlockTableRowDelete | [Rpc.BlockTable.RowDelete.Request](#anytype.Rpc.BlockTable.RowDelete.Request) | [Rpc.BlockTable.RowDelete.Response](#anytype.Rpc.BlockTable.RowDelete.Response) | | +| BlockTableRowDuplicate | [Rpc.BlockTable.RowDuplicate.Request](#anytype.Rpc.BlockTable.RowDuplicate.Request) | [Rpc.BlockTable.RowDuplicate.Response](#anytype.Rpc.BlockTable.RowDuplicate.Response) | | +| BlockTableRowSetHeader | [Rpc.BlockTable.RowSetHeader.Request](#anytype.Rpc.BlockTable.RowSetHeader.Request) | [Rpc.BlockTable.RowSetHeader.Response](#anytype.Rpc.BlockTable.RowSetHeader.Response) | | +| BlockTableColumnCreate | [Rpc.BlockTable.ColumnCreate.Request](#anytype.Rpc.BlockTable.ColumnCreate.Request) | [Rpc.BlockTable.ColumnCreate.Response](#anytype.Rpc.BlockTable.ColumnCreate.Response) | | +| BlockTableColumnMove | [Rpc.BlockTable.ColumnMove.Request](#anytype.Rpc.BlockTable.ColumnMove.Request) | [Rpc.BlockTable.ColumnMove.Response](#anytype.Rpc.BlockTable.ColumnMove.Response) | | +| BlockTableColumnDelete | [Rpc.BlockTable.ColumnDelete.Request](#anytype.Rpc.BlockTable.ColumnDelete.Request) | [Rpc.BlockTable.ColumnDelete.Response](#anytype.Rpc.BlockTable.ColumnDelete.Response) | | +| BlockTableColumnDuplicate | [Rpc.BlockTable.ColumnDuplicate.Request](#anytype.Rpc.BlockTable.ColumnDuplicate.Request) | [Rpc.BlockTable.ColumnDuplicate.Response](#anytype.Rpc.BlockTable.ColumnDuplicate.Response) | | +| BlockTableRowListFill | [Rpc.BlockTable.RowListFill.Request](#anytype.Rpc.BlockTable.RowListFill.Request) | [Rpc.BlockTable.RowListFill.Response](#anytype.Rpc.BlockTable.RowListFill.Response) | | +| BlockTableRowListClean | [Rpc.BlockTable.RowListClean.Request](#anytype.Rpc.BlockTable.RowListClean.Request) | [Rpc.BlockTable.RowListClean.Response](#anytype.Rpc.BlockTable.RowListClean.Response) | | +| BlockTableColumnListFill | [Rpc.BlockTable.ColumnListFill.Request](#anytype.Rpc.BlockTable.ColumnListFill.Request) | [Rpc.BlockTable.ColumnListFill.Response](#anytype.Rpc.BlockTable.ColumnListFill.Response) | | +| BlockTableSort | [Rpc.BlockTable.Sort.Request](#anytype.Rpc.BlockTable.Sort.Request) | [Rpc.BlockTable.Sort.Response](#anytype.Rpc.BlockTable.Sort.Response) | | +| BlockLinkCreateWithObject | [Rpc.BlockLink.CreateWithObject.Request](#anytype.Rpc.BlockLink.CreateWithObject.Request) | [Rpc.BlockLink.CreateWithObject.Response](#anytype.Rpc.BlockLink.CreateWithObject.Response) | Other specific block commands *** | +| BlockLinkListSetAppearance | [Rpc.BlockLink.ListSetAppearance.Request](#anytype.Rpc.BlockLink.ListSetAppearance.Request) | [Rpc.BlockLink.ListSetAppearance.Response](#anytype.Rpc.BlockLink.ListSetAppearance.Response) | | +| BlockBookmarkFetch | [Rpc.BlockBookmark.Fetch.Request](#anytype.Rpc.BlockBookmark.Fetch.Request) | [Rpc.BlockBookmark.Fetch.Response](#anytype.Rpc.BlockBookmark.Fetch.Response) | | +| BlockBookmarkCreateAndFetch | [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype.Rpc.BlockBookmark.CreateAndFetch.Request) | [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response) | | +| BlockRelationSetKey | [Rpc.BlockRelation.SetKey.Request](#anytype.Rpc.BlockRelation.SetKey.Request) | [Rpc.BlockRelation.SetKey.Response](#anytype.Rpc.BlockRelation.SetKey.Response) | | +| BlockRelationAdd | [Rpc.BlockRelation.Add.Request](#anytype.Rpc.BlockRelation.Add.Request) | [Rpc.BlockRelation.Add.Response](#anytype.Rpc.BlockRelation.Add.Response) | | +| BlockDivListSetStyle | [Rpc.BlockDiv.ListSetStyle.Request](#anytype.Rpc.BlockDiv.ListSetStyle.Request) | [Rpc.BlockDiv.ListSetStyle.Response](#anytype.Rpc.BlockDiv.ListSetStyle.Response) | | +| BlockLatexSetText | [Rpc.BlockLatex.SetText.Request](#anytype.Rpc.BlockLatex.SetText.Request) | [Rpc.BlockLatex.SetText.Response](#anytype.Rpc.BlockLatex.SetText.Response) | | +| BlockCreateWidget | [Rpc.Block.CreateWidget.Request](#anytype.Rpc.Block.CreateWidget.Request) | [Rpc.Block.CreateWidget.Response](#anytype.Rpc.Block.CreateWidget.Response) | | +| ProcessCancel | [Rpc.Process.Cancel.Request](#anytype.Rpc.Process.Cancel.Request) | [Rpc.Process.Cancel.Response](#anytype.Rpc.Process.Cancel.Response) | | +| LogSend | [Rpc.Log.Send.Request](#anytype.Rpc.Log.Send.Request) | [Rpc.Log.Send.Response](#anytype.Rpc.Log.Send.Response) | | +| DebugTree | [Rpc.Debug.Tree.Request](#anytype.Rpc.Debug.Tree.Request) | [Rpc.Debug.Tree.Response](#anytype.Rpc.Debug.Tree.Response) | | +| DebugTreeHeads | [Rpc.Debug.TreeHeads.Request](#anytype.Rpc.Debug.TreeHeads.Request) | [Rpc.Debug.TreeHeads.Response](#anytype.Rpc.Debug.TreeHeads.Response) | | +| DebugSpaceSummary | [Rpc.Debug.SpaceSummary.Request](#anytype.Rpc.Debug.SpaceSummary.Request) | [Rpc.Debug.SpaceSummary.Response](#anytype.Rpc.Debug.SpaceSummary.Response) | | +| DebugExportLocalstore | [Rpc.Debug.ExportLocalstore.Request](#anytype.Rpc.Debug.ExportLocalstore.Request) | [Rpc.Debug.ExportLocalstore.Response](#anytype.Rpc.Debug.ExportLocalstore.Response) | | +| DebugPing | [Rpc.Debug.Ping.Request](#anytype.Rpc.Debug.Ping.Request) | [Rpc.Debug.Ping.Response](#anytype.Rpc.Debug.Ping.Response) | | +| MetricsSetParameters | [Rpc.Metrics.SetParameters.Request](#anytype.Rpc.Metrics.SetParameters.Request) | [Rpc.Metrics.SetParameters.Response](#anytype.Rpc.Metrics.SetParameters.Response) | | +| ListenSessionEvents | [StreamRequest](#anytype.StreamRequest) | [Event](#anytype.Event) stream | used only for lib-server via grpc | - + ## pb/protos/changes.proto - + ### Change the element of change tree used to store and internal apply smartBlock history @@ -1627,9 +1620,9 @@ the element of change tree used to store and internal apply smartBlock history | previous_ids | [string](#string) | repeated | ids of previous changes | | last_snapshot_id | [string](#string) | | id of the last snapshot | | previous_meta_ids | [string](#string) | repeated | ids of the last changes with details/relations content | -| content | [Change.Content](#anytype-Change-Content) | repeated | set of actions to apply | -| snapshot | [Change.Snapshot](#anytype-Change-Snapshot) | | snapshot - when not null, the Content will be ignored | -| fileKeys | [Change.FileKeys](#anytype-Change-FileKeys) | repeated | file keys related to changes content | +| content | [Change.Content](#anytype.Change.Content) | repeated | set of actions to apply | +| snapshot | [Change.Snapshot](#anytype.Change.Snapshot) | | snapshot - when not null, the Content will be ignored | +| fileKeys | [Change.FileKeys](#anytype.Change.FileKeys) | repeated | file keys related to changes content | | timestamp | [int64](#int64) | | creation timestamp | | version | [uint32](#uint32) | | version of business logic | @@ -1638,7 +1631,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockCreate @@ -1647,15 +1640,15 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | -| blocks | [model.Block](#anytype-model-Block) | repeated | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| blocks | [model.Block](#anytype.model.Block) | repeated | | - + ### Change.BlockDuplicate @@ -1664,7 +1657,7 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | | ids | [string](#string) | repeated | | @@ -1672,7 +1665,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockMove @@ -1681,7 +1674,7 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | | ids | [string](#string) | repeated | | @@ -1689,7 +1682,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockRemove @@ -1704,7 +1697,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockUpdate @@ -1712,14 +1705,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| events | [Event.Message](#anytype-Event-Message) | repeated | | +| events | [Event.Message](#anytype.Event.Message) | repeated | | - + ### Change.Content @@ -1727,30 +1720,30 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| blockCreate | [Change.BlockCreate](#anytype-Change-BlockCreate) | | | -| blockUpdate | [Change.BlockUpdate](#anytype-Change-BlockUpdate) | | | -| blockRemove | [Change.BlockRemove](#anytype-Change-BlockRemove) | | | -| blockMove | [Change.BlockMove](#anytype-Change-BlockMove) | | | -| blockDuplicate | [Change.BlockDuplicate](#anytype-Change-BlockDuplicate) | | | -| relationAdd | [Change.RelationAdd](#anytype-Change-RelationAdd) | | | -| relationRemove | [Change.RelationRemove](#anytype-Change-RelationRemove) | | | -| detailsSet | [Change.DetailsSet](#anytype-Change-DetailsSet) | | | -| detailsUnset | [Change.DetailsUnset](#anytype-Change-DetailsUnset) | | | -| old_relationAdd | [Change._RelationAdd](#anytype-Change-_RelationAdd) | | deprecated | -| old_relationRemove | [Change._RelationRemove](#anytype-Change-_RelationRemove) | | | -| old_relationUpdate | [Change._RelationUpdate](#anytype-Change-_RelationUpdate) | | | -| objectTypeAdd | [Change.ObjectTypeAdd](#anytype-Change-ObjectTypeAdd) | | | -| objectTypeRemove | [Change.ObjectTypeRemove](#anytype-Change-ObjectTypeRemove) | | | -| storeKeySet | [Change.StoreKeySet](#anytype-Change-StoreKeySet) | | | -| storeKeyUnset | [Change.StoreKeyUnset](#anytype-Change-StoreKeyUnset) | | | -| storeSliceUpdate | [Change.StoreSliceUpdate](#anytype-Change-StoreSliceUpdate) | | | +| blockCreate | [Change.BlockCreate](#anytype.Change.BlockCreate) | | | +| blockUpdate | [Change.BlockUpdate](#anytype.Change.BlockUpdate) | | | +| blockRemove | [Change.BlockRemove](#anytype.Change.BlockRemove) | | | +| blockMove | [Change.BlockMove](#anytype.Change.BlockMove) | | | +| blockDuplicate | [Change.BlockDuplicate](#anytype.Change.BlockDuplicate) | | | +| relationAdd | [Change.RelationAdd](#anytype.Change.RelationAdd) | | | +| relationRemove | [Change.RelationRemove](#anytype.Change.RelationRemove) | | | +| detailsSet | [Change.DetailsSet](#anytype.Change.DetailsSet) | | | +| detailsUnset | [Change.DetailsUnset](#anytype.Change.DetailsUnset) | | | +| old_relationAdd | [Change._RelationAdd](#anytype.Change._RelationAdd) | | deprecated | +| old_relationRemove | [Change._RelationRemove](#anytype.Change._RelationRemove) | | | +| old_relationUpdate | [Change._RelationUpdate](#anytype.Change._RelationUpdate) | | | +| objectTypeAdd | [Change.ObjectTypeAdd](#anytype.Change.ObjectTypeAdd) | | | +| objectTypeRemove | [Change.ObjectTypeRemove](#anytype.Change.ObjectTypeRemove) | | | +| storeKeySet | [Change.StoreKeySet](#anytype.Change.StoreKeySet) | | | +| storeKeyUnset | [Change.StoreKeyUnset](#anytype.Change.StoreKeyUnset) | | | +| storeSliceUpdate | [Change.StoreSliceUpdate](#anytype.Change.StoreSliceUpdate) | | | - + ### Change.DetailsSet @@ -1759,14 +1752,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| value | [google.protobuf.Value](#google-protobuf-Value) | | | +| value | [google.protobuf.Value](#google.protobuf.Value) | | | - + ### Change.DetailsUnset @@ -1781,7 +1774,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.FileKeys @@ -1790,14 +1783,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | hash | [string](#string) | | | -| keys | [Change.FileKeys.KeysEntry](#anytype-Change-FileKeys-KeysEntry) | repeated | | +| keys | [Change.FileKeys.KeysEntry](#anytype.Change.FileKeys.KeysEntry) | repeated | | - + ### Change.FileKeys.KeysEntry @@ -1813,7 +1806,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.ObjectTypeAdd @@ -1828,7 +1821,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.ObjectTypeRemove @@ -1843,7 +1836,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.RelationAdd @@ -1851,14 +1844,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relationLinks | [model.RelationLink](#anytype-model-RelationLink) | repeated | | +| relationLinks | [model.RelationLink](#anytype.model.RelationLink) | repeated | | - + ### Change.RelationRemove @@ -1873,7 +1866,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.Snapshot @@ -1881,16 +1874,16 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| logHeads | [Change.Snapshot.LogHeadsEntry](#anytype-Change-Snapshot-LogHeadsEntry) | repeated | logId -> lastChangeId | -| data | [model.SmartBlockSnapshotBase](#anytype-model-SmartBlockSnapshotBase) | | snapshot data | -| fileKeys | [Change.FileKeys](#anytype-Change-FileKeys) | repeated | all file keys related to doc | +| logHeads | [Change.Snapshot.LogHeadsEntry](#anytype.Change.Snapshot.LogHeadsEntry) | repeated | logId -> lastChangeId | +| data | [model.SmartBlockSnapshotBase](#anytype.model.SmartBlockSnapshotBase) | | snapshot data | +| fileKeys | [Change.FileKeys](#anytype.Change.FileKeys) | repeated | all file keys related to doc | - + ### Change.Snapshot.LogHeadsEntry @@ -1906,7 +1899,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreKeySet @@ -1915,14 +1908,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | path | [string](#string) | repeated | | -| value | [google.protobuf.Value](#google-protobuf-Value) | | | +| value | [google.protobuf.Value](#google.protobuf.Value) | | | - + ### Change.StoreKeyUnset @@ -1937,7 +1930,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate @@ -1946,16 +1939,16 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| add | [Change.StoreSliceUpdate.Add](#anytype-Change-StoreSliceUpdate-Add) | | | -| remove | [Change.StoreSliceUpdate.Remove](#anytype-Change-StoreSliceUpdate-Remove) | | | -| move | [Change.StoreSliceUpdate.Move](#anytype-Change-StoreSliceUpdate-Move) | | | +| add | [Change.StoreSliceUpdate.Add](#anytype.Change.StoreSliceUpdate.Add) | | | +| remove | [Change.StoreSliceUpdate.Remove](#anytype.Change.StoreSliceUpdate.Remove) | | | +| move | [Change.StoreSliceUpdate.Move](#anytype.Change.StoreSliceUpdate.Move) | | | - + ### Change.StoreSliceUpdate.Add @@ -1971,7 +1964,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate.Move @@ -1987,7 +1980,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate.Remove @@ -2002,7 +1995,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change._RelationAdd @@ -2010,14 +2003,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relation | [model.Relation](#anytype-model-Relation) | | | +| relation | [model.Relation](#anytype.model.Relation) | | | - + ### Change._RelationRemove @@ -2032,7 +2025,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change._RelationUpdate @@ -2041,19 +2034,19 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| format | [model.RelationFormat](#anytype-model-RelationFormat) | | | +| format | [model.RelationFormat](#anytype.model.RelationFormat) | | | | name | [string](#string) | | | -| defaultValue | [google.protobuf.Value](#google-protobuf-Value) | | | -| objectTypes | [Change._RelationUpdate.ObjectTypes](#anytype-Change-_RelationUpdate-ObjectTypes) | | | +| defaultValue | [google.protobuf.Value](#google.protobuf.Value) | | | +| objectTypes | [Change._RelationUpdate.ObjectTypes](#anytype.Change._RelationUpdate.ObjectTypes) | | | | multi | [bool](#bool) | | | -| selectDict | [Change._RelationUpdate.Dict](#anytype-Change-_RelationUpdate-Dict) | | | +| selectDict | [Change._RelationUpdate.Dict](#anytype.Change._RelationUpdate.Dict) | | | - + ### Change._RelationUpdate.Dict @@ -2061,14 +2054,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| dict | [model.Relation.Option](#anytype-model-Relation-Option) | repeated | | +| dict | [model.Relation.Option](#anytype.model.Relation.Option) | repeated | | - + ### Change._RelationUpdate.ObjectTypes @@ -2092,14 +2085,14 @@ the element of change tree used to store and internal apply smartBlock history - + ## pb/protos/commands.proto - + ### Empty @@ -2109,7 +2102,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Rpc Rpc is a namespace, that agregates all of the service commands between client and middleware. @@ -2122,7 +2115,7 @@ Response – message from a middleware. - + ### Rpc.Account @@ -2132,7 +2125,7 @@ Response – message from a middleware. - + ### Rpc.Account.Config @@ -2144,14 +2137,14 @@ Response – message from a middleware. | enableDebug | [bool](#bool) | | | | enablePrereleaseChannel | [bool](#bool) | | | | enableSpaces | [bool](#bool) | | | -| extra | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| extra | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Account.ConfigUpdate @@ -2161,7 +2154,7 @@ Response – message from a middleware. - + ### Rpc.Account.ConfigUpdate.Request @@ -2177,7 +2170,7 @@ Response – message from a middleware. - + ### Rpc.Account.ConfigUpdate.Response @@ -2185,14 +2178,14 @@ Response – message from a middleware. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.ConfigUpdate.Response.Error](#anytype-Rpc-Account-ConfigUpdate-Response-Error) | | | +| error | [Rpc.Account.ConfigUpdate.Response.Error](#anytype.Rpc.Account.ConfigUpdate.Response.Error) | | | - + ### Rpc.Account.ConfigUpdate.Response.Error @@ -2200,7 +2193,7 @@ Response – message from a middleware. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype-Rpc-Account-ConfigUpdate-Response-Error-Code) | | | +| code | [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype.Rpc.Account.ConfigUpdate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2208,7 +2201,7 @@ Response – message from a middleware. - + ### Rpc.Account.Create @@ -2218,7 +2211,7 @@ Response – message from a middleware. - + ### Rpc.Account.Create.Request Front end to middleware request-to-create-an account @@ -2237,7 +2230,7 @@ Front end to middleware request-to-create-an account - + ### Rpc.Account.Create.Response Middleware-to-front-end response for an account creation request, that can contain a NULL error and created account or a non-NULL error and an empty account @@ -2245,16 +2238,16 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Create.Response.Error](#anytype-Rpc-Account-Create-Response-Error) | | Error while trying to create an account | -| account | [model.Account](#anytype-model-Account) | | A newly created account; In case of a failure, i.e. error is non-NULL, the account model should contain empty/default-value fields | -| config | [Rpc.Account.Config](#anytype-Rpc-Account-Config) | | deprecated, use account | +| error | [Rpc.Account.Create.Response.Error](#anytype.Rpc.Account.Create.Response.Error) | | Error while trying to create an account | +| account | [model.Account](#anytype.model.Account) | | A newly created account; In case of a failure, i.e. error is non-NULL, the account model should contain empty/default-value fields | +| config | [Rpc.Account.Config](#anytype.Rpc.Account.Config) | | deprecated, use account | - + ### Rpc.Account.Create.Response.Error @@ -2262,7 +2255,7 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Create.Response.Error.Code](#anytype-Rpc-Account-Create-Response-Error-Code) | | | +| code | [Rpc.Account.Create.Response.Error.Code](#anytype.Rpc.Account.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2270,7 +2263,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete @@ -2280,7 +2273,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete.Request @@ -2295,7 +2288,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete.Response @@ -2303,15 +2296,15 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Delete.Response.Error](#anytype-Rpc-Account-Delete-Response-Error) | | Error while trying to recover an account | -| status | [model.Account.Status](#anytype-model-Account-Status) | | | +| error | [Rpc.Account.Delete.Response.Error](#anytype.Rpc.Account.Delete.Response.Error) | | Error while trying to recover an account | +| status | [model.Account.Status](#anytype.model.Account.Status) | | | - + ### Rpc.Account.Delete.Response.Error @@ -2319,7 +2312,7 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Delete.Response.Error.Code](#anytype-Rpc-Account-Delete-Response-Error-Code) | | | +| code | [Rpc.Account.Delete.Response.Error.Code](#anytype.Rpc.Account.Delete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2327,7 +2320,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig @@ -2337,7 +2330,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig.Get @@ -2347,7 +2340,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig.Get.Request @@ -2357,7 +2350,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Move @@ -2367,7 +2360,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Move.Request Front-end-to-middleware request to move a account to a new disk location @@ -2382,7 +2375,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Move.Response @@ -2390,14 +2383,14 @@ Front-end-to-middleware request to move a account to a new disk location | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Move.Response.Error](#anytype-Rpc-Account-Move-Response-Error) | | | +| error | [Rpc.Account.Move.Response.Error](#anytype.Rpc.Account.Move.Response.Error) | | | - + ### Rpc.Account.Move.Response.Error @@ -2405,7 +2398,7 @@ Front-end-to-middleware request to move a account to a new disk location | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Move.Response.Error.Code](#anytype-Rpc-Account-Move-Response-Error-Code) | | | +| code | [Rpc.Account.Move.Response.Error.Code](#anytype.Rpc.Account.Move.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2413,7 +2406,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Recover @@ -2423,7 +2416,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Recover.Request Front end to middleware request-to-start-search of an accounts for a recovered mnemonic. @@ -2434,7 +2427,7 @@ Each of an account that would be found will come with an AccountAdd event - + ### Rpc.Account.Recover.Response Middleware-to-front-end response to an account recover request, that can contain a NULL error and created account or a non-NULL error and an empty account @@ -2442,14 +2435,14 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Recover.Response.Error](#anytype-Rpc-Account-Recover-Response-Error) | | Error while trying to recover an account | +| error | [Rpc.Account.Recover.Response.Error](#anytype.Rpc.Account.Recover.Response.Error) | | Error while trying to recover an account | - + ### Rpc.Account.Recover.Response.Error @@ -2457,7 +2450,7 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Recover.Response.Error.Code](#anytype-Rpc-Account-Recover-Response-Error-Code) | | | +| code | [Rpc.Account.Recover.Response.Error.Code](#anytype.Rpc.Account.Recover.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2465,7 +2458,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport @@ -2475,7 +2468,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport.Request @@ -2492,7 +2485,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport.Response @@ -2501,14 +2494,14 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | accountId | [string](#string) | | | -| error | [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error) | | | +| error | [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error) | | | - + ### Rpc.Account.RecoverFromLegacyExport.Response.Error @@ -2516,7 +2509,7 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error-Code) | | | +| code | [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2524,7 +2517,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.Select @@ -2534,7 +2527,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.Select.Request Front end to middleware request-to-launch-a specific account using account id and a root path @@ -2551,7 +2544,7 @@ User can select an account from those, that came with an AccountAdd events - + ### Rpc.Account.Select.Response Middleware-to-front-end response for an account select request, that can contain a NULL error and selected account or a non-NULL error and an empty account @@ -2559,16 +2552,16 @@ Middleware-to-front-end response for an account select request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Select.Response.Error](#anytype-Rpc-Account-Select-Response-Error) | | Error while trying to launch/select an account | -| account | [model.Account](#anytype-model-Account) | | Selected account | -| config | [Rpc.Account.Config](#anytype-Rpc-Account-Config) | | deprecated, use account | +| error | [Rpc.Account.Select.Response.Error](#anytype.Rpc.Account.Select.Response.Error) | | Error while trying to launch/select an account | +| account | [model.Account](#anytype.model.Account) | | Selected account | +| config | [Rpc.Account.Config](#anytype.Rpc.Account.Config) | | deprecated, use account | - + ### Rpc.Account.Select.Response.Error @@ -2576,7 +2569,7 @@ Middleware-to-front-end response for an account select request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Select.Response.Error.Code](#anytype-Rpc-Account-Select-Response-Error-Code) | | | +| code | [Rpc.Account.Select.Response.Error.Code](#anytype.Rpc.Account.Select.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2584,7 +2577,7 @@ Middleware-to-front-end response for an account select request, that can contain - + ### Rpc.Account.Stop @@ -2594,7 +2587,7 @@ Middleware-to-front-end response for an account select request, that can contain - + ### Rpc.Account.Stop.Request Front end to middleware request to stop currently running account node and optionally remove the locally stored data @@ -2609,7 +2602,7 @@ Front end to middleware request to stop currently running account node and optio - + ### Rpc.Account.Stop.Response Middleware-to-front-end response for an account stop request @@ -2617,14 +2610,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Stop.Response.Error](#anytype-Rpc-Account-Stop-Response-Error) | | Error while trying to launch/select an account | +| error | [Rpc.Account.Stop.Response.Error](#anytype.Rpc.Account.Stop.Response.Error) | | Error while trying to launch/select an account | - + ### Rpc.Account.Stop.Response.Error @@ -2632,7 +2625,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Stop.Response.Error.Code](#anytype-Rpc-Account-Stop-Response-Error-Code) | | | +| code | [Rpc.Account.Stop.Response.Error.Code](#anytype.Rpc.Account.Stop.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2640,7 +2633,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App @@ -2650,7 +2643,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion @@ -2660,7 +2653,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Request @@ -2670,7 +2663,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Response @@ -2678,7 +2671,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.App.GetVersion.Response.Error](#anytype-Rpc-App-GetVersion-Response-Error) | | | +| error | [Rpc.App.GetVersion.Response.Error](#anytype.Rpc.App.GetVersion.Response.Error) | | | | version | [string](#string) | | | | details | [string](#string) | | build date, branch and commit | @@ -2687,7 +2680,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Response.Error @@ -2695,7 +2688,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.App.GetVersion.Response.Error.Code](#anytype-Rpc-App-GetVersion-Response-Error-Code) | | | +| code | [Rpc.App.GetVersion.Response.Error.Code](#anytype.Rpc.App.GetVersion.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2703,7 +2696,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.SetDeviceState @@ -2713,7 +2706,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.SetDeviceState.Request @@ -2721,14 +2714,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| deviceState | [Rpc.App.SetDeviceState.Request.DeviceState](#anytype-Rpc-App-SetDeviceState-Request-DeviceState) | | | +| deviceState | [Rpc.App.SetDeviceState.Request.DeviceState](#anytype.Rpc.App.SetDeviceState.Request.DeviceState) | | | - + ### Rpc.App.SetDeviceState.Response @@ -2736,14 +2729,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.App.SetDeviceState.Response.Error](#anytype-Rpc-App-SetDeviceState-Response-Error) | | | +| error | [Rpc.App.SetDeviceState.Response.Error](#anytype.Rpc.App.SetDeviceState.Response.Error) | | | - + ### Rpc.App.SetDeviceState.Response.Error @@ -2751,7 +2744,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.App.SetDeviceState.Response.Error.Code](#anytype-Rpc-App-SetDeviceState-Response-Error-Code) | | | +| code | [Rpc.App.SetDeviceState.Response.Error.Code](#anytype.Rpc.App.SetDeviceState.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2759,7 +2752,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown @@ -2769,7 +2762,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown.Request @@ -2779,7 +2772,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown.Response @@ -2787,14 +2780,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.App.Shutdown.Response.Error](#anytype-Rpc-App-Shutdown-Response-Error) | | | +| error | [Rpc.App.Shutdown.Response.Error](#anytype.Rpc.App.Shutdown.Response.Error) | | | - + ### Rpc.App.Shutdown.Response.Error @@ -2802,7 +2795,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.App.Shutdown.Response.Error.Code](#anytype-Rpc-App-Shutdown-Response-Error-Code) | | | +| code | [Rpc.App.Shutdown.Response.Error.Code](#anytype.Rpc.App.Shutdown.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2810,7 +2803,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.Block Block commands @@ -2820,7 +2813,7 @@ Block commands - + ### Rpc.Block.Copy @@ -2830,7 +2823,7 @@ Block commands - + ### Rpc.Block.Copy.Request @@ -2839,15 +2832,15 @@ Block commands | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blocks | [model.Block](#anytype-model-Block) | repeated | | -| selectedTextRange | [model.Range](#anytype-model-Range) | | | +| blocks | [model.Block](#anytype.model.Block) | repeated | | +| selectedTextRange | [model.Range](#anytype.model.Range) | | | - + ### Rpc.Block.Copy.Response @@ -2855,17 +2848,17 @@ Block commands | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Copy.Response.Error](#anytype-Rpc-Block-Copy-Response-Error) | | | +| error | [Rpc.Block.Copy.Response.Error](#anytype.Rpc.Block.Copy.Response.Error) | | | | textSlot | [string](#string) | | | | htmlSlot | [string](#string) | | | -| anySlot | [model.Block](#anytype-model-Block) | repeated | | +| anySlot | [model.Block](#anytype.model.Block) | repeated | | - + ### Rpc.Block.Copy.Response.Error @@ -2873,7 +2866,7 @@ Block commands | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Copy.Response.Error.Code](#anytype-Rpc-Block-Copy-Response-Error-Code) | | | +| code | [Rpc.Block.Copy.Response.Error.Code](#anytype.Rpc.Block.Copy.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2881,7 +2874,7 @@ Block commands - + ### Rpc.Block.Create Create a Smart/Internal block. Request can contain a block with a content, or it can be an empty block with a specific block.content. @@ -2903,7 +2896,7 @@ Create a Smart/Internal block. Request can contain a block with a content, or it - + ### Rpc.Block.Create.Request common simple block command @@ -2913,15 +2906,15 @@ common simple block command | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | -| block | [model.Block](#anytype-model-Block) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| block | [model.Block](#anytype.model.Block) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | - + ### Rpc.Block.Create.Response @@ -2929,16 +2922,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Create.Response.Error](#anytype-Rpc-Block-Create-Response-Error) | | | +| error | [Rpc.Block.Create.Response.Error](#anytype.Rpc.Block.Create.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Create.Response.Error @@ -2946,7 +2939,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Create.Response.Error.Code](#anytype-Rpc-Block-Create-Response-Error-Code) | | | +| code | [Rpc.Block.Create.Response.Error.Code](#anytype.Rpc.Block.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -2954,7 +2947,7 @@ common simple block command - + ### Rpc.Block.CreateWidget @@ -2964,7 +2957,7 @@ common simple block command - + ### Rpc.Block.CreateWidget.Request @@ -2974,16 +2967,16 @@ common simple block command | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | -| block | [model.Block](#anytype-model-Block) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | -| widgetLayout | [model.Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | +| block | [model.Block](#anytype.model.Block) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| widgetLayout | [model.Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | - + ### Rpc.Block.CreateWidget.Response @@ -2991,16 +2984,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.CreateWidget.Response.Error](#anytype-Rpc-Block-CreateWidget-Response-Error) | | | +| error | [Rpc.Block.CreateWidget.Response.Error](#anytype.Rpc.Block.CreateWidget.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.CreateWidget.Response.Error @@ -3008,7 +3001,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.CreateWidget.Response.Error.Code](#anytype-Rpc-Block-CreateWidget-Response-Error-Code) | | | +| code | [Rpc.Block.CreateWidget.Response.Error.Code](#anytype.Rpc.Block.CreateWidget.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3016,7 +3009,7 @@ common simple block command - + ### Rpc.Block.Cut @@ -3026,7 +3019,7 @@ common simple block command - + ### Rpc.Block.Cut.Request @@ -3035,15 +3028,15 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blocks | [model.Block](#anytype-model-Block) | repeated | | -| selectedTextRange | [model.Range](#anytype-model-Range) | | | +| blocks | [model.Block](#anytype.model.Block) | repeated | | +| selectedTextRange | [model.Range](#anytype.model.Range) | | | - + ### Rpc.Block.Cut.Response @@ -3051,18 +3044,18 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Cut.Response.Error](#anytype-Rpc-Block-Cut-Response-Error) | | | +| error | [Rpc.Block.Cut.Response.Error](#anytype.Rpc.Block.Cut.Response.Error) | | | | textSlot | [string](#string) | | | | htmlSlot | [string](#string) | | | -| anySlot | [model.Block](#anytype-model-Block) | repeated | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| anySlot | [model.Block](#anytype.model.Block) | repeated | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Cut.Response.Error @@ -3070,7 +3063,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Cut.Response.Error.Code](#anytype-Rpc-Block-Cut-Response-Error-Code) | | | +| code | [Rpc.Block.Cut.Response.Error.Code](#anytype.Rpc.Block.Cut.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3078,7 +3071,7 @@ common simple block command - + ### Rpc.Block.Download @@ -3088,7 +3081,7 @@ common simple block command - + ### Rpc.Block.Download.Request @@ -3104,7 +3097,7 @@ common simple block command - + ### Rpc.Block.Download.Response @@ -3112,15 +3105,15 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Download.Response.Error](#anytype-Rpc-Block-Download-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.Download.Response.Error](#anytype.Rpc.Block.Download.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Download.Response.Error @@ -3128,7 +3121,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Download.Response.Error.Code](#anytype-Rpc-Block-Download-Response-Error-Code) | | | +| code | [Rpc.Block.Download.Response.Error.Code](#anytype.Rpc.Block.Download.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3136,7 +3129,7 @@ common simple block command - + ### Rpc.Block.Export @@ -3146,7 +3139,7 @@ common simple block command - + ### Rpc.Block.Export.Request @@ -3155,14 +3148,14 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blocks | [model.Block](#anytype-model-Block) | repeated | | +| blocks | [model.Block](#anytype.model.Block) | repeated | | - + ### Rpc.Block.Export.Response @@ -3170,16 +3163,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Export.Response.Error](#anytype-Rpc-Block-Export-Response-Error) | | | +| error | [Rpc.Block.Export.Response.Error](#anytype.Rpc.Block.Export.Response.Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Export.Response.Error @@ -3187,7 +3180,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Export.Response.Error.Code](#anytype-Rpc-Block-Export-Response-Error-Code) | | | +| code | [Rpc.Block.Export.Response.Error.Code](#anytype.Rpc.Block.Export.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3195,7 +3188,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects @@ -3205,7 +3198,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects.Request @@ -3222,7 +3215,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects.Response @@ -3230,16 +3223,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListConvertToObjects.Response.Error](#anytype-Rpc-Block-ListConvertToObjects-Response-Error) | | | +| error | [Rpc.Block.ListConvertToObjects.Response.Error](#anytype.Rpc.Block.ListConvertToObjects.Response.Error) | | | | linkIds | [string](#string) | repeated | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListConvertToObjects.Response.Error @@ -3247,7 +3240,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype-Rpc-Block-ListConvertToObjects-Response-Error-Code) | | | +| code | [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype.Rpc.Block.ListConvertToObjects.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3255,7 +3248,7 @@ common simple block command - + ### Rpc.Block.ListDelete Remove blocks from the childrenIds of its parents @@ -3265,7 +3258,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDelete.Request @@ -3281,7 +3274,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDelete.Response @@ -3289,15 +3282,15 @@ Remove blocks from the childrenIds of its parents | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListDelete.Response.Error](#anytype-Rpc-Block-ListDelete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListDelete.Response.Error](#anytype.Rpc.Block.ListDelete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListDelete.Response.Error @@ -3305,7 +3298,7 @@ Remove blocks from the childrenIds of its parents | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListDelete.Response.Error.Code](#anytype-Rpc-Block-ListDelete-Response-Error-Code) | | | +| code | [Rpc.Block.ListDelete.Response.Error.Code](#anytype.Rpc.Block.ListDelete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3313,7 +3306,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDuplicate Makes blocks copy by given ids and paste it to shown place @@ -3323,7 +3316,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListDuplicate.Request @@ -3334,7 +3327,7 @@ Makes blocks copy by given ids and paste it to shown place | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | | blockIds | [string](#string) | repeated | id of block for duplicate | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | | targetContextId | [string](#string) | | | @@ -3342,7 +3335,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListDuplicate.Response @@ -3350,16 +3343,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListDuplicate.Response.Error](#anytype-Rpc-Block-ListDuplicate-Response-Error) | | | +| error | [Rpc.Block.ListDuplicate.Response.Error](#anytype.Rpc.Block.ListDuplicate.Response.Error) | | | | blockIds | [string](#string) | repeated | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListDuplicate.Response.Error @@ -3367,7 +3360,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype-Rpc-Block-ListDuplicate-Response-Error-Code) | | | +| code | [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype.Rpc.Block.ListDuplicate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3375,7 +3368,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToExistingObject @@ -3385,7 +3378,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToExistingObject.Request @@ -3397,14 +3390,14 @@ Makes blocks copy by given ids and paste it to shown place | blockIds | [string](#string) | repeated | | | targetContextId | [string](#string) | | | | dropTargetId | [string](#string) | | id of the simple block to insert considering position | -| position | [model.Block.Position](#anytype-model-Block-Position) | | position relatively to the dropTargetId simple block | +| position | [model.Block.Position](#anytype.model.Block.Position) | | position relatively to the dropTargetId simple block | - + ### Rpc.Block.ListMoveToExistingObject.Response @@ -3412,15 +3405,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListMoveToExistingObject.Response.Error @@ -3428,7 +3421,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error-Code) | | | +| code | [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3436,7 +3429,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToNewObject @@ -3446,7 +3439,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToNewObject.Request @@ -3456,16 +3449,16 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | new object details | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | new object details | | dropTargetId | [string](#string) | | id of the simple block to insert considering position | -| position | [model.Block.Position](#anytype-model-Block-Position) | | position relatively to the dropTargetId simple block | +| position | [model.Block.Position](#anytype.model.Block.Position) | | position relatively to the dropTargetId simple block | - + ### Rpc.Block.ListMoveToNewObject.Response @@ -3473,16 +3466,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error) | | | +| error | [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error) | | | | linkId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListMoveToNewObject.Response.Error @@ -3490,7 +3483,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error-Code) | | | +| code | [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3498,7 +3491,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetAlign @@ -3508,7 +3501,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetAlign.Request @@ -3518,14 +3511,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | when empty - align will be applied as layoutAlign | -| align | [model.Block.Align](#anytype-model-Block-Align) | | | +| align | [model.Block.Align](#anytype.model.Block.Align) | | | - + ### Rpc.Block.ListSetAlign.Response @@ -3533,15 +3526,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetAlign.Response.Error](#anytype-Rpc-Block-ListSetAlign-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListSetAlign.Response.Error](#anytype.Rpc.Block.ListSetAlign.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListSetAlign.Response.Error @@ -3549,7 +3542,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetAlign-Response-Error-Code) | | | +| code | [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetAlign.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3557,7 +3550,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor @@ -3567,7 +3560,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor.Request @@ -3584,7 +3577,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor.Response @@ -3592,15 +3585,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListSetBackgroundColor.Response.Error @@ -3608,7 +3601,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error-Code) | | | +| code | [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3616,7 +3609,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetFields @@ -3626,7 +3619,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetFields.Request @@ -3635,14 +3628,14 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blockFields | [Rpc.Block.ListSetFields.Request.BlockField](#anytype-Rpc-Block-ListSetFields-Request-BlockField) | repeated | | +| blockFields | [Rpc.Block.ListSetFields.Request.BlockField](#anytype.Rpc.Block.ListSetFields.Request.BlockField) | repeated | | - + ### Rpc.Block.ListSetFields.Request.BlockField @@ -3651,14 +3644,14 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | blockId | [string](#string) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Block.ListSetFields.Response @@ -3666,15 +3659,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetFields.Response.Error](#anytype-Rpc-Block-ListSetFields-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListSetFields.Response.Error](#anytype.Rpc.Block.ListSetFields.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListSetFields.Response.Error @@ -3682,7 +3675,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetFields.Response.Error.Code](#anytype-Rpc-Block-ListSetFields-Response-Error-Code) | | | +| code | [Rpc.Block.ListSetFields.Response.Error.Code](#anytype.Rpc.Block.ListSetFields.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3690,7 +3683,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetVerticalAlign @@ -3700,7 +3693,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetVerticalAlign.Request @@ -3710,14 +3703,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | blockIds | [string](#string) | repeated | | -| verticalAlign | [model.Block.VerticalAlign](#anytype-model-Block-VerticalAlign) | | | +| verticalAlign | [model.Block.VerticalAlign](#anytype.model.Block.VerticalAlign) | | | - + ### Rpc.Block.ListSetVerticalAlign.Response @@ -3725,15 +3718,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListSetVerticalAlign.Response.Error @@ -3741,7 +3734,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error-Code) | | | +| code | [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3749,7 +3742,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListTurnInto @@ -3759,7 +3752,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListTurnInto.Request @@ -3769,14 +3762,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | - + ### Rpc.Block.ListTurnInto.Response @@ -3784,15 +3777,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListTurnInto.Response.Error](#anytype-Rpc-Block-ListTurnInto-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.ListTurnInto.Response.Error](#anytype.Rpc.Block.ListTurnInto.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.ListTurnInto.Response.Error @@ -3800,7 +3793,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype-Rpc-Block-ListTurnInto-Response-Error-Code) | | | +| code | [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype.Rpc.Block.ListTurnInto.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3808,7 +3801,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListUpdate @@ -3818,7 +3811,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListUpdate.Request @@ -3828,19 +3821,19 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| text | [Rpc.Block.ListUpdate.Request.Text](#anytype-Rpc-Block-ListUpdate-Request-Text) | | | +| text | [Rpc.Block.ListUpdate.Request.Text](#anytype.Rpc.Block.ListUpdate.Request.Text) | | | | backgroundColor | [string](#string) | | | -| align | [model.Block.Align](#anytype-model-Block-Align) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| divStyle | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | -| fileStyle | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | +| align | [model.Block.Align](#anytype.model.Block.Align) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| divStyle | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | +| fileStyle | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | - + ### Rpc.Block.ListUpdate.Request.Text @@ -3848,16 +3841,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | | color | [string](#string) | | | -| mark | [model.Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) | | | +| mark | [model.Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) | | | - + ### Rpc.Block.Merge @@ -3867,7 +3860,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Merge.Request @@ -3884,7 +3877,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Merge.Response @@ -3892,15 +3885,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Merge.Response.Error](#anytype-Rpc-Block-Merge-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.Merge.Response.Error](#anytype.Rpc.Block.Merge.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Merge.Response.Error @@ -3908,7 +3901,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Merge.Response.Error.Code](#anytype-Rpc-Block-Merge-Response-Error-Code) | | | +| code | [Rpc.Block.Merge.Response.Error.Code](#anytype.Rpc.Block.Merge.Response.Error.Code) | | | | description | [string](#string) | | | @@ -3916,7 +3909,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste @@ -3926,7 +3919,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste.Request @@ -3936,20 +3929,20 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | focusedBlockId | [string](#string) | | | -| selectedTextRange | [model.Range](#anytype-model-Range) | | | +| selectedTextRange | [model.Range](#anytype.model.Range) | | | | selectedBlockIds | [string](#string) | repeated | | | isPartOfBlock | [bool](#bool) | | | | textSlot | [string](#string) | | | | htmlSlot | [string](#string) | | | -| anySlot | [model.Block](#anytype-model-Block) | repeated | | -| fileSlot | [Rpc.Block.Paste.Request.File](#anytype-Rpc-Block-Paste-Request-File) | repeated | | +| anySlot | [model.Block](#anytype.model.Block) | repeated | | +| fileSlot | [Rpc.Block.Paste.Request.File](#anytype.Rpc.Block.Paste.Request.File) | repeated | | - + ### Rpc.Block.Paste.Request.File @@ -3966,7 +3959,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste.Response @@ -3974,18 +3967,18 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Paste.Response.Error](#anytype-Rpc-Block-Paste-Response-Error) | | | +| error | [Rpc.Block.Paste.Response.Error](#anytype.Rpc.Block.Paste.Response.Error) | | | | blockIds | [string](#string) | repeated | | | caretPosition | [int32](#int32) | | | | isSameBlockCaret | [bool](#bool) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Paste.Response.Error @@ -3993,7 +3986,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Paste.Response.Error.Code](#anytype-Rpc-Block-Paste-Response-Error-Code) | | | +| code | [Rpc.Block.Paste.Response.Error.Code](#anytype.Rpc.Block.Paste.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4001,7 +3994,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Replace @@ -4011,7 +4004,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Replace.Request @@ -4021,14 +4014,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| block | [model.Block](#anytype-model-Block) | | | +| block | [model.Block](#anytype.model.Block) | | | - + ### Rpc.Block.Replace.Response @@ -4036,16 +4029,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Replace.Response.Error](#anytype-Rpc-Block-Replace-Response-Error) | | | +| error | [Rpc.Block.Replace.Response.Error](#anytype.Rpc.Block.Replace.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Replace.Response.Error @@ -4053,7 +4046,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Replace.Response.Error.Code](#anytype-Rpc-Block-Replace-Response-Error-Code) | | | +| code | [Rpc.Block.Replace.Response.Error.Code](#anytype.Rpc.Block.Replace.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4061,7 +4054,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.SetFields @@ -4071,7 +4064,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.SetFields.Request @@ -4081,14 +4074,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Block.SetFields.Response @@ -4096,15 +4089,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.SetFields.Response.Error](#anytype-Rpc-Block-SetFields-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.SetFields.Response.Error](#anytype.Rpc.Block.SetFields.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.SetFields.Response.Error @@ -4112,7 +4105,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.SetFields.Response.Error.Code](#anytype-Rpc-Block-SetFields-Response-Error-Code) | | | +| code | [Rpc.Block.SetFields.Response.Error.Code](#anytype.Rpc.Block.SetFields.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4120,7 +4113,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Split @@ -4130,7 +4123,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Split.Request @@ -4140,16 +4133,16 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| range | [model.Range](#anytype-model-Range) | | | -| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | -| mode | [Rpc.Block.Split.Request.Mode](#anytype-Rpc-Block-Split-Request-Mode) | | | +| range | [model.Range](#anytype.model.Range) | | | +| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| mode | [Rpc.Block.Split.Request.Mode](#anytype.Rpc.Block.Split.Request.Mode) | | | - + ### Rpc.Block.Split.Response @@ -4157,16 +4150,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Split.Response.Error](#anytype-Rpc-Block-Split-Response-Error) | | | +| error | [Rpc.Block.Split.Response.Error](#anytype.Rpc.Block.Split.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Split.Response.Error @@ -4174,7 +4167,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Split.Response.Error.Code](#anytype-Rpc-Block-Split-Response-Error-Code) | | | +| code | [Rpc.Block.Split.Response.Error.Code](#anytype.Rpc.Block.Split.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4182,7 +4175,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload @@ -4192,7 +4185,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload.Request @@ -4210,7 +4203,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload.Response @@ -4218,15 +4211,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Upload.Response.Error](#anytype-Rpc-Block-Upload-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Block.Upload.Response.Error](#anytype.Rpc.Block.Upload.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Block.Upload.Response.Error @@ -4234,7 +4227,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Upload.Response.Error.Code](#anytype-Rpc-Block-Upload-Response-Error-Code) | | | +| code | [Rpc.Block.Upload.Response.Error.Code](#anytype.Rpc.Block.Upload.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4242,7 +4235,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark @@ -4252,7 +4245,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch @@ -4262,7 +4255,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch.Request @@ -4272,7 +4265,7 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | | url | [string](#string) | | | @@ -4280,7 +4273,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch.Response @@ -4288,16 +4281,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error) | | | +| error | [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockBookmark.CreateAndFetch.Response.Error @@ -4305,7 +4298,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error-Code) | | | +| code | [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4313,7 +4306,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch @@ -4323,7 +4316,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch.Request @@ -4340,7 +4333,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch.Response @@ -4348,15 +4341,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockBookmark.Fetch.Response.Error](#anytype-Rpc-BlockBookmark-Fetch-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockBookmark.Fetch.Response.Error](#anytype.Rpc.BlockBookmark.Fetch.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockBookmark.Fetch.Response.Error @@ -4364,7 +4357,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-Fetch-Response-Error-Code) | | | +| code | [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.Fetch.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4372,7 +4365,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview @@ -4382,7 +4375,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark @@ -4392,7 +4385,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Request @@ -4409,7 +4402,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Response @@ -4417,7 +4410,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error) | | | +| error | [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error) | | | | id | [string](#string) | | | @@ -4425,7 +4418,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Response.Error @@ -4433,7 +4426,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4441,7 +4434,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject @@ -4451,7 +4444,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject.Request @@ -4468,7 +4461,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject.Response @@ -4476,18 +4469,18 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error) | | | +| error | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error) | | | | blockId | [string](#string) | | | | targetObjectId | [string](#string) | | | -| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | repeated | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | repeated | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.CreateFromExistingObject.Response.Error @@ -4495,7 +4488,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4503,7 +4496,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter @@ -4513,7 +4506,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Add @@ -4523,7 +4516,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Add.Request @@ -4534,14 +4527,14 @@ Makes blocks copy by given ids and paste it to shown place | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| filter | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | | | +| filter | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | | | - + ### Rpc.BlockDataview.Filter.Add.Response @@ -4549,15 +4542,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Add.Response.Error @@ -4565,7 +4558,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4573,7 +4566,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove @@ -4583,7 +4576,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove.Request @@ -4601,7 +4594,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove.Response @@ -4609,15 +4602,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Remove.Response.Error @@ -4625,7 +4618,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4633,7 +4626,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Replace @@ -4643,7 +4636,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Replace.Request @@ -4655,14 +4648,14 @@ Makes blocks copy by given ids and paste it to shown place | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | | id | [string](#string) | | | -| filter | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | | | +| filter | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | | | - + ### Rpc.BlockDataview.Filter.Replace.Response @@ -4670,15 +4663,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Replace.Response.Error @@ -4686,7 +4679,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4694,7 +4687,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort @@ -4704,7 +4697,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort.Request @@ -4722,7 +4715,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort.Response @@ -4730,15 +4723,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Sort.Response.Error @@ -4746,7 +4739,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4754,7 +4747,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder @@ -4764,7 +4757,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder.Update @@ -4774,7 +4767,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder.Update.Request @@ -4784,14 +4777,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) | | | +| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) | | | - + ### Rpc.BlockDataview.GroupOrder.Update.Response @@ -4799,15 +4792,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.GroupOrder.Update.Response.Error @@ -4815,7 +4808,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4823,7 +4816,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder @@ -4833,7 +4826,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move @@ -4843,7 +4836,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move.Request @@ -4863,7 +4856,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move.Response @@ -4871,15 +4864,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.ObjectOrder.Move.Response.Error @@ -4887,7 +4880,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4895,7 +4888,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Update @@ -4905,7 +4898,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Update.Request @@ -4915,14 +4908,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| objectOrders | [model.Block.Content.Dataview.ObjectOrder](#anytype-model-Block-Content-Dataview-ObjectOrder) | repeated | | +| objectOrders | [model.Block.Content.Dataview.ObjectOrder](#anytype.model.Block.Content.Dataview.ObjectOrder) | repeated | | - + ### Rpc.BlockDataview.ObjectOrder.Update.Response @@ -4930,15 +4923,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.ObjectOrder.Update.Response.Error @@ -4946,7 +4939,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code) | | | | description | [string](#string) | | | @@ -4954,7 +4947,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation @@ -4964,7 +4957,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add @@ -4974,7 +4967,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add.Request @@ -4991,7 +4984,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add.Response @@ -4999,15 +4992,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Relation.Add.Response.Error @@ -5015,7 +5008,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5023,7 +5016,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete @@ -5033,7 +5026,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete.Request @@ -5050,7 +5043,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete.Response @@ -5058,15 +5051,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Relation.Delete.Response.Error @@ -5074,7 +5067,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5082,7 +5075,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable @@ -5092,7 +5085,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable.Request @@ -5108,7 +5101,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable.Response @@ -5116,15 +5109,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error) | | | -| relations | [model.Relation](#anytype-model-Relation) | repeated | | +| error | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error) | | | +| relations | [model.Relation](#anytype.model.Relation) | repeated | | - + ### Rpc.BlockDataview.Relation.ListAvailable.Response.Error @@ -5132,7 +5125,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5140,7 +5133,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource @@ -5150,7 +5143,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource.Request @@ -5167,7 +5160,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource.Response @@ -5175,15 +5168,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.SetSource.Response.Error](#anytype-Rpc-BlockDataview-SetSource-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.SetSource.Response.Error](#anytype.Rpc.BlockDataview.SetSource.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.SetSource.Response.Error @@ -5191,7 +5184,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype-Rpc-BlockDataview-SetSource-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype.Rpc.BlockDataview.SetSource.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5199,7 +5192,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort @@ -5209,7 +5202,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Add @@ -5219,7 +5212,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Add.Request @@ -5230,14 +5223,14 @@ Makes blocks copy by given ids and paste it to shown place | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| sort | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | | | +| sort | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | | | - + ### Rpc.BlockDataview.Sort.Add.Response @@ -5245,15 +5238,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Add.Response.Error @@ -5261,7 +5254,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5269,7 +5262,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove @@ -5279,7 +5272,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove.Request @@ -5297,7 +5290,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove.Response @@ -5305,15 +5298,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Remove.Response.Error @@ -5321,7 +5314,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5329,7 +5322,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Replace @@ -5339,7 +5332,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Replace.Request @@ -5351,14 +5344,14 @@ Makes blocks copy by given ids and paste it to shown place | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | | id | [string](#string) | | | -| sort | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | | | +| sort | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | | | - + ### Rpc.BlockDataview.Sort.Replace.Response @@ -5366,15 +5359,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Replace.Response.Error @@ -5382,7 +5375,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5390,7 +5383,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort @@ -5400,7 +5393,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort.Request @@ -5418,7 +5411,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort.Response @@ -5426,15 +5419,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Sort.Response.Error @@ -5442,7 +5435,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5450,7 +5443,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View @@ -5460,7 +5453,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create @@ -5470,7 +5463,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Request @@ -5480,7 +5473,7 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to insert the new block | -| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | | | +| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | | | | source | [string](#string) | repeated | | @@ -5488,7 +5481,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Response @@ -5496,8 +5489,8 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.Create.Response.Error](#anytype-Rpc-BlockDataview-View-Create-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.Create.Response.Error](#anytype.Rpc.BlockDataview.View.Create.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | | viewId | [string](#string) | | | @@ -5505,7 +5498,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Response.Error @@ -5513,7 +5506,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Create-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5521,7 +5514,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete @@ -5531,7 +5524,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete.Request @@ -5548,7 +5541,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete.Response @@ -5556,15 +5549,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.Delete.Response.Error](#anytype-Rpc-BlockDataview-View-Delete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.Delete.Response.Error](#anytype.Rpc.BlockDataview.View.Delete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.View.Delete.Response.Error @@ -5572,7 +5565,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Delete-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Delete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5580,7 +5573,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.SetActive set the current active view (persisted only within a session) @@ -5590,7 +5583,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetActive.Request @@ -5609,7 +5602,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetActive.Response @@ -5617,15 +5610,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.View.SetActive.Response.Error @@ -5633,7 +5626,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5641,7 +5634,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition @@ -5651,7 +5644,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition.Request @@ -5669,7 +5662,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition.Response @@ -5677,15 +5670,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.View.SetPosition.Response.Error @@ -5693,7 +5686,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5701,7 +5694,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.Update @@ -5711,7 +5704,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.Update.Request @@ -5722,14 +5715,14 @@ set the current active view (persisted only within a session) | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | | | +| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | | | - + ### Rpc.BlockDataview.View.Update.Response @@ -5737,15 +5730,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.Update.Response.Error](#anytype-Rpc-BlockDataview-View-Update-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.Update.Response.Error](#anytype.Rpc.BlockDataview.View.Update.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.View.Update.Response.Error @@ -5753,7 +5746,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Update-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Update.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5761,7 +5754,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation @@ -5771,7 +5764,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Add @@ -5781,7 +5774,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Add.Request @@ -5792,14 +5785,14 @@ set the current active view (persisted only within a session) | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| relation | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | | | +| relation | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | | | - + ### Rpc.BlockDataview.ViewRelation.Add.Response @@ -5807,15 +5800,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Add.Response.Error @@ -5823,7 +5816,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5831,7 +5824,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove @@ -5841,7 +5834,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove.Request @@ -5859,7 +5852,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove.Response @@ -5867,15 +5860,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Remove.Response.Error @@ -5883,7 +5876,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5891,7 +5884,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Replace @@ -5901,7 +5894,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Replace.Request @@ -5913,14 +5906,14 @@ set the current active view (persisted only within a session) | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | | relationKey | [string](#string) | | | -| relation | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | | | +| relation | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | | | - + ### Rpc.BlockDataview.ViewRelation.Replace.Response @@ -5928,15 +5921,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Replace.Response.Error @@ -5944,7 +5937,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code) | | | | description | [string](#string) | | | @@ -5952,7 +5945,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort @@ -5962,7 +5955,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort.Request @@ -5980,7 +5973,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort.Response @@ -5988,15 +5981,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Sort.Response.Error @@ -6004,7 +5997,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error-Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6012,7 +6005,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv @@ -6022,7 +6015,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv.ListSetStyle @@ -6032,7 +6025,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv.ListSetStyle.Request @@ -6042,14 +6035,14 @@ set the current active view (persisted only within a session) | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | +| style | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | - + ### Rpc.BlockDiv.ListSetStyle.Response @@ -6057,15 +6050,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockDiv.ListSetStyle.Response.Error @@ -6073,7 +6066,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error-Code) | | | +| code | [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6081,7 +6074,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile @@ -6091,7 +6084,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.CreateAndUpload @@ -6101,7 +6094,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.CreateAndUpload.Request @@ -6111,17 +6104,17 @@ set the current active view (persisted only within a session) | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | | url | [string](#string) | | | | localPath | [string](#string) | | | -| fileType | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | +| fileType | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | - + ### Rpc.BlockFile.CreateAndUpload.Response @@ -6129,16 +6122,16 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error) | | | +| error | [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockFile.CreateAndUpload.Response.Error @@ -6146,7 +6139,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error-Code) | | | +| code | [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6154,7 +6147,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.ListSetStyle @@ -6164,7 +6157,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.ListSetStyle.Request @@ -6174,14 +6167,14 @@ set the current active view (persisted only within a session) | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | +| style | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | - + ### Rpc.BlockFile.ListSetStyle.Response @@ -6189,15 +6182,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockFile.ListSetStyle.Response.Error @@ -6205,7 +6198,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error-Code) | | | +| code | [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6213,7 +6206,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName @@ -6223,7 +6216,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName.Request @@ -6240,7 +6233,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName.Response @@ -6248,15 +6241,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockFile.SetName.Response.Error](#anytype-Rpc-BlockFile-SetName-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockFile.SetName.Response.Error](#anytype.Rpc.BlockFile.SetName.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockFile.SetName.Response.Error @@ -6264,7 +6257,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockFile.SetName.Response.Error.Code](#anytype-Rpc-BlockFile-SetName-Response-Error-Code) | | | +| code | [Rpc.BlockFile.SetName.Response.Error.Code](#anytype.Rpc.BlockFile.SetName.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6272,7 +6265,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage @@ -6282,7 +6275,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName @@ -6292,7 +6285,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName.Request @@ -6309,7 +6302,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName.Response @@ -6317,14 +6310,14 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockImage.SetName.Response.Error](#anytype-Rpc-BlockImage-SetName-Response-Error) | | | +| error | [Rpc.BlockImage.SetName.Response.Error](#anytype.Rpc.BlockImage.SetName.Response.Error) | | | - + ### Rpc.BlockImage.SetName.Response.Error @@ -6332,7 +6325,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockImage.SetName.Response.Error.Code](#anytype-Rpc-BlockImage-SetName-Response-Error-Code) | | | +| code | [Rpc.BlockImage.SetName.Response.Error.Code](#anytype.Rpc.BlockImage.SetName.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6340,7 +6333,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth @@ -6350,7 +6343,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth.Request @@ -6367,7 +6360,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth.Response @@ -6375,14 +6368,14 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockImage.SetWidth.Response.Error](#anytype-Rpc-BlockImage-SetWidth-Response-Error) | | | +| error | [Rpc.BlockImage.SetWidth.Response.Error](#anytype.Rpc.BlockImage.SetWidth.Response.Error) | | | - + ### Rpc.BlockImage.SetWidth.Response.Error @@ -6390,7 +6383,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype-Rpc-BlockImage-SetWidth-Response-Error-Code) | | | +| code | [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype.Rpc.BlockImage.SetWidth.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6398,7 +6391,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex @@ -6408,7 +6401,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText @@ -6418,7 +6411,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText.Request @@ -6435,7 +6428,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText.Response @@ -6443,15 +6436,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockLatex.SetText.Response.Error](#anytype-Rpc-BlockLatex-SetText-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockLatex.SetText.Response.Error](#anytype.Rpc.BlockLatex.SetText.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockLatex.SetText.Response.Error @@ -6459,7 +6452,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype-Rpc-BlockLatex-SetText-Response-Error-Code) | | | +| code | [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype.Rpc.BlockLatex.SetText.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6467,7 +6460,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink @@ -6477,7 +6470,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink.CreateWithObject @@ -6487,7 +6480,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink.CreateWithObject.Request @@ -6496,21 +6489,21 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | new object details | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | new object details | | templateId | [string](#string) | | optional template id for creating from template | -| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | +| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | | targetId | [string](#string) | | link block params id of the closest simple block | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | link block fields | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | link block fields | - + ### Rpc.BlockLink.CreateWithObject.Response @@ -6518,17 +6511,17 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error) | | | +| error | [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error) | | | | blockId | [string](#string) | | | | targetId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockLink.CreateWithObject.Response.Error @@ -6536,7 +6529,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error-Code) | | | +| code | [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6544,7 +6537,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance @@ -6554,7 +6547,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance.Request @@ -6564,9 +6557,9 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| iconSize | [model.Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) | | | -| cardStyle | [model.Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) | | | -| description | [model.Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) | | | +| iconSize | [model.Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) | | | +| cardStyle | [model.Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) | | | +| description | [model.Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) | | | | relations | [string](#string) | repeated | | @@ -6574,7 +6567,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance.Response @@ -6582,15 +6575,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockLink.ListSetAppearance.Response.Error @@ -6598,7 +6591,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error-Code) | | | +| code | [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6606,7 +6599,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation @@ -6616,7 +6609,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add @@ -6626,7 +6619,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add.Request @@ -6643,7 +6636,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add.Response @@ -6651,15 +6644,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockRelation.Add.Response.Error](#anytype-Rpc-BlockRelation-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockRelation.Add.Response.Error](#anytype.Rpc.BlockRelation.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockRelation.Add.Response.Error @@ -6667,7 +6660,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockRelation.Add.Response.Error.Code](#anytype-Rpc-BlockRelation-Add-Response-Error-Code) | | | +| code | [Rpc.BlockRelation.Add.Response.Error.Code](#anytype.Rpc.BlockRelation.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6675,7 +6668,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey @@ -6685,7 +6678,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey.Request @@ -6702,7 +6695,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey.Response @@ -6710,15 +6703,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockRelation.SetKey.Response.Error](#anytype-Rpc-BlockRelation-SetKey-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockRelation.SetKey.Response.Error](#anytype.Rpc.BlockRelation.SetKey.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockRelation.SetKey.Response.Error @@ -6726,7 +6719,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype-Rpc-BlockRelation-SetKey-Response-Error-Code) | | | +| code | [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype.Rpc.BlockRelation.SetKey.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6734,7 +6727,7 @@ id of the closest simple block | - + ### Rpc.BlockTable @@ -6744,7 +6737,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnCreate @@ -6754,7 +6747,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnCreate.Request @@ -6764,14 +6757,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest column | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | - + ### Rpc.BlockTable.ColumnCreate.Response @@ -6779,15 +6772,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnCreate.Response.Error @@ -6795,7 +6788,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error-Code) | | | +| code | [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6803,7 +6796,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete @@ -6813,7 +6806,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete.Request @@ -6829,7 +6822,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete.Response @@ -6837,15 +6830,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnDelete.Response.Error @@ -6853,7 +6846,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error-Code) | | | +| code | [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6861,7 +6854,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDuplicate @@ -6871,7 +6864,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDuplicate.Request @@ -6882,14 +6875,14 @@ id of the closest simple block | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | | | blockId | [string](#string) | | block to duplicate | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | - + ### Rpc.BlockTable.ColumnDuplicate.Response @@ -6897,16 +6890,16 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error) | | | +| error | [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnDuplicate.Response.Error @@ -6914,7 +6907,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error-Code) | | | +| code | [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6922,7 +6915,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill @@ -6932,7 +6925,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill.Request @@ -6948,7 +6941,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill.Response @@ -6956,15 +6949,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnListFill.Response.Error @@ -6972,7 +6965,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error-Code) | | | +| code | [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error.Code) | | | | description | [string](#string) | | | @@ -6980,7 +6973,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnMove @@ -6990,7 +6983,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnMove.Request @@ -7001,14 +6994,14 @@ id of the closest simple block | | contextId | [string](#string) | | | | targetId | [string](#string) | | | | dropTargetId | [string](#string) | | | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | - + ### Rpc.BlockTable.ColumnMove.Response @@ -7016,15 +7009,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnMove.Response.Error](#anytype-Rpc-BlockTable-ColumnMove-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnMove.Response.Error](#anytype.Rpc.BlockTable.ColumnMove.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnMove.Response.Error @@ -7032,7 +7025,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnMove-Response-Error-Code) | | | +| code | [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnMove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7040,7 +7033,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create @@ -7050,7 +7043,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create.Request @@ -7060,7 +7053,7 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | | rows | [uint32](#uint32) | | | | columns | [uint32](#uint32) | | | | withHeaderRow | [bool](#bool) | | | @@ -7070,7 +7063,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create.Response @@ -7078,16 +7071,16 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.Create.Response.Error](#anytype-Rpc-BlockTable-Create-Response-Error) | | | +| error | [Rpc.BlockTable.Create.Response.Error](#anytype.Rpc.BlockTable.Create.Response.Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.Create.Response.Error @@ -7095,7 +7088,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.Create.Response.Error.Code](#anytype-Rpc-BlockTable-Create-Response-Error-Code) | | | +| code | [Rpc.BlockTable.Create.Response.Error.Code](#anytype.Rpc.BlockTable.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7103,7 +7096,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand @@ -7113,7 +7106,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand.Request @@ -7131,7 +7124,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand.Response @@ -7139,15 +7132,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.Expand.Response.Error](#anytype-Rpc-BlockTable-Expand-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.Expand.Response.Error](#anytype.Rpc.BlockTable.Expand.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.Expand.Response.Error @@ -7155,7 +7148,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.Expand.Response.Error.Code](#anytype-Rpc-BlockTable-Expand-Response-Error-Code) | | | +| code | [Rpc.BlockTable.Expand.Response.Error.Code](#anytype.Rpc.BlockTable.Expand.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7163,7 +7156,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowCreate @@ -7173,7 +7166,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowCreate.Request @@ -7183,14 +7176,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest row | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | - + ### Rpc.BlockTable.RowCreate.Response @@ -7198,15 +7191,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowCreate.Response.Error](#anytype-Rpc-BlockTable-RowCreate-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.RowCreate.Response.Error](#anytype.Rpc.BlockTable.RowCreate.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.RowCreate.Response.Error @@ -7214,7 +7207,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype-Rpc-BlockTable-RowCreate-Response-Error-Code) | | | +| code | [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype.Rpc.BlockTable.RowCreate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7222,7 +7215,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete @@ -7232,7 +7225,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete.Request @@ -7248,7 +7241,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete.Response @@ -7256,15 +7249,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowDelete.Response.Error](#anytype-Rpc-BlockTable-RowDelete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.RowDelete.Response.Error](#anytype.Rpc.BlockTable.RowDelete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.RowDelete.Response.Error @@ -7272,7 +7265,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype-Rpc-BlockTable-RowDelete-Response-Error-Code) | | | +| code | [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype.Rpc.BlockTable.RowDelete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7280,7 +7273,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDuplicate @@ -7290,7 +7283,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDuplicate.Request @@ -7301,14 +7294,14 @@ id of the closest simple block | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | | | blockId | [string](#string) | | block to duplicate | -| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| position | [model.Block.Position](#anytype.model.Block.Position) | | | - + ### Rpc.BlockTable.RowDuplicate.Response @@ -7316,15 +7309,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.RowDuplicate.Response.Error @@ -7332,7 +7325,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error-Code) | | | +| code | [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7340,7 +7333,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean @@ -7350,7 +7343,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean.Request @@ -7366,7 +7359,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean.Response @@ -7374,15 +7367,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowListClean.Response.Error](#anytype-Rpc-BlockTable-RowListClean-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.RowListClean.Response.Error](#anytype.Rpc.BlockTable.RowListClean.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.RowListClean.Response.Error @@ -7390,7 +7383,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype-Rpc-BlockTable-RowListClean-Response-Error-Code) | | | +| code | [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype.Rpc.BlockTable.RowListClean.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7398,7 +7391,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill @@ -7408,7 +7401,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill.Request @@ -7424,7 +7417,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill.Response @@ -7432,15 +7425,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowListFill.Response.Error](#anytype-Rpc-BlockTable-RowListFill-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.RowListFill.Response.Error](#anytype.Rpc.BlockTable.RowListFill.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.RowListFill.Response.Error @@ -7448,7 +7441,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype-Rpc-BlockTable-RowListFill-Response-Error-Code) | | | +| code | [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype.Rpc.BlockTable.RowListFill.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7456,7 +7449,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader @@ -7466,7 +7459,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader.Request @@ -7483,7 +7476,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader.Response @@ -7491,15 +7484,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.RowSetHeader.Response.Error @@ -7507,7 +7500,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error-Code) | | | +| code | [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7515,7 +7508,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Sort @@ -7525,7 +7518,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Sort.Request @@ -7535,14 +7528,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | columnId | [string](#string) | | | -| type | [model.Block.Content.Dataview.Sort.Type](#anytype-model-Block-Content-Dataview-Sort-Type) | | | +| type | [model.Block.Content.Dataview.Sort.Type](#anytype.model.Block.Content.Dataview.Sort.Type) | | | - + ### Rpc.BlockTable.Sort.Response @@ -7550,15 +7543,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.Sort.Response.Error](#anytype-Rpc-BlockTable-Sort-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockTable.Sort.Response.Error](#anytype.Rpc.BlockTable.Sort.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockTable.Sort.Response.Error @@ -7566,7 +7559,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.Sort.Response.Error.Code](#anytype-Rpc-BlockTable-Sort-Response-Error-Code) | | | +| code | [Rpc.BlockTable.Sort.Response.Error.Code](#anytype.Rpc.BlockTable.Sort.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7574,7 +7567,7 @@ id of the closest simple block | - + ### Rpc.BlockText @@ -7584,7 +7577,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent @@ -7594,7 +7587,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent.Request @@ -7610,7 +7603,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent.Response @@ -7618,15 +7611,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListClearContent.Response.Error](#anytype-Rpc-BlockText-ListClearContent-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.ListClearContent.Response.Error](#anytype.Rpc.BlockText.ListClearContent.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.ListClearContent.Response.Error @@ -7634,7 +7627,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype-Rpc-BlockText-ListClearContent-Response-Error-Code) | | | +| code | [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype.Rpc.BlockText.ListClearContent.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7642,7 +7635,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle @@ -7652,7 +7645,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle.Request @@ -7668,7 +7661,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle.Response @@ -7676,15 +7669,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListClearStyle.Response.Error](#anytype-Rpc-BlockText-ListClearStyle-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.ListClearStyle.Response.Error](#anytype.Rpc.BlockText.ListClearStyle.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.ListClearStyle.Response.Error @@ -7692,7 +7685,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListClearStyle-Response-Error-Code) | | | +| code | [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListClearStyle.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7700,7 +7693,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor @@ -7710,7 +7703,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor.Request @@ -7727,7 +7720,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor.Response @@ -7735,15 +7728,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListSetColor.Response.Error](#anytype-Rpc-BlockText-ListSetColor-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.ListSetColor.Response.Error](#anytype.Rpc.BlockText.ListSetColor.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.ListSetColor.Response.Error @@ -7751,7 +7744,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype-Rpc-BlockText-ListSetColor-Response-Error-Code) | | | +| code | [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype.Rpc.BlockText.ListSetColor.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7759,7 +7752,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetMark @@ -7769,7 +7762,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetMark.Request @@ -7779,14 +7772,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| mark | [model.Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) | | | +| mark | [model.Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) | | | - + ### Rpc.BlockText.ListSetMark.Response @@ -7794,15 +7787,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListSetMark.Response.Error](#anytype-Rpc-BlockText-ListSetMark-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.ListSetMark.Response.Error](#anytype.Rpc.BlockText.ListSetMark.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.ListSetMark.Response.Error @@ -7810,7 +7803,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype-Rpc-BlockText-ListSetMark-Response-Error-Code) | | | +| code | [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype.Rpc.BlockText.ListSetMark.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7818,7 +7811,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetStyle @@ -7828,7 +7821,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetStyle.Request @@ -7838,14 +7831,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | - + ### Rpc.BlockText.ListSetStyle.Response @@ -7853,15 +7846,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListSetStyle.Response.Error](#anytype-Rpc-BlockText-ListSetStyle-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.ListSetStyle.Response.Error](#anytype.Rpc.BlockText.ListSetStyle.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.ListSetStyle.Response.Error @@ -7869,7 +7862,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListSetStyle-Response-Error-Code) | | | +| code | [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListSetStyle.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7877,7 +7870,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked @@ -7887,7 +7880,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked.Request @@ -7904,7 +7897,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked.Response @@ -7912,15 +7905,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetChecked.Response.Error](#anytype-Rpc-BlockText-SetChecked-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.SetChecked.Response.Error](#anytype.Rpc.BlockText.SetChecked.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.SetChecked.Response.Error @@ -7928,7 +7921,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype-Rpc-BlockText-SetChecked-Response-Error-Code) | | | +| code | [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype.Rpc.BlockText.SetChecked.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7936,7 +7929,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor @@ -7946,7 +7939,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor.Request @@ -7963,7 +7956,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor.Response @@ -7971,15 +7964,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetColor.Response.Error](#anytype-Rpc-BlockText-SetColor-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.SetColor.Response.Error](#anytype.Rpc.BlockText.SetColor.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.SetColor.Response.Error @@ -7987,7 +7980,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetColor.Response.Error.Code](#anytype-Rpc-BlockText-SetColor-Response-Error-Code) | | | +| code | [Rpc.BlockText.SetColor.Response.Error.Code](#anytype.Rpc.BlockText.SetColor.Response.Error.Code) | | | | description | [string](#string) | | | @@ -7995,7 +7988,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon @@ -8005,7 +7998,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon.Request @@ -8023,7 +8016,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon.Response @@ -8031,15 +8024,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetIcon.Response.Error](#anytype-Rpc-BlockText-SetIcon-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.SetIcon.Response.Error](#anytype.Rpc.BlockText.SetIcon.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.SetIcon.Response.Error @@ -8047,7 +8040,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype-Rpc-BlockText-SetIcon-Response-Error-Code) | | | +| code | [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype.Rpc.BlockText.SetIcon.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8055,7 +8048,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetMarks @@ -8065,7 +8058,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetMarks.Get Get marks list in the selected range in text block. @@ -8075,7 +8068,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetMarks.Get.Request @@ -8085,14 +8078,14 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| range | [model.Range](#anytype-model-Range) | | | +| range | [model.Range](#anytype.model.Range) | | | - + ### Rpc.BlockText.SetMarks.Get.Response @@ -8100,15 +8093,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.SetMarks.Get.Response.Error @@ -8116,7 +8109,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error-Code) | | | +| code | [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8124,7 +8117,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetStyle @@ -8134,7 +8127,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetStyle.Request @@ -8144,14 +8137,14 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | - + ### Rpc.BlockText.SetStyle.Response @@ -8159,15 +8152,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetStyle.Response.Error](#anytype-Rpc-BlockText-SetStyle-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.SetStyle.Response.Error](#anytype.Rpc.BlockText.SetStyle.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.SetStyle.Response.Error @@ -8175,7 +8168,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype-Rpc-BlockText-SetStyle-Response-Error-Code) | | | +| code | [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype.Rpc.BlockText.SetStyle.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8183,7 +8176,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetText @@ -8193,7 +8186,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetText.Request @@ -8204,14 +8197,14 @@ Get marks list in the selected range in text block. | contextId | [string](#string) | | | | blockId | [string](#string) | | | | text | [string](#string) | | | -| marks | [model.Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | | +| marks | [model.Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | | - + ### Rpc.BlockText.SetText.Response @@ -8219,15 +8212,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetText.Response.Error](#anytype-Rpc-BlockText-SetText-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.BlockText.SetText.Response.Error](#anytype.Rpc.BlockText.SetText.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.BlockText.SetText.Response.Error @@ -8235,7 +8228,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetText.Response.Error.Code](#anytype-Rpc-BlockText-SetText-Response-Error-Code) | | | +| code | [Rpc.BlockText.SetText.Response.Error.Code](#anytype.Rpc.BlockText.SetText.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8243,7 +8236,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo @@ -8253,7 +8246,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName @@ -8263,7 +8256,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName.Request @@ -8280,7 +8273,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName.Response @@ -8288,14 +8281,14 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockVideo.SetName.Response.Error](#anytype-Rpc-BlockVideo-SetName-Response-Error) | | | +| error | [Rpc.BlockVideo.SetName.Response.Error](#anytype.Rpc.BlockVideo.SetName.Response.Error) | | | - + ### Rpc.BlockVideo.SetName.Response.Error @@ -8303,7 +8296,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype-Rpc-BlockVideo-SetName-Response-Error-Code) | | | +| code | [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype.Rpc.BlockVideo.SetName.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8311,7 +8304,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth @@ -8321,7 +8314,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth.Request @@ -8338,7 +8331,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth.Response @@ -8346,14 +8339,14 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockVideo.SetWidth.Response.Error](#anytype-Rpc-BlockVideo-SetWidth-Response-Error) | | | +| error | [Rpc.BlockVideo.SetWidth.Response.Error](#anytype.Rpc.BlockVideo.SetWidth.Response.Error) | | | - + ### Rpc.BlockVideo.SetWidth.Response.Error @@ -8361,7 +8354,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype-Rpc-BlockVideo-SetWidth-Response-Error-Code) | | | +| code | [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype.Rpc.BlockVideo.SetWidth.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8369,7 +8362,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug @@ -8379,7 +8372,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore @@ -8389,7 +8382,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore.Request @@ -8405,7 +8398,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore.Response @@ -8413,16 +8406,16 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.ExportLocalstore.Response.Error](#anytype-Rpc-Debug-ExportLocalstore-Response-Error) | | | +| error | [Rpc.Debug.ExportLocalstore.Response.Error](#anytype.Rpc.Debug.ExportLocalstore.Response.Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Debug.ExportLocalstore.Response.Error @@ -8430,7 +8423,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype-Rpc-Debug-ExportLocalstore-Response-Error-Code) | | | +| code | [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype.Rpc.Debug.ExportLocalstore.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8438,7 +8431,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping @@ -8448,7 +8441,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Request @@ -8464,7 +8457,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Response @@ -8472,7 +8465,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.Ping.Response.Error](#anytype-Rpc-Debug-Ping-Response-Error) | | | +| error | [Rpc.Debug.Ping.Response.Error](#anytype.Rpc.Debug.Ping.Response.Error) | | | | index | [int32](#int32) | | | @@ -8480,7 +8473,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Response.Error @@ -8488,7 +8481,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.Ping.Response.Error.Code](#anytype-Rpc-Debug-Ping-Response-Error-Code) | | | +| code | [Rpc.Debug.Ping.Response.Error.Code](#anytype.Rpc.Debug.Ping.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8496,7 +8489,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary @@ -8506,7 +8499,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary.Request @@ -8516,7 +8509,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary.Response @@ -8524,16 +8517,16 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.SpaceSummary.Response.Error](#anytype-Rpc-Debug-SpaceSummary-Response-Error) | | | +| error | [Rpc.Debug.SpaceSummary.Response.Error](#anytype.Rpc.Debug.SpaceSummary.Response.Error) | | | | spaceId | [string](#string) | | | -| infos | [Rpc.Debug.TreeInfo](#anytype-Rpc-Debug-TreeInfo) | repeated | | +| infos | [Rpc.Debug.TreeInfo](#anytype.Rpc.Debug.TreeInfo) | repeated | | - + ### Rpc.Debug.SpaceSummary.Response.Error @@ -8541,7 +8534,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype-Rpc-Debug-SpaceSummary-Response-Error-Code) | | | +| code | [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype.Rpc.Debug.SpaceSummary.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8549,7 +8542,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree @@ -8559,7 +8552,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Request @@ -8577,7 +8570,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Response @@ -8585,7 +8578,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.Tree.Response.Error](#anytype-Rpc-Debug-Tree-Response-Error) | | | +| error | [Rpc.Debug.Tree.Response.Error](#anytype.Rpc.Debug.Tree.Response.Error) | | | | filename | [string](#string) | | | @@ -8593,7 +8586,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Response.Error @@ -8601,7 +8594,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.Tree.Response.Error.Code](#anytype-Rpc-Debug-Tree-Response-Error-Code) | | | +| code | [Rpc.Debug.Tree.Response.Error.Code](#anytype.Rpc.Debug.Tree.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8609,7 +8602,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads @@ -8619,7 +8612,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads.Request @@ -8634,7 +8627,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads.Response @@ -8642,16 +8635,16 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.TreeHeads.Response.Error](#anytype-Rpc-Debug-TreeHeads-Response-Error) | | | +| error | [Rpc.Debug.TreeHeads.Response.Error](#anytype.Rpc.Debug.TreeHeads.Response.Error) | | | | spaceId | [string](#string) | | | -| info | [Rpc.Debug.TreeInfo](#anytype-Rpc-Debug-TreeInfo) | | | +| info | [Rpc.Debug.TreeInfo](#anytype.Rpc.Debug.TreeInfo) | | | - + ### Rpc.Debug.TreeHeads.Response.Error @@ -8659,7 +8652,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype-Rpc-Debug-TreeHeads-Response-Error-Code) | | | +| code | [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype.Rpc.Debug.TreeHeads.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8667,7 +8660,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeInfo @@ -8683,7 +8676,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File @@ -8693,7 +8686,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download @@ -8703,7 +8696,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Request @@ -8719,7 +8712,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Response @@ -8727,7 +8720,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Download.Response.Error](#anytype-Rpc-File-Download-Response-Error) | | | +| error | [Rpc.File.Download.Response.Error](#anytype.Rpc.File.Download.Response.Error) | | | | localPath | [string](#string) | | | @@ -8735,7 +8728,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Response.Error @@ -8743,7 +8736,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Download.Response.Error.Code](#anytype-Rpc-File-Download-Response-Error-Code) | | | +| code | [Rpc.File.Download.Response.Error.Code](#anytype.Rpc.File.Download.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8751,7 +8744,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop @@ -8761,7 +8754,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop.Request @@ -8771,7 +8764,7 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | dropTargetId | [string](#string) | | id of the simple block to insert considering position | -| position | [model.Block.Position](#anytype-model-Block-Position) | | position relatively to the dropTargetId simple block | +| position | [model.Block.Position](#anytype.model.Block.Position) | | position relatively to the dropTargetId simple block | | localFilePaths | [string](#string) | repeated | | @@ -8779,7 +8772,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop.Response @@ -8787,15 +8780,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Drop.Response.Error](#anytype-Rpc-File-Drop-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.File.Drop.Response.Error](#anytype.Rpc.File.Drop.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.File.Drop.Response.Error @@ -8803,7 +8796,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Drop.Response.Error.Code](#anytype-Rpc-File-Drop-Response-Error-Code) | | | +| code | [Rpc.File.Drop.Response.Error.Code](#anytype.Rpc.File.Drop.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8811,7 +8804,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload @@ -8821,7 +8814,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Request @@ -8837,7 +8830,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Response @@ -8845,7 +8838,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.ListOffload.Response.Error](#anytype-Rpc-File-ListOffload-Response-Error) | | | +| error | [Rpc.File.ListOffload.Response.Error](#anytype.Rpc.File.ListOffload.Response.Error) | | | | filesOffloaded | [int32](#int32) | | | | bytesOffloaded | [uint64](#uint64) | | | @@ -8854,7 +8847,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Response.Error @@ -8862,7 +8855,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.ListOffload.Response.Error.Code](#anytype-Rpc-File-ListOffload-Response-Error-Code) | | | +| code | [Rpc.File.ListOffload.Response.Error.Code](#anytype.Rpc.File.ListOffload.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8870,7 +8863,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload @@ -8880,7 +8873,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Request @@ -8896,7 +8889,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Response @@ -8904,7 +8897,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Offload.Response.Error](#anytype-Rpc-File-Offload-Response-Error) | | | +| error | [Rpc.File.Offload.Response.Error](#anytype.Rpc.File.Offload.Response.Error) | | | | bytesOffloaded | [uint64](#uint64) | | | @@ -8912,7 +8905,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Response.Error @@ -8920,7 +8913,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Offload.Response.Error.Code](#anytype-Rpc-File-Offload-Response-Error-Code) | | | +| code | [Rpc.File.Offload.Response.Error.Code](#anytype.Rpc.File.Offload.Response.Error.Code) | | | | description | [string](#string) | | | @@ -8928,79 +8921,7 @@ Get marks list in the selected range in text block. - - -### Rpc.File.SpaceUsage - - - - - - - - - -### Rpc.File.SpaceUsage.Request - - - - - - - - - -### Rpc.File.SpaceUsage.Response - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| error | [Rpc.File.SpaceUsage.Response.Error](#anytype-Rpc-File-SpaceUsage-Response-Error) | | | -| usage | [Rpc.File.SpaceUsage.Response.Usage](#anytype-Rpc-File-SpaceUsage-Response-Usage) | | | - - - - - - - - -### Rpc.File.SpaceUsage.Response.Error - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| code | [Rpc.File.SpaceUsage.Response.Error.Code](#anytype-Rpc-File-SpaceUsage-Response-Error-Code) | | | -| description | [string](#string) | | | - - - - - - - - -### Rpc.File.SpaceUsage.Response.Usage - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| filesCount | [uint64](#uint64) | | | -| cidsCount | [uint64](#uint64) | | | -| bytesUsage | [uint64](#uint64) | | | -| bytesLeft | [uint64](#uint64) | | | -| bytesLimit | [uint64](#uint64) | | | -| localBytesUsage | [uint64](#uint64) | | | - - - - - - - + ### Rpc.File.Upload @@ -9010,7 +8931,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload.Request @@ -9020,16 +8941,16 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | url | [string](#string) | | | | localPath | [string](#string) | | | -| type | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | +| type | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | | disableEncryption | [bool](#bool) | | deprecated, has no affect | -| style | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | +| style | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | - + ### Rpc.File.Upload.Response @@ -9037,7 +8958,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Upload.Response.Error](#anytype-Rpc-File-Upload-Response-Error) | | | +| error | [Rpc.File.Upload.Response.Error](#anytype.Rpc.File.Upload.Response.Error) | | | | hash | [string](#string) | | | @@ -9045,7 +8966,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload.Response.Error @@ -9053,7 +8974,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Upload.Response.Error.Code](#anytype-Rpc-File-Upload-Response-Error-Code) | | | +| code | [Rpc.File.Upload.Response.Error.Code](#anytype.Rpc.File.Upload.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9061,7 +8982,7 @@ Get marks list in the selected range in text block. - + ### Rpc.GenericErrorResponse @@ -9069,14 +8990,14 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.GenericErrorResponse.Error](#anytype-Rpc-GenericErrorResponse-Error) | | | +| error | [Rpc.GenericErrorResponse.Error](#anytype.Rpc.GenericErrorResponse.Error) | | | - + ### Rpc.GenericErrorResponse.Error @@ -9084,7 +9005,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.GenericErrorResponse.Error.Code](#anytype-Rpc-GenericErrorResponse-Error-Code) | | | +| code | [Rpc.GenericErrorResponse.Error.Code](#anytype.Rpc.GenericErrorResponse.Error.Code) | | | | description | [string](#string) | | | @@ -9092,7 +9013,7 @@ Get marks list in the selected range in text block. - + ### Rpc.History @@ -9102,7 +9023,7 @@ Get marks list in the selected range in text block. - + ### Rpc.History.GetVersions returns list of versions (changes) @@ -9112,7 +9033,7 @@ returns list of versions (changes) - + ### Rpc.History.GetVersions.Request @@ -9129,7 +9050,7 @@ returns list of versions (changes) - + ### Rpc.History.GetVersions.Response @@ -9137,15 +9058,15 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.History.GetVersions.Response.Error](#anytype-Rpc-History-GetVersions-Response-Error) | | | -| versions | [Rpc.History.Version](#anytype-Rpc-History-Version) | repeated | | +| error | [Rpc.History.GetVersions.Response.Error](#anytype.Rpc.History.GetVersions.Response.Error) | | | +| versions | [Rpc.History.Version](#anytype.Rpc.History.Version) | repeated | | - + ### Rpc.History.GetVersions.Response.Error @@ -9153,7 +9074,7 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.History.GetVersions.Response.Error.Code](#anytype-Rpc-History-GetVersions-Response-Error-Code) | | | +| code | [Rpc.History.GetVersions.Response.Error.Code](#anytype.Rpc.History.GetVersions.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9161,7 +9082,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion @@ -9171,7 +9092,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion.Request @@ -9187,7 +9108,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion.Response @@ -9195,14 +9116,14 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.History.SetVersion.Response.Error](#anytype-Rpc-History-SetVersion-Response-Error) | | | +| error | [Rpc.History.SetVersion.Response.Error](#anytype.Rpc.History.SetVersion.Response.Error) | | | - + ### Rpc.History.SetVersion.Response.Error @@ -9210,7 +9131,7 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.History.SetVersion.Response.Error.Code](#anytype-Rpc-History-SetVersion-Response-Error-Code) | | | +| code | [Rpc.History.SetVersion.Response.Error.Code](#anytype.Rpc.History.SetVersion.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9218,7 +9139,7 @@ returns list of versions (changes) - + ### Rpc.History.ShowVersion returns blockShow event for given version @@ -9228,7 +9149,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Request @@ -9245,7 +9166,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Response @@ -9253,9 +9174,9 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.History.ShowVersion.Response.Error](#anytype-Rpc-History-ShowVersion-Response-Error) | | | -| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | -| version | [Rpc.History.Version](#anytype-Rpc-History-Version) | | | +| error | [Rpc.History.ShowVersion.Response.Error](#anytype.Rpc.History.ShowVersion.Response.Error) | | | +| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | +| version | [Rpc.History.Version](#anytype.Rpc.History.Version) | | | | traceId | [string](#string) | | | @@ -9263,7 +9184,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Response.Error @@ -9271,7 +9192,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.History.ShowVersion.Response.Error.Code](#anytype-Rpc-History-ShowVersion-Response-Error-Code) | | | +| code | [Rpc.History.ShowVersion.Response.Error.Code](#anytype.Rpc.History.ShowVersion.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9279,7 +9200,7 @@ returns blockShow event for given version - + ### Rpc.History.Version @@ -9299,7 +9220,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview @@ -9309,7 +9230,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview.Request @@ -9324,7 +9245,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview.Response @@ -9332,15 +9253,15 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.LinkPreview.Response.Error](#anytype-Rpc-LinkPreview-Response-Error) | | | -| linkPreview | [model.LinkPreview](#anytype-model-LinkPreview) | | | +| error | [Rpc.LinkPreview.Response.Error](#anytype.Rpc.LinkPreview.Response.Error) | | | +| linkPreview | [model.LinkPreview](#anytype.model.LinkPreview) | | | - + ### Rpc.LinkPreview.Response.Error @@ -9348,7 +9269,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.LinkPreview.Response.Error.Code](#anytype-Rpc-LinkPreview-Response-Error-Code) | | | +| code | [Rpc.LinkPreview.Response.Error.Code](#anytype.Rpc.LinkPreview.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9356,7 +9277,7 @@ returns blockShow event for given version - + ### Rpc.Log @@ -9366,7 +9287,7 @@ returns blockShow event for given version - + ### Rpc.Log.Send @@ -9376,7 +9297,7 @@ returns blockShow event for given version - + ### Rpc.Log.Send.Request @@ -9385,14 +9306,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | message | [string](#string) | | | -| level | [Rpc.Log.Send.Request.Level](#anytype-Rpc-Log-Send-Request-Level) | | | +| level | [Rpc.Log.Send.Request.Level](#anytype.Rpc.Log.Send.Request.Level) | | | - + ### Rpc.Log.Send.Response @@ -9400,14 +9321,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Log.Send.Response.Error](#anytype-Rpc-Log-Send-Response-Error) | | | +| error | [Rpc.Log.Send.Response.Error](#anytype.Rpc.Log.Send.Response.Error) | | | - + ### Rpc.Log.Send.Response.Error @@ -9415,7 +9336,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Log.Send.Response.Error.Code](#anytype-Rpc-Log-Send-Response-Error-Code) | | | +| code | [Rpc.Log.Send.Response.Error.Code](#anytype.Rpc.Log.Send.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9423,7 +9344,7 @@ returns blockShow event for given version - + ### Rpc.Metrics @@ -9433,7 +9354,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters @@ -9443,7 +9364,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters.Request @@ -9458,7 +9379,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters.Response @@ -9466,14 +9387,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Metrics.SetParameters.Response.Error](#anytype-Rpc-Metrics-SetParameters-Response-Error) | | | +| error | [Rpc.Metrics.SetParameters.Response.Error](#anytype.Rpc.Metrics.SetParameters.Response.Error) | | | - + ### Rpc.Metrics.SetParameters.Response.Error @@ -9481,7 +9402,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype-Rpc-Metrics-SetParameters-Response-Error-Code) | | | +| code | [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype.Rpc.Metrics.SetParameters.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9489,7 +9410,7 @@ returns blockShow event for given version - + ### Rpc.Navigation @@ -9499,7 +9420,7 @@ returns blockShow event for given version - + ### Rpc.Navigation.GetObjectInfoWithLinks Get the info for page alongside with info for all inbound and outbound links from/to this page @@ -9509,7 +9430,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.GetObjectInfoWithLinks.Request @@ -9518,14 +9439,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | objectId | [string](#string) | | | -| context | [Rpc.Navigation.Context](#anytype-Rpc-Navigation-Context) | | | +| context | [Rpc.Navigation.Context](#anytype.Rpc.Navigation.Context) | | | - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response @@ -9533,15 +9454,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error) | | | -| object | [model.ObjectInfoWithLinks](#anytype-model-ObjectInfoWithLinks) | | | +| error | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error) | | | +| object | [model.ObjectInfoWithLinks](#anytype.model.ObjectInfoWithLinks) | | | - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response.Error @@ -9549,7 +9470,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error-Code) | | | +| code | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9557,7 +9478,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects @@ -9567,7 +9488,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects.Request @@ -9575,7 +9496,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| context | [Rpc.Navigation.Context](#anytype-Rpc-Navigation-Context) | | | +| context | [Rpc.Navigation.Context](#anytype.Rpc.Navigation.Context) | | | | fullText | [string](#string) | | | | limit | [int32](#int32) | | | | offset | [int32](#int32) | | | @@ -9585,7 +9506,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects.Response @@ -9593,15 +9514,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Navigation.ListObjects.Response.Error](#anytype-Rpc-Navigation-ListObjects-Response-Error) | | | -| objects | [model.ObjectInfo](#anytype-model-ObjectInfo) | repeated | | +| error | [Rpc.Navigation.ListObjects.Response.Error](#anytype.Rpc.Navigation.ListObjects.Response.Error) | | | +| objects | [model.ObjectInfo](#anytype.model.ObjectInfo) | repeated | | - + ### Rpc.Navigation.ListObjects.Response.Error @@ -9609,7 +9530,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype-Rpc-Navigation-ListObjects-Response-Error-Code) | | | +| code | [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype.Rpc.Navigation.ListObjects.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9617,7 +9538,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object @@ -9627,7 +9548,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate @@ -9637,7 +9558,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate.Request @@ -9653,7 +9574,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate.Response @@ -9661,14 +9582,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ApplyTemplate.Response.Error](#anytype-Rpc-Object-ApplyTemplate-Response-Error) | | | +| error | [Rpc.Object.ApplyTemplate.Response.Error](#anytype.Rpc.Object.ApplyTemplate.Response.Error) | | | - + ### Rpc.Object.ApplyTemplate.Response.Error @@ -9676,7 +9597,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype-Rpc-Object-ApplyTemplate-Response-Error-Code) | | | +| code | [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype.Rpc.Object.ApplyTemplate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9684,7 +9605,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch @@ -9694,7 +9615,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch.Request @@ -9710,7 +9631,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch.Response @@ -9718,14 +9639,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.BookmarkFetch.Response.Error](#anytype-Rpc-Object-BookmarkFetch-Response-Error) | | | +| error | [Rpc.Object.BookmarkFetch.Response.Error](#anytype.Rpc.Object.BookmarkFetch.Response.Error) | | | - + ### Rpc.Object.BookmarkFetch.Response.Error @@ -9733,7 +9654,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype-Rpc-Object-BookmarkFetch-Response-Error-Code) | | | +| code | [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype.Rpc.Object.BookmarkFetch.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9741,7 +9662,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close @@ -9751,7 +9672,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close.Request @@ -9767,7 +9688,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close.Response @@ -9775,14 +9696,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Close.Response.Error](#anytype-Rpc-Object-Close-Response-Error) | | | +| error | [Rpc.Object.Close.Response.Error](#anytype.Rpc.Object.Close.Response.Error) | | | - + ### Rpc.Object.Close.Response.Error @@ -9790,7 +9711,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Close.Response.Error.Code](#anytype-Rpc-Object-Close-Response-Error-Code) | | | +| code | [Rpc.Object.Close.Response.Error.Code](#anytype.Rpc.Object.Close.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9798,7 +9719,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create @@ -9808,7 +9729,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create.Request @@ -9816,8 +9737,8 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | object details | -| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | object details | +| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | | templateId | [string](#string) | | | @@ -9825,7 +9746,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create.Response @@ -9833,17 +9754,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Create.Response.Error](#anytype-Rpc-Object-Create-Response-Error) | | | +| error | [Rpc.Object.Create.Response.Error](#anytype.Rpc.Object.Create.Response.Error) | | | | objectId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.Create.Response.Error @@ -9851,7 +9772,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Create.Response.Error.Code](#anytype-Rpc-Object-Create-Response-Error-Code) | | | +| code | [Rpc.Object.Create.Response.Error.Code](#anytype.Rpc.Object.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9859,7 +9780,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateBookmark @@ -9869,7 +9790,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateBookmark.Request @@ -9877,14 +9798,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateBookmark.Response @@ -9892,16 +9813,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateBookmark.Response.Error](#anytype-Rpc-Object-CreateBookmark-Response-Error) | | | +| error | [Rpc.Object.CreateBookmark.Response.Error](#anytype.Rpc.Object.CreateBookmark.Response.Error) | | | | objectId | [string](#string) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateBookmark.Response.Error @@ -9909,7 +9830,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype-Rpc-Object-CreateBookmark-Response-Error-Code) | | | +| code | [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype.Rpc.Object.CreateBookmark.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9917,7 +9838,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType @@ -9927,7 +9848,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType.Request @@ -9935,15 +9856,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | - + ### Rpc.Object.CreateObjectType.Response @@ -9951,8 +9872,8 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateObjectType.Response.Error](#anytype-Rpc-Object-CreateObjectType-Response-Error) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| error | [Rpc.Object.CreateObjectType.Response.Error](#anytype.Rpc.Object.CreateObjectType.Response.Error) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | | objectId | [string](#string) | | | @@ -9960,7 +9881,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType.Response.Error @@ -9968,7 +9889,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype-Rpc-Object-CreateObjectType-Response-Error-Code) | | | +| code | [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype.Rpc.Object.CreateObjectType.Response.Error.Code) | | | | description | [string](#string) | | | @@ -9976,7 +9897,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelation @@ -9986,7 +9907,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelation.Request @@ -9994,14 +9915,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateRelation.Response @@ -10009,17 +9930,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateRelation.Response.Error](#anytype-Rpc-Object-CreateRelation-Response-Error) | | | +| error | [Rpc.Object.CreateRelation.Response.Error](#anytype.Rpc.Object.CreateRelation.Response.Error) | | | | objectId | [string](#string) | | | | key | [string](#string) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateRelation.Response.Error @@ -10027,7 +9948,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateRelation.Response.Error.Code](#anytype-Rpc-Object-CreateRelation-Response-Error-Code) | | | +| code | [Rpc.Object.CreateRelation.Response.Error.Code](#anytype.Rpc.Object.CreateRelation.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10035,7 +9956,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelationOption @@ -10045,7 +9966,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelationOption.Request @@ -10053,14 +9974,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateRelationOption.Response @@ -10068,16 +9989,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateRelationOption.Response.Error](#anytype-Rpc-Object-CreateRelationOption-Response-Error) | | | +| error | [Rpc.Object.CreateRelationOption.Response.Error](#anytype.Rpc.Object.CreateRelationOption.Response.Error) | | | | objectId | [string](#string) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateRelationOption.Response.Error @@ -10085,7 +10006,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype-Rpc-Object-CreateRelationOption-Response-Error-Code) | | | +| code | [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype.Rpc.Object.CreateRelationOption.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10093,7 +10014,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateSet @@ -10103,7 +10024,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateSet.Request @@ -10112,16 +10033,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | source | [string](#string) | repeated | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | if omitted the name of page will be the same with object type | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | if omitted the name of page will be the same with object type | | templateId | [string](#string) | | optional template id for creating from template | -| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | +| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | - + ### Rpc.Object.CreateSet.Response @@ -10129,17 +10050,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateSet.Response.Error](#anytype-Rpc-Object-CreateSet-Response-Error) | | | +| error | [Rpc.Object.CreateSet.Response.Error](#anytype.Rpc.Object.CreateSet.Response.Error) | | | | objectId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Object.CreateSet.Response.Error @@ -10147,7 +10068,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateSet.Response.Error.Code](#anytype-Rpc-Object-CreateSet-Response-Error-Code) | | | +| code | [Rpc.Object.CreateSet.Response.Error.Code](#anytype.Rpc.Object.CreateSet.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10155,7 +10076,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate @@ -10165,7 +10086,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Request @@ -10180,7 +10101,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Response @@ -10188,7 +10109,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Duplicate.Response.Error](#anytype-Rpc-Object-Duplicate-Response-Error) | | | +| error | [Rpc.Object.Duplicate.Response.Error](#anytype.Rpc.Object.Duplicate.Response.Error) | | | | id | [string](#string) | | created template id | @@ -10196,7 +10117,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Response.Error @@ -10204,7 +10125,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Duplicate.Response.Error.Code](#anytype-Rpc-Object-Duplicate-Response-Error-Code) | | | +| code | [Rpc.Object.Duplicate.Response.Error.Code](#anytype.Rpc.Object.Duplicate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10212,7 +10133,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph @@ -10222,7 +10143,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Edge @@ -10233,7 +10154,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | source | [string](#string) | | | | target | [string](#string) | | | | name | [string](#string) | | | -| type | [Rpc.Object.Graph.Edge.Type](#anytype-Rpc-Object-Graph-Edge-Type) | | | +| type | [Rpc.Object.Graph.Edge.Type](#anytype.Rpc.Object.Graph.Edge.Type) | | | | description | [string](#string) | | | | iconImage | [string](#string) | | | | iconEmoji | [string](#string) | | | @@ -10244,7 +10165,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Request @@ -10252,7 +10173,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | +| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | | limit | [int32](#int32) | | | | objectTypeFilter | [string](#string) | repeated | additional filter by objectTypes | | keys | [string](#string) | repeated | | @@ -10262,7 +10183,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Response @@ -10270,16 +10191,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Graph.Response.Error](#anytype-Rpc-Object-Graph-Response-Error) | | | -| nodes | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | -| edges | [Rpc.Object.Graph.Edge](#anytype-Rpc-Object-Graph-Edge) | repeated | | +| error | [Rpc.Object.Graph.Response.Error](#anytype.Rpc.Object.Graph.Response.Error) | | | +| nodes | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| edges | [Rpc.Object.Graph.Edge](#anytype.Rpc.Object.Graph.Edge) | repeated | | - + ### Rpc.Object.Graph.Response.Error @@ -10287,7 +10208,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Graph.Response.Error.Code](#anytype-Rpc-Object-Graph-Response-Error-Code) | | | +| code | [Rpc.Object.Graph.Response.Error.Code](#anytype.Rpc.Object.Graph.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10295,7 +10216,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe @@ -10305,7 +10226,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe.Request @@ -10315,7 +10236,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | ----- | ---- | ----- | ----------- | | subId | [string](#string) | | | | relationKey | [string](#string) | | | -| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | +| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | | source | [string](#string) | repeated | | | collectionId | [string](#string) | | | @@ -10324,7 +10245,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe.Response @@ -10332,8 +10253,8 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.GroupsSubscribe.Response.Error](#anytype-Rpc-Object-GroupsSubscribe-Response-Error) | | | -| groups | [model.Block.Content.Dataview.Group](#anytype-model-Block-Content-Dataview-Group) | repeated | | +| error | [Rpc.Object.GroupsSubscribe.Response.Error](#anytype.Rpc.Object.GroupsSubscribe.Response.Error) | | | +| groups | [model.Block.Content.Dataview.Group](#anytype.model.Block.Content.Dataview.Group) | repeated | | | subId | [string](#string) | | | @@ -10341,7 +10262,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe.Response.Error @@ -10349,7 +10270,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype-Rpc-Object-GroupsSubscribe-Response-Error-Code) | | | +| code | [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype.Rpc.Object.GroupsSubscribe.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10357,7 +10278,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import @@ -10367,7 +10288,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion @@ -10377,7 +10298,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion.ValidateToken @@ -10387,7 +10308,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion.ValidateToken.Request @@ -10402,7 +10323,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion.ValidateToken.Response @@ -10410,14 +10331,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error) | | | +| error | [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error) | | | - + ### Rpc.Object.Import.Notion.ValidateToken.Response.Error @@ -10425,7 +10346,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error-Code) | | | +| code | [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10433,7 +10354,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request @@ -10441,17 +10362,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| notionParams | [Rpc.Object.Import.Request.NotionParams](#anytype-Rpc-Object-Import-Request-NotionParams) | | | -| bookmarksParams | [Rpc.Object.Import.Request.BookmarksParams](#anytype-Rpc-Object-Import-Request-BookmarksParams) | | for internal use | -| markdownParams | [Rpc.Object.Import.Request.MarkdownParams](#anytype-Rpc-Object-Import-Request-MarkdownParams) | | | -| htmlParams | [Rpc.Object.Import.Request.HtmlParams](#anytype-Rpc-Object-Import-Request-HtmlParams) | | | -| txtParams | [Rpc.Object.Import.Request.TxtParams](#anytype-Rpc-Object-Import-Request-TxtParams) | | | -| pbParams | [Rpc.Object.Import.Request.PbParams](#anytype-Rpc-Object-Import-Request-PbParams) | | | -| csvParams | [Rpc.Object.Import.Request.CsvParams](#anytype-Rpc-Object-Import-Request-CsvParams) | | | -| snapshots | [Rpc.Object.Import.Request.Snapshot](#anytype-Rpc-Object-Import-Request-Snapshot) | repeated | optional, for external developers usage | +| notionParams | [Rpc.Object.Import.Request.NotionParams](#anytype.Rpc.Object.Import.Request.NotionParams) | | | +| bookmarksParams | [Rpc.Object.Import.Request.BookmarksParams](#anytype.Rpc.Object.Import.Request.BookmarksParams) | | for internal use | +| markdownParams | [Rpc.Object.Import.Request.MarkdownParams](#anytype.Rpc.Object.Import.Request.MarkdownParams) | | | +| htmlParams | [Rpc.Object.Import.Request.HtmlParams](#anytype.Rpc.Object.Import.Request.HtmlParams) | | | +| txtParams | [Rpc.Object.Import.Request.TxtParams](#anytype.Rpc.Object.Import.Request.TxtParams) | | | +| pbParams | [Rpc.Object.Import.Request.PbParams](#anytype.Rpc.Object.Import.Request.PbParams) | | | +| csvParams | [Rpc.Object.Import.Request.CsvParams](#anytype.Rpc.Object.Import.Request.CsvParams) | | | +| snapshots | [Rpc.Object.Import.Request.Snapshot](#anytype.Rpc.Object.Import.Request.Snapshot) | repeated | optional, for external developers usage | | updateExistingObjects | [bool](#bool) | | | -| type | [Rpc.Object.Import.Request.Type](#anytype-Rpc-Object-Import-Request-Type) | | | -| mode | [Rpc.Object.Import.Request.Mode](#anytype-Rpc-Object-Import-Request-Mode) | | | +| type | [Rpc.Object.Import.Request.Type](#anytype.Rpc.Object.Import.Request.Type) | | | +| mode | [Rpc.Object.Import.Request.Mode](#anytype.Rpc.Object.Import.Request.Mode) | | | | noProgress | [bool](#bool) | | | | isMigration | [bool](#bool) | | | @@ -10460,7 +10381,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.BookmarksParams @@ -10475,7 +10396,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.CsvParams @@ -10484,7 +10405,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | path | [string](#string) | repeated | | -| mode | [Rpc.Object.Import.Request.CsvParams.Mode](#anytype-Rpc-Object-Import-Request-CsvParams-Mode) | | | +| mode | [Rpc.Object.Import.Request.CsvParams.Mode](#anytype.Rpc.Object.Import.Request.CsvParams.Mode) | | | | useFirstRowForRelations | [bool](#bool) | | | | delimiter | [string](#string) | | | | transposeRowsAndColumns | [bool](#bool) | | | @@ -10494,7 +10415,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.HtmlParams @@ -10509,7 +10430,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.MarkdownParams @@ -10524,7 +10445,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.NotionParams @@ -10539,7 +10460,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.PbParams @@ -10555,7 +10476,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.Snapshot @@ -10564,14 +10485,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| snapshot | [model.SmartBlockSnapshotBase](#anytype-model-SmartBlockSnapshotBase) | | | +| snapshot | [model.SmartBlockSnapshotBase](#anytype.model.SmartBlockSnapshotBase) | | | - + ### Rpc.Object.Import.Request.TxtParams @@ -10586,7 +10507,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Response @@ -10594,14 +10515,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Import.Response.Error](#anytype-Rpc-Object-Import-Response-Error) | | | +| error | [Rpc.Object.Import.Response.Error](#anytype.Rpc.Object.Import.Response.Error) | | | - + ### Rpc.Object.Import.Response.Error @@ -10609,7 +10530,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Import.Response.Error.Code](#anytype-Rpc-Object-Import-Response-Error-Code) | | | +| code | [Rpc.Object.Import.Response.Error.Code](#anytype.Rpc.Object.Import.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10617,7 +10538,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ImportList @@ -10627,7 +10548,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ImportList.ImportResponse @@ -10635,14 +10556,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| type | [Rpc.Object.ImportList.ImportResponse.Type](#anytype-Rpc-Object-ImportList-ImportResponse-Type) | | | +| type | [Rpc.Object.ImportList.ImportResponse.Type](#anytype.Rpc.Object.ImportList.ImportResponse.Type) | | | - + ### Rpc.Object.ImportList.Request @@ -10652,7 +10573,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ImportList.Response @@ -10660,15 +10581,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ImportList.Response.Error](#anytype-Rpc-Object-ImportList-Response-Error) | | | -| response | [Rpc.Object.ImportList.ImportResponse](#anytype-Rpc-Object-ImportList-ImportResponse) | repeated | | +| error | [Rpc.Object.ImportList.Response.Error](#anytype.Rpc.Object.ImportList.Response.Error) | | | +| response | [Rpc.Object.ImportList.ImportResponse](#anytype.Rpc.Object.ImportList.ImportResponse) | repeated | | - + ### Rpc.Object.ImportList.Response.Error @@ -10676,7 +10597,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ImportList.Response.Error.Code](#anytype-Rpc-Object-ImportList-Response-Error-Code) | | | +| code | [Rpc.Object.ImportList.Response.Error.Code](#anytype.Rpc.Object.ImportList.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10684,7 +10605,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ListDelete @@ -10694,7 +10615,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ListDelete.Request Deletes the object, keys from the local store and unsubscribe from remote changes. Also offloads all orphan files @@ -10709,7 +10630,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDelete.Response @@ -10717,15 +10638,15 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListDelete.Response.Error](#anytype-Rpc-Object-ListDelete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.ListDelete.Response.Error](#anytype.Rpc.Object.ListDelete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.ListDelete.Response.Error @@ -10733,7 +10654,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListDelete.Response.Error.Code](#anytype-Rpc-Object-ListDelete-Response-Error-Code) | | | +| code | [Rpc.Object.ListDelete.Response.Error.Code](#anytype.Rpc.Object.ListDelete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10741,7 +10662,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate @@ -10751,7 +10672,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Request @@ -10766,7 +10687,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Response @@ -10774,7 +10695,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListDuplicate.Response.Error](#anytype-Rpc-Object-ListDuplicate-Response-Error) | | | +| error | [Rpc.Object.ListDuplicate.Response.Error](#anytype.Rpc.Object.ListDuplicate.Response.Error) | | | | ids | [string](#string) | repeated | | @@ -10782,7 +10703,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Response.Error @@ -10790,7 +10711,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype-Rpc-Object-ListDuplicate-Response-Error-Code) | | | +| code | [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype.Rpc.Object.ListDuplicate.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10798,7 +10719,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport @@ -10808,7 +10729,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport.Request @@ -10818,12 +10739,11 @@ Deletes the object, keys from the local store and unsubscribe from remote change | ----- | ---- | ----- | ----------- | | path | [string](#string) | | the path where export files will place | | objectIds | [string](#string) | repeated | ids of documents for export, when empty - will export all available docs | -| format | [Rpc.Object.ListExport.Format](#anytype-Rpc-Object-ListExport-Format) | | export format | +| format | [Rpc.Object.ListExport.Format](#anytype.Rpc.Object.ListExport.Format) | | export format | | zip | [bool](#bool) | | save as zip file | | includeNested | [bool](#bool) | | include all nested | | includeFiles | [bool](#bool) | | include all files | | isJson | [bool](#bool) | | for protobuf export | -| includeDeleted | [bool](#bool) | | for migration | | includeArchived | [bool](#bool) | | for migration | @@ -10831,7 +10751,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport.Response @@ -10839,17 +10759,17 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListExport.Response.Error](#anytype-Rpc-Object-ListExport-Response-Error) | | | +| error | [Rpc.Object.ListExport.Response.Error](#anytype.Rpc.Object.ListExport.Response.Error) | | | | path | [string](#string) | | | | succeed | [int32](#int32) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.ListExport.Response.Error @@ -10857,7 +10777,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListExport.Response.Error.Code](#anytype-Rpc-Object-ListExport-Response-Error-Code) | | | +| code | [Rpc.Object.ListExport.Response.Error.Code](#anytype.Rpc.Object.ListExport.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10865,7 +10785,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived @@ -10875,7 +10795,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived.Request @@ -10891,7 +10811,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived.Response @@ -10899,14 +10819,14 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListSetIsArchived.Response.Error](#anytype-Rpc-Object-ListSetIsArchived-Response-Error) | | | +| error | [Rpc.Object.ListSetIsArchived.Response.Error](#anytype.Rpc.Object.ListSetIsArchived.Response.Error) | | | - + ### Rpc.Object.ListSetIsArchived.Response.Error @@ -10914,7 +10834,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype-Rpc-Object-ListSetIsArchived-Response-Error-Code) | | | +| code | [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype.Rpc.Object.ListSetIsArchived.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10922,7 +10842,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite @@ -10932,7 +10852,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite.Request @@ -10948,7 +10868,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite.Response @@ -10956,14 +10876,14 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error) | | | +| error | [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error) | | | - + ### Rpc.Object.ListSetIsFavorite.Response.Error @@ -10971,7 +10891,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error-Code) | | | +| code | [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error.Code) | | | | description | [string](#string) | | | @@ -10979,7 +10899,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open @@ -10989,7 +10909,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open.Request @@ -11007,7 +10927,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open.Response @@ -11015,15 +10935,15 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Open.Response.Error](#anytype-Rpc-Object-Open-Response-Error) | | | -| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | +| error | [Rpc.Object.Open.Response.Error](#anytype.Rpc.Object.Open.Response.Error) | | | +| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | - + ### Rpc.Object.Open.Response.Error @@ -11031,7 +10951,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Open.Response.Error.Code](#anytype-Rpc-Object-Open-Response-Error-Code) | | | +| code | [Rpc.Object.Open.Response.Error.Code](#anytype.Rpc.Object.Open.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11039,7 +10959,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs @@ -11049,7 +10969,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs.Request @@ -11065,7 +10985,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs.Response @@ -11073,17 +10993,17 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error) | | | +| error | [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error) | | | | objectId | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | -| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | - + ### Rpc.Object.OpenBreadcrumbs.Response.Error @@ -11091,7 +11011,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error-Code) | | | +| code | [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11099,7 +11019,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo @@ -11109,7 +11029,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo.Request @@ -11124,7 +11044,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo.Response @@ -11132,16 +11052,16 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Redo.Response.Error](#anytype-Rpc-Object-Redo-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | -| counters | [Rpc.Object.UndoRedoCounter](#anytype-Rpc-Object-UndoRedoCounter) | | | +| error | [Rpc.Object.Redo.Response.Error](#anytype.Rpc.Object.Redo.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| counters | [Rpc.Object.UndoRedoCounter](#anytype.Rpc.Object.UndoRedoCounter) | | | - + ### Rpc.Object.Redo.Response.Error @@ -11149,7 +11069,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Redo.Response.Error.Code](#anytype-Rpc-Object-Redo-Response-Error-Code) | | | +| code | [Rpc.Object.Redo.Response.Error.Code](#anytype.Rpc.Object.Redo.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11157,7 +11077,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Search @@ -11167,7 +11087,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Search.Request @@ -11175,8 +11095,8 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | -| sorts | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | | +| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | +| sorts | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | | | fullText | [string](#string) | | | | offset | [int32](#int32) | | | | limit | [int32](#int32) | | | @@ -11190,7 +11110,7 @@ deprecated, to be removed | - + ### Rpc.Object.Search.Response @@ -11198,15 +11118,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Search.Response.Error](#anytype-Rpc-Object-Search-Response-Error) | | | -| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| error | [Rpc.Object.Search.Response.Error](#anytype.Rpc.Object.Search.Response.Error) | | | +| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | - + ### Rpc.Object.Search.Response.Error @@ -11214,7 +11134,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Search.Response.Error.Code](#anytype-Rpc-Object-Search-Response-Error-Code) | | | +| code | [Rpc.Object.Search.Response.Error.Code](#anytype.Rpc.Object.Search.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11222,7 +11142,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchSubscribe @@ -11232,7 +11152,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchSubscribe.Request @@ -11241,8 +11161,8 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | subId | [string](#string) | | (optional) subscription identifier client can provide some string or middleware will generate it automatically if subId is already registered on middleware, the new query will replace previous subscription | -| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | filters | -| sorts | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | sorts | +| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | filters | +| sorts | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | sorts | | limit | [int64](#int64) | | results limit | | offset | [int64](#int64) | | initial offset; middleware will find afterId | | keys | [string](#string) | repeated | (required) needed keys in details for return, for object fields mw will return (and subscribe) objects as dependent | @@ -11258,7 +11178,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchSubscribe.Response @@ -11266,18 +11186,18 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SearchSubscribe.Response.Error](#anytype-Rpc-Object-SearchSubscribe-Response-Error) | | | -| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | -| dependencies | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| error | [Rpc.Object.SearchSubscribe.Response.Error](#anytype.Rpc.Object.SearchSubscribe.Response.Error) | | | +| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| dependencies | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | | subId | [string](#string) | | | -| counters | [Event.Object.Subscription.Counters](#anytype-Event-Object-Subscription-Counters) | | | +| counters | [Event.Object.Subscription.Counters](#anytype.Event.Object.Subscription.Counters) | | | - + ### Rpc.Object.SearchSubscribe.Response.Error @@ -11285,7 +11205,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchSubscribe-Response-Error-Code) | | | +| code | [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchSubscribe.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11293,7 +11213,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchUnsubscribe @@ -11303,7 +11223,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchUnsubscribe.Request @@ -11318,7 +11238,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchUnsubscribe.Response @@ -11326,14 +11246,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error) | | | +| error | [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error) | | | - + ### Rpc.Object.SearchUnsubscribe.Response.Error @@ -11341,7 +11261,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error-Code) | | | +| code | [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11349,7 +11269,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetBreadcrumbs @@ -11359,7 +11279,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetBreadcrumbs.Request @@ -11375,7 +11295,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetBreadcrumbs.Response @@ -11383,15 +11303,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetBreadcrumbs.Response.Error @@ -11399,7 +11319,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error-Code) | | | +| code | [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11407,7 +11327,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetDetails @@ -11417,7 +11337,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetDetails.Detail @@ -11426,14 +11346,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| value | [google.protobuf.Value](#google-protobuf-Value) | | NUll - removes key | +| value | [google.protobuf.Value](#google.protobuf.Value) | | NUll - removes key | - + ### Rpc.Object.SetDetails.Request @@ -11442,14 +11362,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| details | [Rpc.Object.SetDetails.Detail](#anytype-Rpc-Object-SetDetails-Detail) | repeated | | +| details | [Rpc.Object.SetDetails.Detail](#anytype.Rpc.Object.SetDetails.Detail) | repeated | | - + ### Rpc.Object.SetDetails.Response @@ -11457,15 +11377,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetDetails.Response.Error](#anytype-Rpc-Object-SetDetails-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetDetails.Response.Error](#anytype.Rpc.Object.SetDetails.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetDetails.Response.Error @@ -11473,7 +11393,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetDetails.Response.Error.Code](#anytype-Rpc-Object-SetDetails-Response-Error-Code) | | | +| code | [Rpc.Object.SetDetails.Response.Error.Code](#anytype.Rpc.Object.SetDetails.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11481,7 +11401,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetInternalFlags @@ -11491,7 +11411,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetInternalFlags.Request @@ -11500,14 +11420,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | +| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | - + ### Rpc.Object.SetInternalFlags.Response @@ -11515,15 +11435,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetInternalFlags.Response.Error](#anytype-Rpc-Object-SetInternalFlags-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetInternalFlags.Response.Error](#anytype.Rpc.Object.SetInternalFlags.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetInternalFlags.Response.Error @@ -11531,7 +11451,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype-Rpc-Object-SetInternalFlags-Response-Error-Code) | | | +| code | [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype.Rpc.Object.SetInternalFlags.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11539,7 +11459,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsArchived @@ -11549,7 +11469,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsArchived.Request @@ -11565,7 +11485,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsArchived.Response @@ -11573,15 +11493,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetIsArchived.Response.Error](#anytype-Rpc-Object-SetIsArchived-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetIsArchived.Response.Error](#anytype.Rpc.Object.SetIsArchived.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetIsArchived.Response.Error @@ -11589,7 +11509,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype-Rpc-Object-SetIsArchived-Response-Error-Code) | | | +| code | [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype.Rpc.Object.SetIsArchived.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11597,7 +11517,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsFavorite @@ -11607,7 +11527,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsFavorite.Request @@ -11623,7 +11543,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsFavorite.Response @@ -11631,15 +11551,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetIsFavorite.Response.Error](#anytype-Rpc-Object-SetIsFavorite-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetIsFavorite.Response.Error](#anytype.Rpc.Object.SetIsFavorite.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetIsFavorite.Response.Error @@ -11647,7 +11567,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-SetIsFavorite-Response-Error-Code) | | | +| code | [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.SetIsFavorite.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11655,7 +11575,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetLayout @@ -11665,7 +11585,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetLayout.Request @@ -11674,14 +11594,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| layout | [model.ObjectType.Layout](#anytype-model-ObjectType-Layout) | | | +| layout | [model.ObjectType.Layout](#anytype.model.ObjectType.Layout) | | | - + ### Rpc.Object.SetLayout.Response @@ -11689,15 +11609,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetLayout.Response.Error](#anytype-Rpc-Object-SetLayout-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetLayout.Response.Error](#anytype.Rpc.Object.SetLayout.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetLayout.Response.Error @@ -11705,7 +11625,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetLayout.Response.Error.Code](#anytype-Rpc-Object-SetLayout-Response-Error-Code) | | | +| code | [Rpc.Object.SetLayout.Response.Error.Code](#anytype.Rpc.Object.SetLayout.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11713,7 +11633,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetObjectType @@ -11723,7 +11643,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetObjectType.Request @@ -11739,7 +11659,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetObjectType.Response @@ -11747,15 +11667,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetObjectType.Response.Error](#anytype-Rpc-Object-SetObjectType-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetObjectType.Response.Error](#anytype.Rpc.Object.SetObjectType.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetObjectType.Response.Error @@ -11763,7 +11683,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetObjectType.Response.Error.Code](#anytype-Rpc-Object-SetObjectType-Response-Error-Code) | | | +| code | [Rpc.Object.SetObjectType.Response.Error.Code](#anytype.Rpc.Object.SetObjectType.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11771,7 +11691,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetSource @@ -11781,7 +11701,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetSource.Request @@ -11797,7 +11717,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetSource.Response @@ -11805,15 +11725,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetSource.Response.Error](#anytype-Rpc-Object-SetSource-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.SetSource.Response.Error](#anytype.Rpc.Object.SetSource.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Object.SetSource.Response.Error @@ -11821,7 +11741,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetSource.Response.Error.Code](#anytype-Rpc-Object-SetSource-Response-Error-Code) | | | +| code | [Rpc.Object.SetSource.Response.Error.Code](#anytype.Rpc.Object.SetSource.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11829,7 +11749,7 @@ deprecated, to be removed | - + ### Rpc.Object.ShareByLink @@ -11839,7 +11759,7 @@ deprecated, to be removed | - + ### Rpc.Object.ShareByLink.Request @@ -11854,7 +11774,7 @@ deprecated, to be removed | - + ### Rpc.Object.ShareByLink.Response @@ -11863,14 +11783,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | link | [string](#string) | | | -| error | [Rpc.Object.ShareByLink.Response.Error](#anytype-Rpc-Object-ShareByLink-Response-Error) | | | +| error | [Rpc.Object.ShareByLink.Response.Error](#anytype.Rpc.Object.ShareByLink.Response.Error) | | | - + ### Rpc.Object.ShareByLink.Response.Error @@ -11878,7 +11798,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ShareByLink.Response.Error.Code](#anytype-Rpc-Object-ShareByLink-Response-Error-Code) | | | +| code | [Rpc.Object.ShareByLink.Response.Error.Code](#anytype.Rpc.Object.ShareByLink.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11886,7 +11806,7 @@ deprecated, to be removed | - + ### Rpc.Object.Show @@ -11896,7 +11816,7 @@ deprecated, to be removed | - + ### Rpc.Object.Show.Request @@ -11914,7 +11834,7 @@ deprecated, to be removed | - + ### Rpc.Object.Show.Response @@ -11922,15 +11842,15 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Show.Response.Error](#anytype-Rpc-Object-Show-Response-Error) | | | -| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | +| error | [Rpc.Object.Show.Response.Error](#anytype.Rpc.Object.Show.Response.Error) | | | +| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | - + ### Rpc.Object.Show.Response.Error @@ -11938,7 +11858,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Show.Response.Error.Code](#anytype-Rpc-Object-Show-Response-Error-Code) | | | +| code | [Rpc.Object.Show.Response.Error.Code](#anytype.Rpc.Object.Show.Response.Error.Code) | | | | description | [string](#string) | | | @@ -11946,7 +11866,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds @@ -11956,7 +11876,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds.Request @@ -11975,7 +11895,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds.Response @@ -11983,9 +11903,9 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SubscribeIds.Response.Error](#anytype-Rpc-Object-SubscribeIds-Response-Error) | | | -| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | -| dependencies | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| error | [Rpc.Object.SubscribeIds.Response.Error](#anytype.Rpc.Object.SubscribeIds.Response.Error) | | | +| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| dependencies | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | | subId | [string](#string) | | | @@ -11993,7 +11913,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds.Response.Error @@ -12001,7 +11921,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype-Rpc-Object-SubscribeIds-Response-Error-Code) | | | +| code | [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype.Rpc.Object.SubscribeIds.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12009,7 +11929,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark @@ -12019,7 +11939,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark.Request @@ -12035,7 +11955,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark.Response @@ -12043,7 +11963,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ToBookmark.Response.Error](#anytype-Rpc-Object-ToBookmark-Response-Error) | | | +| error | [Rpc.Object.ToBookmark.Response.Error](#anytype.Rpc.Object.ToBookmark.Response.Error) | | | | objectId | [string](#string) | | | @@ -12051,7 +11971,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark.Response.Error @@ -12059,7 +11979,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ToBookmark.Response.Error.Code](#anytype-Rpc-Object-ToBookmark-Response-Error-Code) | | | +| code | [Rpc.Object.ToBookmark.Response.Error.Code](#anytype.Rpc.Object.ToBookmark.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12067,7 +11987,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection @@ -12077,7 +11997,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection.Request @@ -12092,7 +12012,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection.Response @@ -12100,14 +12020,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ToCollection.Response.Error](#anytype-Rpc-Object-ToCollection-Response-Error) | | | +| error | [Rpc.Object.ToCollection.Response.Error](#anytype.Rpc.Object.ToCollection.Response.Error) | | | - + ### Rpc.Object.ToCollection.Response.Error @@ -12115,7 +12035,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ToCollection.Response.Error.Code](#anytype-Rpc-Object-ToCollection-Response-Error-Code) | | | +| code | [Rpc.Object.ToCollection.Response.Error.Code](#anytype.Rpc.Object.ToCollection.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12123,7 +12043,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet @@ -12133,7 +12053,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet.Request @@ -12149,7 +12069,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet.Response @@ -12157,14 +12077,14 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ToSet.Response.Error](#anytype-Rpc-Object-ToSet-Response-Error) | | | +| error | [Rpc.Object.ToSet.Response.Error](#anytype.Rpc.Object.ToSet.Response.Error) | | | - + ### Rpc.Object.ToSet.Response.Error @@ -12172,7 +12092,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ToSet.Response.Error.Code](#anytype-Rpc-Object-ToSet-Response-Error-Code) | | | +| code | [Rpc.Object.ToSet.Response.Error.Code](#anytype.Rpc.Object.ToSet.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12180,7 +12100,7 @@ deprecated, to be removed | - + ### Rpc.Object.Undo @@ -12190,7 +12110,7 @@ deprecated, to be removed | - + ### Rpc.Object.Undo.Request @@ -12205,7 +12125,7 @@ deprecated, to be removed | - + ### Rpc.Object.Undo.Response @@ -12213,16 +12133,16 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Undo.Response.Error](#anytype-Rpc-Object-Undo-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | -| counters | [Rpc.Object.UndoRedoCounter](#anytype-Rpc-Object-UndoRedoCounter) | | | +| error | [Rpc.Object.Undo.Response.Error](#anytype.Rpc.Object.Undo.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| counters | [Rpc.Object.UndoRedoCounter](#anytype.Rpc.Object.UndoRedoCounter) | | | - + ### Rpc.Object.Undo.Response.Error @@ -12230,7 +12150,7 @@ deprecated, to be removed | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Undo.Response.Error.Code](#anytype-Rpc-Object-Undo-Response-Error-Code) | | | +| code | [Rpc.Object.Undo.Response.Error.Code](#anytype.Rpc.Object.Undo.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12238,7 +12158,7 @@ deprecated, to be removed | - + ### Rpc.Object.UndoRedoCounter Available undo/redo operations @@ -12254,7 +12174,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard @@ -12264,7 +12184,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Request @@ -12280,7 +12200,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Response @@ -12288,8 +12208,8 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | | objectId | [string](#string) | | | @@ -12297,7 +12217,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Response.Error @@ -12305,7 +12225,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error-Code) | | | +| code | [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12313,7 +12233,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection @@ -12323,7 +12243,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add @@ -12333,7 +12253,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add.Request @@ -12350,7 +12270,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add.Response @@ -12358,15 +12278,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectCollection.Add.Response.Error](#anytype-Rpc-ObjectCollection-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectCollection.Add.Response.Error](#anytype.Rpc.ObjectCollection.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectCollection.Add.Response.Error @@ -12374,7 +12294,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype-Rpc-ObjectCollection-Add-Response-Error-Code) | | | +| code | [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype.Rpc.ObjectCollection.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12382,7 +12302,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove @@ -12392,7 +12312,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove.Request @@ -12408,7 +12328,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove.Response @@ -12416,15 +12336,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectCollection.Remove.Response.Error](#anytype-Rpc-ObjectCollection-Remove-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectCollection.Remove.Response.Error](#anytype.Rpc.ObjectCollection.Remove.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectCollection.Remove.Response.Error @@ -12432,7 +12352,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype-Rpc-ObjectCollection-Remove-Response-Error-Code) | | | +| code | [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype.Rpc.ObjectCollection.Remove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12440,7 +12360,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort @@ -12450,7 +12370,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort.Request @@ -12466,7 +12386,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort.Response @@ -12474,15 +12394,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectCollection.Sort.Response.Error](#anytype-Rpc-ObjectCollection-Sort-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectCollection.Sort.Response.Error](#anytype.Rpc.ObjectCollection.Sort.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectCollection.Sort.Response.Error @@ -12490,7 +12410,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype-Rpc-ObjectCollection-Sort-Response-Error-Code) | | | +| code | [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype.Rpc.ObjectCollection.Sort.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12498,7 +12418,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation @@ -12508,7 +12428,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add @@ -12518,7 +12438,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add.Request @@ -12534,7 +12454,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add.Response @@ -12542,15 +12462,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.Add.Response.Error](#anytype-Rpc-ObjectRelation-Add-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectRelation.Add.Response.Error](#anytype.Rpc.ObjectRelation.Add.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectRelation.Add.Response.Error @@ -12558,7 +12478,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype-Rpc-ObjectRelation-Add-Response-Error-Code) | | | +| code | [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype.Rpc.ObjectRelation.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12566,7 +12486,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured @@ -12576,7 +12496,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured.Request @@ -12592,7 +12512,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured.Response @@ -12600,15 +12520,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectRelation.AddFeatured.Response.Error @@ -12616,7 +12536,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error-Code) | | | +| code | [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12624,7 +12544,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete @@ -12634,7 +12554,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete.Request @@ -12650,7 +12570,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete.Response @@ -12658,15 +12578,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.Delete.Response.Error](#anytype-Rpc-ObjectRelation-Delete-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectRelation.Delete.Response.Error](#anytype.Rpc.ObjectRelation.Delete.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectRelation.Delete.Response.Error @@ -12674,7 +12594,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype-Rpc-ObjectRelation-Delete-Response-Error-Code) | | | +| code | [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype.Rpc.ObjectRelation.Delete.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12682,7 +12602,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable @@ -12692,7 +12612,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable.Request @@ -12707,7 +12627,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable.Response @@ -12715,15 +12635,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error) | | | -| relations | [model.Relation](#anytype-model-Relation) | repeated | | +| error | [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error) | | | +| relations | [model.Relation](#anytype.model.Relation) | repeated | | - + ### Rpc.ObjectRelation.ListAvailable.Response.Error @@ -12731,7 +12651,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error-Code) | | | +| code | [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12739,7 +12659,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured @@ -12749,7 +12669,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured.Request @@ -12765,7 +12685,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured.Response @@ -12773,15 +12693,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| error | [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.ObjectRelation.RemoveFeatured.Response.Error @@ -12789,7 +12709,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error-Code) | | | +| code | [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12797,7 +12717,7 @@ Available undo/redo operations - + ### Rpc.ObjectType @@ -12807,7 +12727,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation @@ -12817,7 +12737,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add @@ -12827,7 +12747,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add.Request @@ -12843,7 +12763,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add.Response @@ -12851,15 +12771,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectType.Relation.Add.Response.Error](#anytype-Rpc-ObjectType-Relation-Add-Response-Error) | | | -| relations | [model.Relation](#anytype-model-Relation) | repeated | | +| error | [Rpc.ObjectType.Relation.Add.Response.Error](#anytype.Rpc.ObjectType.Relation.Add.Response.Error) | | | +| relations | [model.Relation](#anytype.model.Relation) | repeated | | - + ### Rpc.ObjectType.Relation.Add.Response.Error @@ -12867,7 +12787,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Add-Response-Error-Code) | | | +| code | [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12875,7 +12795,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List @@ -12885,7 +12805,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List.Request @@ -12901,7 +12821,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List.Response @@ -12909,15 +12829,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectType.Relation.List.Response.Error](#anytype-Rpc-ObjectType-Relation-List-Response-Error) | | | -| relations | [model.RelationLink](#anytype-model-RelationLink) | repeated | | +| error | [Rpc.ObjectType.Relation.List.Response.Error](#anytype.Rpc.ObjectType.Relation.List.Response.Error) | | | +| relations | [model.RelationLink](#anytype.model.RelationLink) | repeated | | - + ### Rpc.ObjectType.Relation.List.Response.Error @@ -12925,7 +12845,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-List-Response-Error-Code) | | | +| code | [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.List.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12933,7 +12853,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove @@ -12943,7 +12863,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove.Request @@ -12959,7 +12879,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove.Response @@ -12967,14 +12887,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error) | | | +| error | [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error) | | | - + ### Rpc.ObjectType.Relation.Remove.Response.Error @@ -12982,7 +12902,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error-Code) | | | +| code | [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -12990,7 +12910,7 @@ Available undo/redo operations - + ### Rpc.Process @@ -13000,7 +12920,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel @@ -13010,7 +12930,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel.Request @@ -13025,7 +12945,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel.Response @@ -13033,14 +12953,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Process.Cancel.Response.Error](#anytype-Rpc-Process-Cancel-Response-Error) | | | +| error | [Rpc.Process.Cancel.Response.Error](#anytype.Rpc.Process.Cancel.Response.Error) | | | - + ### Rpc.Process.Cancel.Response.Error @@ -13048,7 +12968,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Process.Cancel.Response.Error.Code](#anytype-Rpc-Process-Cancel-Response-Error-Code) | | | +| code | [Rpc.Process.Cancel.Response.Error.Code](#anytype.Rpc.Process.Cancel.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13056,7 +12976,7 @@ Available undo/redo operations - + ### Rpc.Relation @@ -13066,7 +12986,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption @@ -13076,7 +12996,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption.Request @@ -13092,7 +13012,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption.Response @@ -13100,14 +13020,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Relation.ListRemoveOption.Response.Error](#anytype-Rpc-Relation-ListRemoveOption-Response-Error) | | | +| error | [Rpc.Relation.ListRemoveOption.Response.Error](#anytype.Rpc.Relation.ListRemoveOption.Response.Error) | | | - + ### Rpc.Relation.ListRemoveOption.Response.Error @@ -13115,7 +13035,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype-Rpc-Relation-ListRemoveOption-Response-Error-Code) | | | +| code | [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype.Rpc.Relation.ListRemoveOption.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13123,7 +13043,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options @@ -13133,7 +13053,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options.Request @@ -13148,7 +13068,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options.Response @@ -13156,15 +13076,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Relation.Options.Response.Error](#anytype-Rpc-Relation-Options-Response-Error) | | | -| options | [model.RelationOptions](#anytype-model-RelationOptions) | | | +| error | [Rpc.Relation.Options.Response.Error](#anytype.Rpc.Relation.Options.Response.Error) | | | +| options | [model.RelationOptions](#anytype.model.RelationOptions) | | | - + ### Rpc.Relation.Options.Response.Error @@ -13172,7 +13092,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Relation.Options.Response.Error.Code](#anytype-Rpc-Relation-Options-Response-Error-Code) | | | +| code | [Rpc.Relation.Options.Response.Error.Code](#anytype.Rpc.Relation.Options.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13180,7 +13100,7 @@ Available undo/redo operations - + ### Rpc.Template @@ -13190,7 +13110,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone @@ -13200,7 +13120,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Request @@ -13215,7 +13135,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Response @@ -13223,7 +13143,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.Clone.Response.Error](#anytype-Rpc-Template-Clone-Response-Error) | | | +| error | [Rpc.Template.Clone.Response.Error](#anytype.Rpc.Template.Clone.Response.Error) | | | | id | [string](#string) | | created template id | @@ -13231,7 +13151,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Response.Error @@ -13239,7 +13159,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.Clone.Response.Error.Code](#anytype-Rpc-Template-Clone-Response-Error-Code) | | | +| code | [Rpc.Template.Clone.Response.Error.Code](#anytype.Rpc.Template.Clone.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13247,7 +13167,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject @@ -13257,7 +13177,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Request @@ -13272,7 +13192,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Response @@ -13280,7 +13200,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.CreateFromObject.Response.Error](#anytype-Rpc-Template-CreateFromObject-Response-Error) | | | +| error | [Rpc.Template.CreateFromObject.Response.Error](#anytype.Rpc.Template.CreateFromObject.Response.Error) | | | | id | [string](#string) | | created template id | @@ -13288,7 +13208,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Response.Error @@ -13296,7 +13216,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype-Rpc-Template-CreateFromObject-Response-Error-Code) | | | +| code | [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype.Rpc.Template.CreateFromObject.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13304,7 +13224,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType @@ -13314,7 +13234,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Request @@ -13329,7 +13249,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Response @@ -13337,7 +13257,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.CreateFromObjectType.Response.Error](#anytype-Rpc-Template-CreateFromObjectType-Response-Error) | | | +| error | [Rpc.Template.CreateFromObjectType.Response.Error](#anytype.Rpc.Template.CreateFromObjectType.Response.Error) | | | | id | [string](#string) | | created template id | @@ -13345,7 +13265,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Response.Error @@ -13353,7 +13273,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype-Rpc-Template-CreateFromObjectType-Response-Error-Code) | | | +| code | [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype.Rpc.Template.CreateFromObjectType.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13361,7 +13281,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll @@ -13371,7 +13291,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll.Request @@ -13386,7 +13306,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll.Response @@ -13394,16 +13314,16 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.ExportAll.Response.Error](#anytype-Rpc-Template-ExportAll-Response-Error) | | | +| error | [Rpc.Template.ExportAll.Response.Error](#anytype.Rpc.Template.ExportAll.Response.Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Template.ExportAll.Response.Error @@ -13411,7 +13331,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.ExportAll.Response.Error.Code](#anytype-Rpc-Template-ExportAll-Response-Error-Code) | | | +| code | [Rpc.Template.ExportAll.Response.Error.Code](#anytype.Rpc.Template.ExportAll.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13419,7 +13339,7 @@ Available undo/redo operations - + ### Rpc.Unsplash @@ -13429,7 +13349,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download @@ -13439,7 +13359,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Request @@ -13454,7 +13374,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Response @@ -13462,7 +13382,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Unsplash.Download.Response.Error](#anytype-Rpc-Unsplash-Download-Response-Error) | | | +| error | [Rpc.Unsplash.Download.Response.Error](#anytype.Rpc.Unsplash.Download.Response.Error) | | | | hash | [string](#string) | | | @@ -13470,7 +13390,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Response.Error @@ -13478,7 +13398,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Unsplash.Download.Response.Error.Code](#anytype-Rpc-Unsplash-Download-Response-Error-Code) | | | +| code | [Rpc.Unsplash.Download.Response.Error.Code](#anytype.Rpc.Unsplash.Download.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13486,7 +13406,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search @@ -13496,7 +13416,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Request @@ -13512,7 +13432,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Response @@ -13520,15 +13440,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Unsplash.Search.Response.Error](#anytype-Rpc-Unsplash-Search-Response-Error) | | | -| pictures | [Rpc.Unsplash.Search.Response.Picture](#anytype-Rpc-Unsplash-Search-Response-Picture) | repeated | | +| error | [Rpc.Unsplash.Search.Response.Error](#anytype.Rpc.Unsplash.Search.Response.Error) | | | +| pictures | [Rpc.Unsplash.Search.Response.Picture](#anytype.Rpc.Unsplash.Search.Response.Picture) | repeated | | - + ### Rpc.Unsplash.Search.Response.Error @@ -13536,7 +13456,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Unsplash.Search.Response.Error.Code](#anytype-Rpc-Unsplash-Search-Response-Error-Code) | | | +| code | [Rpc.Unsplash.Search.Response.Error.Code](#anytype.Rpc.Unsplash.Search.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13544,7 +13464,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Response.Picture @@ -13562,7 +13482,7 @@ Available undo/redo operations - + ### Rpc.UserData @@ -13572,7 +13492,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump @@ -13582,7 +13502,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump.Request @@ -13597,7 +13517,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump.Response @@ -13605,14 +13525,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.UserData.Dump.Response.Error](#anytype-Rpc-UserData-Dump-Response-Error) | | | +| error | [Rpc.UserData.Dump.Response.Error](#anytype.Rpc.UserData.Dump.Response.Error) | | | - + ### Rpc.UserData.Dump.Response.Error @@ -13620,7 +13540,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.UserData.Dump.Response.Error.Code](#anytype-Rpc-UserData-Dump-Response-Error-Code) | | | +| code | [Rpc.UserData.Dump.Response.Error.Code](#anytype.Rpc.UserData.Dump.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13628,7 +13548,7 @@ Available undo/redo operations - + ### Rpc.Wallet @@ -13638,7 +13558,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession @@ -13648,7 +13568,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession.Request @@ -13663,7 +13583,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession.Response @@ -13671,14 +13591,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.CloseSession.Response.Error](#anytype-Rpc-Wallet-CloseSession-Response-Error) | | | +| error | [Rpc.Wallet.CloseSession.Response.Error](#anytype.Rpc.Wallet.CloseSession.Response.Error) | | | - + ### Rpc.Wallet.CloseSession.Response.Error @@ -13686,7 +13606,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype-Rpc-Wallet-CloseSession-Response-Error-Code) | | | +| code | [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype.Rpc.Wallet.CloseSession.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13694,7 +13614,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert @@ -13704,7 +13624,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Request @@ -13720,7 +13640,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Response @@ -13728,7 +13648,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.Convert.Response.Error](#anytype-Rpc-Wallet-Convert-Response-Error) | | Error while trying to recover a wallet | +| error | [Rpc.Wallet.Convert.Response.Error](#anytype.Rpc.Wallet.Convert.Response.Error) | | Error while trying to recover a wallet | | entropy | [string](#string) | | | | mnemonic | [string](#string) | | | @@ -13737,7 +13657,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Response.Error @@ -13745,7 +13665,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.Convert.Response.Error.Code](#anytype-Rpc-Wallet-Convert-Response-Error-Code) | | | +| code | [Rpc.Wallet.Convert.Response.Error.Code](#anytype.Rpc.Wallet.Convert.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13753,7 +13673,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Create @@ -13763,7 +13683,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Create.Request Front-end-to-middleware request to create a new wallet @@ -13778,7 +13698,7 @@ Front-end-to-middleware request to create a new wallet - + ### Rpc.Wallet.Create.Response Middleware-to-front-end response, that can contain mnemonic of a created account and a NULL error or an empty mnemonic and a non-NULL error @@ -13786,7 +13706,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.Create.Response.Error](#anytype-Rpc-Wallet-Create-Response-Error) | | | +| error | [Rpc.Wallet.Create.Response.Error](#anytype.Rpc.Wallet.Create.Response.Error) | | | | mnemonic | [string](#string) | | Mnemonic of a new account (sequence of words, divided by spaces) | @@ -13794,7 +13714,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Create.Response.Error @@ -13802,7 +13722,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.Create.Response.Error.Code](#anytype-Rpc-Wallet-Create-Response-Error-Code) | | | +| code | [Rpc.Wallet.Create.Response.Error.Code](#anytype.Rpc.Wallet.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13810,7 +13730,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession @@ -13820,7 +13740,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Request @@ -13835,7 +13755,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Response @@ -13843,7 +13763,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.CreateSession.Response.Error](#anytype-Rpc-Wallet-CreateSession-Response-Error) | | | +| error | [Rpc.Wallet.CreateSession.Response.Error](#anytype.Rpc.Wallet.CreateSession.Response.Error) | | | | token | [string](#string) | | | @@ -13851,7 +13771,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Response.Error @@ -13859,7 +13779,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype-Rpc-Wallet-CreateSession-Response-Error-Code) | | | +| code | [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype.Rpc.Wallet.CreateSession.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13867,7 +13787,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Recover @@ -13877,7 +13797,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Recover.Request Front end to middleware request-to-recover-a wallet with this mnemonic and a rootPath @@ -13893,7 +13813,7 @@ Front end to middleware request-to-recover-a wallet with this mnemonic and a roo - + ### Rpc.Wallet.Recover.Response Middleware-to-front-end response, that can contain a NULL error or a non-NULL error @@ -13901,14 +13821,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.Recover.Response.Error](#anytype-Rpc-Wallet-Recover-Response-Error) | | Error while trying to recover a wallet | +| error | [Rpc.Wallet.Recover.Response.Error](#anytype.Rpc.Wallet.Recover.Response.Error) | | Error while trying to recover a wallet | - + ### Rpc.Wallet.Recover.Response.Error @@ -13916,7 +13836,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.Recover.Response.Error.Code](#anytype-Rpc-Wallet-Recover-Response-Error-Code) | | | +| code | [Rpc.Wallet.Recover.Response.Error.Code](#anytype.Rpc.Wallet.Recover.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13924,7 +13844,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace @@ -13934,7 +13854,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create @@ -13944,7 +13864,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Request @@ -13959,7 +13879,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response @@ -13967,7 +13887,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Create.Response.Error](#anytype-Rpc-Workspace-Create-Response-Error) | | | +| error | [Rpc.Workspace.Create.Response.Error](#anytype.Rpc.Workspace.Create.Response.Error) | | | | workspaceId | [string](#string) | | | @@ -13975,7 +13895,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response.Error @@ -13983,7 +13903,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Create.Response.Error.Code](#anytype-Rpc-Workspace-Create-Response-Error-Code) | | | +| code | [Rpc.Workspace.Create.Response.Error.Code](#anytype.Rpc.Workspace.Create.Response.Error.Code) | | | | description | [string](#string) | | | @@ -13991,7 +13911,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export @@ -14001,7 +13921,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Request @@ -14017,7 +13937,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Response @@ -14025,16 +13945,16 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Export.Response.Error](#anytype-Rpc-Workspace-Export-Response-Error) | | | +| error | [Rpc.Workspace.Export.Response.Error](#anytype.Rpc.Workspace.Export.Response.Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| event | [ResponseEvent](#anytype.ResponseEvent) | | | - + ### Rpc.Workspace.Export.Response.Error @@ -14042,7 +13962,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Export.Response.Error.Code](#anytype-Rpc-Workspace-Export-Response-Error-Code) | | | +| code | [Rpc.Workspace.Export.Response.Error.Code](#anytype.Rpc.Workspace.Export.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14050,7 +13970,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll @@ -14060,7 +13980,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Request @@ -14070,7 +13990,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response @@ -14078,7 +13998,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.GetAll.Response.Error](#anytype-Rpc-Workspace-GetAll-Response-Error) | | | +| error | [Rpc.Workspace.GetAll.Response.Error](#anytype.Rpc.Workspace.GetAll.Response.Error) | | | | workspaceIds | [string](#string) | repeated | | @@ -14086,7 +14006,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response.Error @@ -14094,7 +14014,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.GetAll.Response.Error.Code](#anytype-Rpc-Workspace-GetAll-Response-Error-Code) | | | +| code | [Rpc.Workspace.GetAll.Response.Error.Code](#anytype.Rpc.Workspace.GetAll.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14102,7 +14022,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent @@ -14112,7 +14032,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Request @@ -14122,7 +14042,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response @@ -14130,7 +14050,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.GetCurrent.Response.Error](#anytype-Rpc-Workspace-GetCurrent-Response-Error) | | | +| error | [Rpc.Workspace.GetCurrent.Response.Error](#anytype.Rpc.Workspace.GetCurrent.Response.Error) | | | | workspaceId | [string](#string) | | | @@ -14138,7 +14058,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response.Error @@ -14146,7 +14066,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype-Rpc-Workspace-GetCurrent-Response-Error-Code) | | | +| code | [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype.Rpc.Workspace.GetCurrent.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14154,7 +14074,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object @@ -14164,7 +14084,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add @@ -14174,7 +14094,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Request @@ -14189,7 +14109,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Response @@ -14197,16 +14117,16 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Object.Add.Response.Error](#anytype-Rpc-Workspace-Object-Add-Response-Error) | | | +| error | [Rpc.Workspace.Object.Add.Response.Error](#anytype.Rpc.Workspace.Object.Add.Response.Error) | | | | objectId | [string](#string) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Rpc.Workspace.Object.Add.Response.Error @@ -14214,7 +14134,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype-Rpc-Workspace-Object-Add-Response-Error-Code) | | | +| code | [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype.Rpc.Workspace.Object.Add.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14222,7 +14142,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd @@ -14232,7 +14152,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Request @@ -14247,7 +14167,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response @@ -14255,7 +14175,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error) | | | +| error | [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error) | | | | objectIds | [string](#string) | repeated | | @@ -14263,7 +14183,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response.Error @@ -14271,7 +14191,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error-Code) | | | +| code | [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14279,7 +14199,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove @@ -14289,7 +14209,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Request @@ -14304,7 +14224,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response @@ -14312,7 +14232,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error) | | | +| error | [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error) | | | | ids | [string](#string) | repeated | | @@ -14320,7 +14240,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response.Error @@ -14328,7 +14248,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error-Code) | | | +| code | [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14336,7 +14256,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select @@ -14346,7 +14266,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Request @@ -14361,7 +14281,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Response @@ -14369,14 +14289,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Select.Response.Error](#anytype-Rpc-Workspace-Select-Response-Error) | | | +| error | [Rpc.Workspace.Select.Response.Error](#anytype.Rpc.Workspace.Select.Response.Error) | | | - + ### Rpc.Workspace.Select.Response.Error @@ -14384,7 +14304,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Select.Response.Error.Code](#anytype-Rpc-Workspace-Select-Response-Error-Code) | | | +| code | [Rpc.Workspace.Select.Response.Error.Code](#anytype.Rpc.Workspace.Select.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14392,7 +14312,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted @@ -14402,7 +14322,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Request @@ -14418,7 +14338,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Response @@ -14426,14 +14346,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error) | | | +| error | [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error) | | | - + ### Rpc.Workspace.SetIsHighlighted.Response.Error @@ -14441,7 +14361,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error-Code) | | | +| code | [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error.Code) | | | | description | [string](#string) | | | @@ -14449,7 +14369,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### StreamRequest @@ -14466,7 +14386,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.ConfigUpdate.Response.Error.Code @@ -14482,7 +14402,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.ConfigUpdate.Timezones @@ -14520,7 +14440,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Create.Response.Error.Code @@ -14543,7 +14463,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Delete.Response.Error.Code @@ -14558,7 +14478,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Move.Response.Error.Code @@ -14577,7 +14497,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Recover.Response.Error.Code @@ -14599,7 +14519,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.RecoverFromLegacyExport.Response.Error.Code @@ -14613,7 +14533,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Select.Response.Error.Code @@ -14634,7 +14554,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Stop.Response.Error.Code @@ -14650,7 +14570,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.GetVersion.Response.Error.Code @@ -14666,7 +14586,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.SetDeviceState.Request.DeviceState @@ -14678,7 +14598,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.SetDeviceState.Response.Error.Code @@ -14692,7 +14612,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.Shutdown.Response.Error.Code @@ -14706,7 +14626,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Copy.Response.Error.Code @@ -14719,7 +14639,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Create.Response.Error.Code @@ -14732,7 +14652,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.CreateWidget.Response.Error.Code @@ -14745,7 +14665,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Cut.Response.Error.Code @@ -14758,7 +14678,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Download.Response.Error.Code @@ -14771,7 +14691,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Export.Response.Error.Code @@ -14784,7 +14704,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListConvertToObjects.Response.Error.Code @@ -14797,7 +14717,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListDelete.Response.Error.Code @@ -14810,7 +14730,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListDuplicate.Response.Error.Code @@ -14823,7 +14743,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListMoveToExistingObject.Response.Error.Code @@ -14836,7 +14756,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListMoveToNewObject.Response.Error.Code @@ -14849,7 +14769,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetAlign.Response.Error.Code @@ -14862,7 +14782,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetBackgroundColor.Response.Error.Code @@ -14875,7 +14795,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetFields.Response.Error.Code @@ -14888,7 +14808,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetVerticalAlign.Response.Error.Code @@ -14901,7 +14821,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListTurnInto.Response.Error.Code @@ -14914,7 +14834,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Merge.Response.Error.Code @@ -14927,7 +14847,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Paste.Response.Error.Code @@ -14940,7 +14860,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Replace.Response.Error.Code @@ -14953,7 +14873,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.SetFields.Response.Error.Code @@ -14966,7 +14886,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Split.Request.Mode @@ -14980,7 +14900,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Split.Response.Error.Code @@ -14993,7 +14913,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Upload.Response.Error.Code @@ -15006,7 +14926,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code @@ -15019,7 +14939,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockBookmark.Fetch.Response.Error.Code @@ -15032,7 +14952,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.CreateBookmark.Response.Error.Code @@ -15045,7 +14965,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code @@ -15058,7 +14978,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Add.Response.Error.Code @@ -15071,7 +14991,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Remove.Response.Error.Code @@ -15084,7 +15004,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Replace.Response.Error.Code @@ -15097,7 +15017,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Sort.Response.Error.Code @@ -15110,7 +15030,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code @@ -15123,7 +15043,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code @@ -15136,7 +15056,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code @@ -15149,7 +15069,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.Add.Response.Error.Code @@ -15162,7 +15082,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.Delete.Response.Error.Code @@ -15175,7 +15095,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code @@ -15189,7 +15109,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.SetSource.Response.Error.Code @@ -15202,7 +15122,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Add.Response.Error.Code @@ -15215,7 +15135,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Remove.Response.Error.Code @@ -15228,7 +15148,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Replace.Response.Error.Code @@ -15241,7 +15161,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Sort.Response.Error.Code @@ -15254,7 +15174,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Create.Response.Error.Code @@ -15267,7 +15187,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Delete.Response.Error.Code @@ -15280,7 +15200,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.SetActive.Response.Error.Code @@ -15293,7 +15213,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.SetPosition.Response.Error.Code @@ -15306,7 +15226,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Update.Response.Error.Code @@ -15319,7 +15239,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code @@ -15332,7 +15252,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code @@ -15345,7 +15265,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code @@ -15358,7 +15278,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code @@ -15371,7 +15291,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDiv.ListSetStyle.Response.Error.Code @@ -15384,7 +15304,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.CreateAndUpload.Response.Error.Code @@ -15397,7 +15317,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.ListSetStyle.Response.Error.Code @@ -15410,7 +15330,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.SetName.Response.Error.Code @@ -15423,7 +15343,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockImage.SetName.Response.Error.Code @@ -15436,7 +15356,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockImage.SetWidth.Response.Error.Code @@ -15449,7 +15369,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLatex.SetText.Response.Error.Code @@ -15462,7 +15382,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLink.CreateWithObject.Response.Error.Code @@ -15475,7 +15395,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLink.ListSetAppearance.Response.Error.Code @@ -15488,7 +15408,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockRelation.Add.Response.Error.Code @@ -15501,7 +15421,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockRelation.SetKey.Response.Error.Code @@ -15514,7 +15434,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnCreate.Response.Error.Code @@ -15527,7 +15447,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnDelete.Response.Error.Code @@ -15540,7 +15460,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnDuplicate.Response.Error.Code @@ -15553,7 +15473,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnListFill.Response.Error.Code @@ -15566,7 +15486,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnMove.Response.Error.Code @@ -15579,7 +15499,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Create.Response.Error.Code @@ -15592,7 +15512,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Expand.Response.Error.Code @@ -15605,7 +15525,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowCreate.Response.Error.Code @@ -15618,7 +15538,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowDelete.Response.Error.Code @@ -15631,7 +15551,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowDuplicate.Response.Error.Code @@ -15644,7 +15564,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowListClean.Response.Error.Code @@ -15657,7 +15577,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowListFill.Response.Error.Code @@ -15670,7 +15590,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowSetHeader.Response.Error.Code @@ -15683,7 +15603,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Sort.Response.Error.Code @@ -15696,7 +15616,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListClearContent.Response.Error.Code @@ -15709,7 +15629,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListClearStyle.Response.Error.Code @@ -15722,7 +15642,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetColor.Response.Error.Code @@ -15735,7 +15655,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetMark.Response.Error.Code @@ -15748,7 +15668,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetStyle.Response.Error.Code @@ -15761,7 +15681,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetChecked.Response.Error.Code @@ -15774,7 +15694,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetColor.Response.Error.Code @@ -15787,7 +15707,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetIcon.Response.Error.Code @@ -15800,7 +15720,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetMarks.Get.Response.Error.Code @@ -15813,7 +15733,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetStyle.Response.Error.Code @@ -15826,7 +15746,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetText.Response.Error.Code @@ -15839,7 +15759,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockVideo.SetName.Response.Error.Code @@ -15852,7 +15772,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockVideo.SetWidth.Response.Error.Code @@ -15865,7 +15785,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.ExportLocalstore.Response.Error.Code @@ -15878,7 +15798,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.Ping.Response.Error.Code @@ -15891,7 +15811,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.SpaceSummary.Response.Error.Code @@ -15904,7 +15824,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.Tree.Response.Error.Code @@ -15917,7 +15837,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.TreeHeads.Response.Error.Code @@ -15930,7 +15850,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Download.Response.Error.Code @@ -15944,7 +15864,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Drop.Response.Error.Code @@ -15957,7 +15877,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.ListOffload.Response.Error.Code @@ -15971,7 +15891,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Offload.Response.Error.Code @@ -15986,20 +15906,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - - -### Rpc.File.SpaceUsage.Response.Error.Code - - -| Name | Number | Description | -| ---- | ------ | ----------- | -| NULL | 0 | | -| UNKNOWN_ERROR | 1 | | -| BAD_INPUT | 2 | ... | - - - - + ### Rpc.File.Upload.Response.Error.Code @@ -16012,7 +15919,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.GenericErrorResponse.Error.Code @@ -16025,7 +15932,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.GetVersions.Response.Error.Code @@ -16038,7 +15945,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.SetVersion.Response.Error.Code @@ -16051,7 +15958,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.ShowVersion.Response.Error.Code @@ -16064,7 +15971,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.LinkPreview.Response.Error.Code @@ -16077,7 +15984,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Log.Send.Request.Level @@ -16093,7 +16000,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Log.Send.Response.Error.Code @@ -16108,7 +16015,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Metrics.SetParameters.Response.Error.Code @@ -16121,7 +16028,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.Context @@ -16134,7 +16041,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code @@ -16147,7 +16054,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.ListObjects.Response.Error.Code @@ -16160,7 +16067,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ApplyTemplate.Response.Error.Code @@ -16173,7 +16080,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.BookmarkFetch.Response.Error.Code @@ -16186,7 +16093,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Close.Response.Error.Code @@ -16199,7 +16106,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Create.Response.Error.Code @@ -16212,7 +16119,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateBookmark.Response.Error.Code @@ -16225,7 +16132,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateObjectType.Response.Error.Code @@ -16239,7 +16146,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateRelation.Response.Error.Code @@ -16252,7 +16159,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateRelationOption.Response.Error.Code @@ -16265,7 +16172,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateSet.Response.Error.Code @@ -16279,7 +16186,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Duplicate.Response.Error.Code @@ -16292,7 +16199,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Graph.Edge.Type @@ -16304,7 +16211,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Graph.Response.Error.Code @@ -16317,7 +16224,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.GroupsSubscribe.Response.Error.Code @@ -16330,7 +16237,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code @@ -16347,7 +16254,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.CsvParams.Mode @@ -16359,7 +16266,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.Mode @@ -16371,7 +16278,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.Type @@ -16388,7 +16295,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Response.Error.Code @@ -16403,7 +16310,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportList.ImportResponse.Type @@ -16417,7 +16324,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportList.Response.Error.Code @@ -16431,7 +16338,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListDelete.Response.Error.Code @@ -16444,7 +16351,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListDuplicate.Response.Error.Code @@ -16457,7 +16364,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListExport.Format @@ -16473,7 +16380,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListExport.Response.Error.Code @@ -16486,7 +16393,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListSetIsArchived.Response.Error.Code @@ -16499,7 +16406,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListSetIsFavorite.Response.Error.Code @@ -16512,7 +16419,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Open.Response.Error.Code @@ -16527,7 +16434,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.OpenBreadcrumbs.Response.Error.Code @@ -16540,7 +16447,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Redo.Response.Error.Code @@ -16554,7 +16461,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Search.Response.Error.Code @@ -16567,7 +16474,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SearchSubscribe.Response.Error.Code @@ -16580,7 +16487,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SearchUnsubscribe.Response.Error.Code @@ -16593,7 +16500,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetBreadcrumbs.Response.Error.Code @@ -16606,7 +16513,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetDetails.Response.Error.Code @@ -16619,7 +16526,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetInternalFlags.Response.Error.Code @@ -16633,7 +16540,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetIsArchived.Response.Error.Code @@ -16646,7 +16553,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetIsFavorite.Response.Error.Code @@ -16659,7 +16566,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetLayout.Response.Error.Code @@ -16672,7 +16579,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetObjectType.Response.Error.Code @@ -16686,7 +16593,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetSource.Response.Error.Code @@ -16699,7 +16606,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ShareByLink.Response.Error.Code @@ -16712,7 +16619,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Show.Response.Error.Code @@ -16727,7 +16634,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SubscribeIds.Response.Error.Code @@ -16740,7 +16647,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToBookmark.Response.Error.Code @@ -16753,7 +16660,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToCollection.Response.Error.Code @@ -16766,7 +16673,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToSet.Response.Error.Code @@ -16779,7 +16686,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Undo.Response.Error.Code @@ -16793,7 +16700,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.WorkspaceSetDashboard.Response.Error.Code @@ -16806,7 +16713,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Add.Response.Error.Code @@ -16819,7 +16726,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Remove.Response.Error.Code @@ -16832,7 +16739,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Sort.Response.Error.Code @@ -16845,7 +16752,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.Add.Response.Error.Code @@ -16858,7 +16765,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.AddFeatured.Response.Error.Code @@ -16871,7 +16778,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.Delete.Response.Error.Code @@ -16884,7 +16791,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.ListAvailable.Response.Error.Code @@ -16897,7 +16804,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code @@ -16910,7 +16817,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.Add.Response.Error.Code @@ -16925,7 +16832,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.List.Response.Error.Code @@ -16939,7 +16846,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.Remove.Response.Error.Code @@ -16954,7 +16861,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Process.Cancel.Response.Error.Code @@ -16967,7 +16874,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Relation.ListRemoveOption.Response.Error.Code @@ -16981,7 +16888,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Relation.Options.Response.Error.Code @@ -16994,7 +16901,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.Clone.Response.Error.Code @@ -17007,7 +16914,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.CreateFromObject.Response.Error.Code @@ -17020,7 +16927,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.CreateFromObjectType.Response.Error.Code @@ -17033,7 +16940,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.ExportAll.Response.Error.Code @@ -17046,7 +16953,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Unsplash.Download.Response.Error.Code @@ -17060,7 +16967,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Unsplash.Search.Response.Error.Code @@ -17074,7 +16981,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.UserData.Dump.Response.Error.Code @@ -17087,7 +16994,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.CloseSession.Response.Error.Code @@ -17100,7 +17007,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Convert.Response.Error.Code @@ -17113,7 +17020,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Create.Response.Error.Code @@ -17127,7 +17034,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.CreateSession.Response.Error.Code @@ -17140,7 +17047,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Recover.Response.Error.Code @@ -17154,7 +17061,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response.Error.Code @@ -17167,7 +17074,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Response.Error.Code @@ -17180,7 +17087,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response.Error.Code @@ -17193,7 +17100,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response.Error.Code @@ -17206,7 +17113,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Response.Error.Code @@ -17219,7 +17126,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response.Error.Code @@ -17232,7 +17139,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response.Error.Code @@ -17245,7 +17152,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Response.Error.Code @@ -17258,7 +17165,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Response.Error.Code @@ -17273,7 +17180,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### File-level Extensions | Extension | Type | Base | Number | Description | @@ -17286,14 +17193,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ## pb/protos/events.proto - + ### Event Event – type of message, that could be sent from a middleware to the corresponding front-end. @@ -17301,9 +17208,9 @@ Event – type of message, that could be sent from a middleware to the correspon | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| messages | [Event.Message](#anytype-Event-Message) | repeated | | +| messages | [Event.Message](#anytype.Event.Message) | repeated | | | contextId | [string](#string) | | | -| initiator | [model.Account](#anytype-model-Account) | | | +| initiator | [model.Account](#anytype.model.Account) | | | | traceId | [string](#string) | | | @@ -17311,7 +17218,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account @@ -17321,7 +17228,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account.Config @@ -17331,7 +17238,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account.Config.Update @@ -17339,15 +17246,15 @@ Event – type of message, that could be sent from a middleware to the correspon | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| config | [model.Account.Config](#anytype-model-Account-Config) | | | -| status | [model.Account.Status](#anytype-model-Account-Status) | | | +| config | [model.Account.Config](#anytype.model.Account.Config) | | | +| status | [model.Account.Status](#anytype.model.Account.Status) | | | - + ### Event.Account.Details @@ -17356,14 +17263,14 @@ Event – type of message, that could be sent from a middleware to the correspon | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | profileId | [string](#string) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Event.Account.Show Message, that will be sent to the front on each account found after an AccountRecoverRequest @@ -17372,14 +17279,14 @@ Message, that will be sent to the front on each account found after an AccountRe | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | index | [int32](#int32) | | Number of an account in an all found accounts list | -| account | [model.Account](#anytype-model-Account) | | An Account, that has been found for the mnemonic | +| account | [model.Account](#anytype.model.Account) | | An Account, that has been found for the mnemonic | - + ### Event.Account.Update @@ -17387,15 +17294,15 @@ Message, that will be sent to the front on each account found after an AccountRe | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| config | [model.Account.Config](#anytype-model-Account-Config) | | | -| status | [model.Account.Status](#anytype-model-Account-Status) | | | +| config | [model.Account.Config](#anytype.model.Account.Config) | | | +| status | [model.Account.Status](#anytype.model.Account.Status) | | | - + ### Event.Block @@ -17405,7 +17312,7 @@ Message, that will be sent to the front on each account found after an AccountRe - + ### Event.Block.Add Event to show internal blocks on a client. @@ -17422,14 +17329,14 @@ B. Partial block load | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| blocks | [model.Block](#anytype-model-Block) | repeated | id -> block | +| blocks | [model.Block](#anytype.model.Block) | repeated | id -> block | - + ### Event.Block.Dataview @@ -17439,7 +17346,7 @@ B. Partial block load - + ### Event.Block.Dataview.GroupOrderUpdate @@ -17448,14 +17355,14 @@ B. Partial block load | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | -| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) | | | +| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) | | | - + ### Event.Block.Dataview.IsCollectionSet @@ -17471,7 +17378,7 @@ B. Partial block load - + ### Event.Block.Dataview.ObjectOrderUpdate @@ -17482,14 +17389,14 @@ B. Partial block load | id | [string](#string) | | dataview block's id | | viewId | [string](#string) | | | | groupId | [string](#string) | | | -| sliceChanges | [Event.Block.Dataview.SliceChange](#anytype-Event-Block-Dataview-SliceChange) | repeated | | +| sliceChanges | [Event.Block.Dataview.SliceChange](#anytype.Event.Block.Dataview.SliceChange) | repeated | | - + ### Event.Block.Dataview.OldRelationDelete @@ -17505,7 +17412,7 @@ B. Partial block load - + ### Event.Block.Dataview.OldRelationSet sent when the dataview relation has been changed or added @@ -17515,14 +17422,14 @@ sent when the dataview relation has been changed or added | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | | relationKey | [string](#string) | | relation key to update | -| relation | [model.Relation](#anytype-model-Relation) | | | +| relation | [model.Relation](#anytype.model.Relation) | | | - + ### Event.Block.Dataview.RelationDelete @@ -17538,7 +17445,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.RelationSet sent when the dataview relation has been changed or added @@ -17547,14 +17454,14 @@ sent when the dataview relation has been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | -| relationLinks | [model.RelationLink](#anytype-model-RelationLink) | repeated | relation id to update | +| relationLinks | [model.RelationLink](#anytype.model.RelationLink) | repeated | relation id to update | - + ### Event.Block.Dataview.SliceChange @@ -17562,7 +17469,7 @@ sent when the dataview relation has been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| op | [Event.Block.Dataview.SliceOperation](#anytype-Event-Block-Dataview-SliceOperation) | | | +| op | [Event.Block.Dataview.SliceOperation](#anytype.Event.Block.Dataview.SliceOperation) | | | | ids | [string](#string) | repeated | | | afterId | [string](#string) | | | @@ -17571,7 +17478,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.SourceSet @@ -17587,7 +17494,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.TargetObjectIdSet @@ -17603,7 +17510,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewDelete @@ -17619,7 +17526,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewOrder @@ -17635,7 +17542,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewSet sent when the view have been changed or added @@ -17645,14 +17552,14 @@ sent when the view have been changed or added | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | | viewId | [string](#string) | | view id, client should double check this to make sure client doesn't switch the active view in the middle | -| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | | | +| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | | | - + ### Event.Block.Dataview.ViewUpdate @@ -17662,17 +17569,17 @@ sent when the view have been changed or added | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | viewId | [string](#string) | | | -| filter | [Event.Block.Dataview.ViewUpdate.Filter](#anytype-Event-Block-Dataview-ViewUpdate-Filter) | repeated | | -| relation | [Event.Block.Dataview.ViewUpdate.Relation](#anytype-Event-Block-Dataview-ViewUpdate-Relation) | repeated | | -| sort | [Event.Block.Dataview.ViewUpdate.Sort](#anytype-Event-Block-Dataview-ViewUpdate-Sort) | repeated | | -| fields | [Event.Block.Dataview.ViewUpdate.Fields](#anytype-Event-Block-Dataview-ViewUpdate-Fields) | | | +| filter | [Event.Block.Dataview.ViewUpdate.Filter](#anytype.Event.Block.Dataview.ViewUpdate.Filter) | repeated | | +| relation | [Event.Block.Dataview.ViewUpdate.Relation](#anytype.Event.Block.Dataview.ViewUpdate.Relation) | repeated | | +| sort | [Event.Block.Dataview.ViewUpdate.Sort](#anytype.Event.Block.Dataview.ViewUpdate.Sort) | repeated | | +| fields | [Event.Block.Dataview.ViewUpdate.Fields](#anytype.Event.Block.Dataview.ViewUpdate.Fields) | | | - + ### Event.Block.Dataview.ViewUpdate.Fields @@ -17680,11 +17587,11 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| type | [model.Block.Content.Dataview.View.Type](#anytype-model-Block-Content-Dataview-View-Type) | | | +| type | [model.Block.Content.Dataview.View.Type](#anytype.model.Block.Content.Dataview.View.Type) | | | | name | [string](#string) | | | | coverRelationKey | [string](#string) | | Relation used for cover in gallery | | hideIcon | [bool](#bool) | | Hide icon near name | -| cardSize | [model.Block.Content.Dataview.View.Size](#anytype-model-Block-Content-Dataview-View-Size) | | Gallery card size | +| cardSize | [model.Block.Content.Dataview.View.Size](#anytype.model.Block.Content.Dataview.View.Size) | | Gallery card size | | coverFit | [bool](#bool) | | Image fits container | | groupRelationKey | [string](#string) | | Group view by this relationKey | | groupBackgroundColors | [bool](#bool) | | Enable backgrounds in groups | @@ -17695,7 +17602,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter @@ -17703,17 +17610,17 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| add | [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Add) | | | -| remove | [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Remove) | | | -| update | [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Update) | | | -| move | [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Move) | | | +| add | [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Add) | | | +| remove | [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Remove) | | | +| update | [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Update) | | | +| move | [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Move) | | | - + ### Event.Block.Dataview.ViewUpdate.Filter.Add @@ -17722,14 +17629,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | afterId | [string](#string) | | | -| items | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | +| items | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | - + ### Event.Block.Dataview.ViewUpdate.Filter.Move @@ -17745,7 +17652,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter.Remove @@ -17760,7 +17667,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter.Update @@ -17769,14 +17676,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| item | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | | | +| item | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | | | - + ### Event.Block.Dataview.ViewUpdate.Relation @@ -17784,17 +17691,17 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| add | [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Add) | | | -| remove | [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Remove) | | | -| update | [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Update) | | | -| move | [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Move) | | | +| add | [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Add) | | | +| remove | [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Remove) | | | +| update | [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Update) | | | +| move | [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Move) | | | - + ### Event.Block.Dataview.ViewUpdate.Relation.Add @@ -17803,14 +17710,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | afterId | [string](#string) | | | -| items | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | repeated | | +| items | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | repeated | | - + ### Event.Block.Dataview.ViewUpdate.Relation.Move @@ -17826,7 +17733,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Relation.Remove @@ -17841,7 +17748,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Relation.Update @@ -17850,14 +17757,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| item | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | | | +| item | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | | | - + ### Event.Block.Dataview.ViewUpdate.Sort @@ -17865,17 +17772,17 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| add | [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Add) | | | -| remove | [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Remove) | | | -| update | [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Update) | | | -| move | [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Move) | | | +| add | [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Add) | | | +| remove | [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Remove) | | | +| update | [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Update) | | | +| move | [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Move) | | | - + ### Event.Block.Dataview.ViewUpdate.Sort.Add @@ -17884,14 +17791,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | afterId | [string](#string) | | | -| items | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | | +| items | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | | - + ### Event.Block.Dataview.ViewUpdate.Sort.Move @@ -17907,7 +17814,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Sort.Remove @@ -17922,7 +17829,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Sort.Update @@ -17931,14 +17838,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| item | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | | | +| item | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | | | - + ### Event.Block.Delete @@ -17953,7 +17860,7 @@ sent when the view have been changed or added - + ### Event.Block.FilesUpload Middleware to front end event message, that will be sent on one of this scenarios: @@ -17972,7 +17879,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill @@ -17982,7 +17889,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Align @@ -17991,14 +17898,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| align | [model.Block.Align](#anytype-model-Block-Align) | | | +| align | [model.Block.Align](#anytype.model.Block.Align) | | | - + ### Event.Block.Fill.BackgroundColor @@ -18014,7 +17921,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark @@ -18023,20 +17930,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| url | [Event.Block.Fill.Bookmark.Url](#anytype-Event-Block-Fill-Bookmark-Url) | | | -| title | [Event.Block.Fill.Bookmark.Title](#anytype-Event-Block-Fill-Bookmark-Title) | | | -| description | [Event.Block.Fill.Bookmark.Description](#anytype-Event-Block-Fill-Bookmark-Description) | | | -| imageHash | [Event.Block.Fill.Bookmark.ImageHash](#anytype-Event-Block-Fill-Bookmark-ImageHash) | | | -| faviconHash | [Event.Block.Fill.Bookmark.FaviconHash](#anytype-Event-Block-Fill-Bookmark-FaviconHash) | | | -| type | [Event.Block.Fill.Bookmark.Type](#anytype-Event-Block-Fill-Bookmark-Type) | | | -| targetObjectId | [Event.Block.Fill.Bookmark.TargetObjectId](#anytype-Event-Block-Fill-Bookmark-TargetObjectId) | | | +| url | [Event.Block.Fill.Bookmark.Url](#anytype.Event.Block.Fill.Bookmark.Url) | | | +| title | [Event.Block.Fill.Bookmark.Title](#anytype.Event.Block.Fill.Bookmark.Title) | | | +| description | [Event.Block.Fill.Bookmark.Description](#anytype.Event.Block.Fill.Bookmark.Description) | | | +| imageHash | [Event.Block.Fill.Bookmark.ImageHash](#anytype.Event.Block.Fill.Bookmark.ImageHash) | | | +| faviconHash | [Event.Block.Fill.Bookmark.FaviconHash](#anytype.Event.Block.Fill.Bookmark.FaviconHash) | | | +| type | [Event.Block.Fill.Bookmark.Type](#anytype.Event.Block.Fill.Bookmark.Type) | | | +| targetObjectId | [Event.Block.Fill.Bookmark.TargetObjectId](#anytype.Event.Block.Fill.Bookmark.TargetObjectId) | | | - + ### Event.Block.Fill.Bookmark.Description @@ -18051,7 +17958,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.FaviconHash @@ -18066,7 +17973,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.ImageHash @@ -18081,7 +17988,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.TargetObjectId @@ -18096,7 +18003,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.Title @@ -18111,7 +18018,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.Type @@ -18119,14 +18026,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | +| value | [model.LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | - + ### Event.Block.Fill.Bookmark.Url @@ -18141,7 +18048,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.ChildrenIds @@ -18157,7 +18064,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.DatabaseRecords @@ -18166,14 +18073,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | - + ### Event.Block.Fill.Details @@ -18182,14 +18089,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Event.Block.Fill.Div @@ -18198,14 +18105,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| style | [Event.Block.Fill.Div.Style](#anytype-Event-Block-Fill-Div-Style) | | | +| style | [Event.Block.Fill.Div.Style](#anytype.Event.Block.Fill.Div.Style) | | | - + ### Event.Block.Fill.Div.Style @@ -18213,14 +18120,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | +| value | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | - + ### Event.Block.Fill.Fields @@ -18229,14 +18136,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Event.Block.Fill.File @@ -18245,20 +18152,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Event.Block.Fill.File.Type](#anytype-Event-Block-Fill-File-Type) | | | -| state | [Event.Block.Fill.File.State](#anytype-Event-Block-Fill-File-State) | | | -| mime | [Event.Block.Fill.File.Mime](#anytype-Event-Block-Fill-File-Mime) | | | -| hash | [Event.Block.Fill.File.Hash](#anytype-Event-Block-Fill-File-Hash) | | | -| name | [Event.Block.Fill.File.Name](#anytype-Event-Block-Fill-File-Name) | | | -| size | [Event.Block.Fill.File.Size](#anytype-Event-Block-Fill-File-Size) | | | -| style | [Event.Block.Fill.File.Style](#anytype-Event-Block-Fill-File-Style) | | | +| type | [Event.Block.Fill.File.Type](#anytype.Event.Block.Fill.File.Type) | | | +| state | [Event.Block.Fill.File.State](#anytype.Event.Block.Fill.File.State) | | | +| mime | [Event.Block.Fill.File.Mime](#anytype.Event.Block.Fill.File.Mime) | | | +| hash | [Event.Block.Fill.File.Hash](#anytype.Event.Block.Fill.File.Hash) | | | +| name | [Event.Block.Fill.File.Name](#anytype.Event.Block.Fill.File.Name) | | | +| size | [Event.Block.Fill.File.Size](#anytype.Event.Block.Fill.File.Size) | | | +| style | [Event.Block.Fill.File.Style](#anytype.Event.Block.Fill.File.Style) | | | - + ### Event.Block.Fill.File.Hash @@ -18273,7 +18180,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Mime @@ -18288,7 +18195,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Name @@ -18303,7 +18210,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Size @@ -18318,7 +18225,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.State @@ -18326,14 +18233,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.State](#anytype-model-Block-Content-File-State) | | | +| value | [model.Block.Content.File.State](#anytype.model.Block.Content.File.State) | | | - + ### Event.Block.Fill.File.Style @@ -18341,14 +18248,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | +| value | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | - + ### Event.Block.Fill.File.Type @@ -18356,14 +18263,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | +| value | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | - + ### Event.Block.Fill.File.Width @@ -18378,7 +18285,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Link @@ -18387,16 +18294,16 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| targetBlockId | [Event.Block.Fill.Link.TargetBlockId](#anytype-Event-Block-Fill-Link-TargetBlockId) | | | -| style | [Event.Block.Fill.Link.Style](#anytype-Event-Block-Fill-Link-Style) | | | -| fields | [Event.Block.Fill.Link.Fields](#anytype-Event-Block-Fill-Link-Fields) | | | +| targetBlockId | [Event.Block.Fill.Link.TargetBlockId](#anytype.Event.Block.Fill.Link.TargetBlockId) | | | +| style | [Event.Block.Fill.Link.Style](#anytype.Event.Block.Fill.Link.Style) | | | +| fields | [Event.Block.Fill.Link.Fields](#anytype.Event.Block.Fill.Link.Fields) | | | - + ### Event.Block.Fill.Link.Fields @@ -18404,14 +18311,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| value | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Event.Block.Fill.Link.Style @@ -18419,14 +18326,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) | | | +| value | [model.Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) | | | - + ### Event.Block.Fill.Link.TargetBlockId @@ -18441,7 +18348,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Restrictions @@ -18450,14 +18357,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| restrictions | [model.Block.Restrictions](#anytype-model-Block-Restrictions) | | | +| restrictions | [model.Block.Restrictions](#anytype.model.Block.Restrictions) | | | - + ### Event.Block.Fill.Text @@ -18466,18 +18373,18 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| text | [Event.Block.Fill.Text.Text](#anytype-Event-Block-Fill-Text-Text) | | | -| style | [Event.Block.Fill.Text.Style](#anytype-Event-Block-Fill-Text-Style) | | | -| marks | [Event.Block.Fill.Text.Marks](#anytype-Event-Block-Fill-Text-Marks) | | | -| checked | [Event.Block.Fill.Text.Checked](#anytype-Event-Block-Fill-Text-Checked) | | | -| color | [Event.Block.Fill.Text.Color](#anytype-Event-Block-Fill-Text-Color) | | | +| text | [Event.Block.Fill.Text.Text](#anytype.Event.Block.Fill.Text.Text) | | | +| style | [Event.Block.Fill.Text.Style](#anytype.Event.Block.Fill.Text.Style) | | | +| marks | [Event.Block.Fill.Text.Marks](#anytype.Event.Block.Fill.Text.Marks) | | | +| checked | [Event.Block.Fill.Text.Checked](#anytype.Event.Block.Fill.Text.Checked) | | | +| color | [Event.Block.Fill.Text.Color](#anytype.Event.Block.Fill.Text.Color) | | | - + ### Event.Block.Fill.Text.Checked @@ -18492,7 +18399,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Text.Color @@ -18507,7 +18414,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Text.Marks @@ -18515,14 +18422,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | | +| value | [model.Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | | - + ### Event.Block.Fill.Text.Style @@ -18530,14 +18437,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| value | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | - + ### Event.Block.Fill.Text.Text @@ -18552,7 +18459,7 @@ Precondition: user A opened a block - + ### Event.Block.MarksInfo @@ -18560,14 +18467,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| marksInRange | [model.Block.Content.Text.Mark.Type](#anytype-model-Block-Content-Text-Mark-Type) | repeated | | +| marksInRange | [model.Block.Content.Text.Mark.Type](#anytype.model.Block.Content.Text.Mark.Type) | repeated | | - + ### Event.Block.Set @@ -18577,7 +18484,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Align @@ -18586,14 +18493,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| align | [model.Block.Align](#anytype-model-Block-Align) | | | +| align | [model.Block.Align](#anytype.model.Block.Align) | | | - + ### Event.Block.Set.BackgroundColor @@ -18609,7 +18516,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark @@ -18618,21 +18525,21 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| url | [Event.Block.Set.Bookmark.Url](#anytype-Event-Block-Set-Bookmark-Url) | | | -| title | [Event.Block.Set.Bookmark.Title](#anytype-Event-Block-Set-Bookmark-Title) | | | -| description | [Event.Block.Set.Bookmark.Description](#anytype-Event-Block-Set-Bookmark-Description) | | | -| imageHash | [Event.Block.Set.Bookmark.ImageHash](#anytype-Event-Block-Set-Bookmark-ImageHash) | | | -| faviconHash | [Event.Block.Set.Bookmark.FaviconHash](#anytype-Event-Block-Set-Bookmark-FaviconHash) | | | -| type | [Event.Block.Set.Bookmark.Type](#anytype-Event-Block-Set-Bookmark-Type) | | | -| targetObjectId | [Event.Block.Set.Bookmark.TargetObjectId](#anytype-Event-Block-Set-Bookmark-TargetObjectId) | | | -| state | [Event.Block.Set.Bookmark.State](#anytype-Event-Block-Set-Bookmark-State) | | | +| url | [Event.Block.Set.Bookmark.Url](#anytype.Event.Block.Set.Bookmark.Url) | | | +| title | [Event.Block.Set.Bookmark.Title](#anytype.Event.Block.Set.Bookmark.Title) | | | +| description | [Event.Block.Set.Bookmark.Description](#anytype.Event.Block.Set.Bookmark.Description) | | | +| imageHash | [Event.Block.Set.Bookmark.ImageHash](#anytype.Event.Block.Set.Bookmark.ImageHash) | | | +| faviconHash | [Event.Block.Set.Bookmark.FaviconHash](#anytype.Event.Block.Set.Bookmark.FaviconHash) | | | +| type | [Event.Block.Set.Bookmark.Type](#anytype.Event.Block.Set.Bookmark.Type) | | | +| targetObjectId | [Event.Block.Set.Bookmark.TargetObjectId](#anytype.Event.Block.Set.Bookmark.TargetObjectId) | | | +| state | [Event.Block.Set.Bookmark.State](#anytype.Event.Block.Set.Bookmark.State) | | | - + ### Event.Block.Set.Bookmark.Description @@ -18647,7 +18554,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.FaviconHash @@ -18662,7 +18569,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.ImageHash @@ -18677,7 +18584,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.State @@ -18685,14 +18592,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Bookmark.State](#anytype-model-Block-Content-Bookmark-State) | | | +| value | [model.Block.Content.Bookmark.State](#anytype.model.Block.Content.Bookmark.State) | | | - + ### Event.Block.Set.Bookmark.TargetObjectId @@ -18707,7 +18614,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.Title @@ -18722,7 +18629,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.Type @@ -18730,14 +18637,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | +| value | [model.LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | - + ### Event.Block.Set.Bookmark.Url @@ -18752,7 +18659,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.ChildrenIds @@ -18768,7 +18675,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Div @@ -18777,14 +18684,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| style | [Event.Block.Set.Div.Style](#anytype-Event-Block-Set-Div-Style) | | | +| style | [Event.Block.Set.Div.Style](#anytype.Event.Block.Set.Div.Style) | | | - + ### Event.Block.Set.Div.Style @@ -18792,14 +18699,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | +| value | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | - + ### Event.Block.Set.Fields @@ -18808,14 +18715,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Event.Block.Set.File @@ -18824,20 +18731,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Event.Block.Set.File.Type](#anytype-Event-Block-Set-File-Type) | | | -| state | [Event.Block.Set.File.State](#anytype-Event-Block-Set-File-State) | | | -| mime | [Event.Block.Set.File.Mime](#anytype-Event-Block-Set-File-Mime) | | | -| hash | [Event.Block.Set.File.Hash](#anytype-Event-Block-Set-File-Hash) | | | -| name | [Event.Block.Set.File.Name](#anytype-Event-Block-Set-File-Name) | | | -| size | [Event.Block.Set.File.Size](#anytype-Event-Block-Set-File-Size) | | | -| style | [Event.Block.Set.File.Style](#anytype-Event-Block-Set-File-Style) | | | +| type | [Event.Block.Set.File.Type](#anytype.Event.Block.Set.File.Type) | | | +| state | [Event.Block.Set.File.State](#anytype.Event.Block.Set.File.State) | | | +| mime | [Event.Block.Set.File.Mime](#anytype.Event.Block.Set.File.Mime) | | | +| hash | [Event.Block.Set.File.Hash](#anytype.Event.Block.Set.File.Hash) | | | +| name | [Event.Block.Set.File.Name](#anytype.Event.Block.Set.File.Name) | | | +| size | [Event.Block.Set.File.Size](#anytype.Event.Block.Set.File.Size) | | | +| style | [Event.Block.Set.File.Style](#anytype.Event.Block.Set.File.Style) | | | - + ### Event.Block.Set.File.Hash @@ -18852,7 +18759,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Mime @@ -18867,7 +18774,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Name @@ -18882,7 +18789,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Size @@ -18897,7 +18804,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.State @@ -18905,14 +18812,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.State](#anytype-model-Block-Content-File-State) | | | +| value | [model.Block.Content.File.State](#anytype.model.Block.Content.File.State) | | | - + ### Event.Block.Set.File.Style @@ -18920,14 +18827,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | +| value | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | - + ### Event.Block.Set.File.Type @@ -18935,14 +18842,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | +| value | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | - + ### Event.Block.Set.File.Width @@ -18957,7 +18864,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Latex @@ -18966,14 +18873,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| text | [Event.Block.Set.Latex.Text](#anytype-Event-Block-Set-Latex-Text) | | | +| text | [Event.Block.Set.Latex.Text](#anytype.Event.Block.Set.Latex.Text) | | | - + ### Event.Block.Set.Latex.Text @@ -18988,7 +18895,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Link @@ -18997,20 +18904,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| targetBlockId | [Event.Block.Set.Link.TargetBlockId](#anytype-Event-Block-Set-Link-TargetBlockId) | | | -| style | [Event.Block.Set.Link.Style](#anytype-Event-Block-Set-Link-Style) | | | -| fields | [Event.Block.Set.Link.Fields](#anytype-Event-Block-Set-Link-Fields) | | | -| iconSize | [Event.Block.Set.Link.IconSize](#anytype-Event-Block-Set-Link-IconSize) | | | -| cardStyle | [Event.Block.Set.Link.CardStyle](#anytype-Event-Block-Set-Link-CardStyle) | | | -| description | [Event.Block.Set.Link.Description](#anytype-Event-Block-Set-Link-Description) | | | -| relations | [Event.Block.Set.Link.Relations](#anytype-Event-Block-Set-Link-Relations) | | | +| targetBlockId | [Event.Block.Set.Link.TargetBlockId](#anytype.Event.Block.Set.Link.TargetBlockId) | | | +| style | [Event.Block.Set.Link.Style](#anytype.Event.Block.Set.Link.Style) | | | +| fields | [Event.Block.Set.Link.Fields](#anytype.Event.Block.Set.Link.Fields) | | | +| iconSize | [Event.Block.Set.Link.IconSize](#anytype.Event.Block.Set.Link.IconSize) | | | +| cardStyle | [Event.Block.Set.Link.CardStyle](#anytype.Event.Block.Set.Link.CardStyle) | | | +| description | [Event.Block.Set.Link.Description](#anytype.Event.Block.Set.Link.Description) | | | +| relations | [Event.Block.Set.Link.Relations](#anytype.Event.Block.Set.Link.Relations) | | | - + ### Event.Block.Set.Link.CardStyle @@ -19018,14 +18925,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) | | | +| value | [model.Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) | | | - + ### Event.Block.Set.Link.Description @@ -19033,14 +18940,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) | | | +| value | [model.Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) | | | - + ### Event.Block.Set.Link.Fields @@ -19048,14 +18955,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| value | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Event.Block.Set.Link.IconSize @@ -19063,14 +18970,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) | | | +| value | [model.Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) | | | - + ### Event.Block.Set.Link.Relations @@ -19085,7 +18992,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Link.Style @@ -19093,14 +19000,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) | | | +| value | [model.Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) | | | - + ### Event.Block.Set.Link.TargetBlockId @@ -19115,7 +19022,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Relation @@ -19124,14 +19031,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| key | [Event.Block.Set.Relation.Key](#anytype-Event-Block-Set-Relation-Key) | | | +| key | [Event.Block.Set.Relation.Key](#anytype.Event.Block.Set.Relation.Key) | | | - + ### Event.Block.Set.Relation.Key @@ -19146,7 +19053,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Restrictions @@ -19155,14 +19062,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| restrictions | [model.Block.Restrictions](#anytype-model-Block-Restrictions) | | | +| restrictions | [model.Block.Restrictions](#anytype.model.Block.Restrictions) | | | - + ### Event.Block.Set.TableRow @@ -19171,14 +19078,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| isHeader | [Event.Block.Set.TableRow.IsHeader](#anytype-Event-Block-Set-TableRow-IsHeader) | | | +| isHeader | [Event.Block.Set.TableRow.IsHeader](#anytype.Event.Block.Set.TableRow.IsHeader) | | | - + ### Event.Block.Set.TableRow.IsHeader @@ -19193,7 +19100,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text @@ -19202,20 +19109,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| text | [Event.Block.Set.Text.Text](#anytype-Event-Block-Set-Text-Text) | | | -| style | [Event.Block.Set.Text.Style](#anytype-Event-Block-Set-Text-Style) | | | -| marks | [Event.Block.Set.Text.Marks](#anytype-Event-Block-Set-Text-Marks) | | | -| checked | [Event.Block.Set.Text.Checked](#anytype-Event-Block-Set-Text-Checked) | | | -| color | [Event.Block.Set.Text.Color](#anytype-Event-Block-Set-Text-Color) | | | -| iconEmoji | [Event.Block.Set.Text.IconEmoji](#anytype-Event-Block-Set-Text-IconEmoji) | | | -| iconImage | [Event.Block.Set.Text.IconImage](#anytype-Event-Block-Set-Text-IconImage) | | | +| text | [Event.Block.Set.Text.Text](#anytype.Event.Block.Set.Text.Text) | | | +| style | [Event.Block.Set.Text.Style](#anytype.Event.Block.Set.Text.Style) | | | +| marks | [Event.Block.Set.Text.Marks](#anytype.Event.Block.Set.Text.Marks) | | | +| checked | [Event.Block.Set.Text.Checked](#anytype.Event.Block.Set.Text.Checked) | | | +| color | [Event.Block.Set.Text.Color](#anytype.Event.Block.Set.Text.Color) | | | +| iconEmoji | [Event.Block.Set.Text.IconEmoji](#anytype.Event.Block.Set.Text.IconEmoji) | | | +| iconImage | [Event.Block.Set.Text.IconImage](#anytype.Event.Block.Set.Text.IconImage) | | | - + ### Event.Block.Set.Text.Checked @@ -19230,7 +19137,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.Color @@ -19245,7 +19152,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.IconEmoji @@ -19260,7 +19167,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.IconImage @@ -19275,7 +19182,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.Marks @@ -19283,14 +19190,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | | +| value | [model.Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | | - + ### Event.Block.Set.Text.Style @@ -19298,14 +19205,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| value | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | - + ### Event.Block.Set.Text.Text @@ -19320,7 +19227,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.VerticalAlign @@ -19329,14 +19236,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| verticalAlign | [model.Block.VerticalAlign](#anytype-model-Block-VerticalAlign) | | | +| verticalAlign | [model.Block.VerticalAlign](#anytype.model.Block.VerticalAlign) | | | - + ### Event.Block.Set.Widget @@ -19345,14 +19252,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| layout | [Event.Block.Set.Widget.Layout](#anytype-Event-Block-Set-Widget-Layout) | | | +| layout | [Event.Block.Set.Widget.Layout](#anytype.Event.Block.Set.Widget.Layout) | | | - + ### Event.Block.Set.Widget.Layout @@ -19360,14 +19267,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | +| value | [model.Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | - + ### Event.Message @@ -19375,70 +19282,70 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| accountShow | [Event.Account.Show](#anytype-Event-Account-Show) | | | -| accountDetails | [Event.Account.Details](#anytype-Event-Account-Details) | | | -| accountConfigUpdate | [Event.Account.Config.Update](#anytype-Event-Account-Config-Update) | | | -| accountUpdate | [Event.Account.Update](#anytype-Event-Account-Update) | | | -| objectDetailsSet | [Event.Object.Details.Set](#anytype-Event-Object-Details-Set) | | | -| objectDetailsAmend | [Event.Object.Details.Amend](#anytype-Event-Object-Details-Amend) | | | -| objectDetailsUnset | [Event.Object.Details.Unset](#anytype-Event-Object-Details-Unset) | | | -| objectRelationsAmend | [Event.Object.Relations.Amend](#anytype-Event-Object-Relations-Amend) | | | -| objectRelationsRemove | [Event.Object.Relations.Remove](#anytype-Event-Object-Relations-Remove) | | | -| objectRemove | [Event.Object.Remove](#anytype-Event-Object-Remove) | | | -| objectRestrictionsSet | [Event.Object.Restrictions.Set](#anytype-Event-Object-Restrictions-Set) | | | -| subscriptionAdd | [Event.Object.Subscription.Add](#anytype-Event-Object-Subscription-Add) | | | -| subscriptionRemove | [Event.Object.Subscription.Remove](#anytype-Event-Object-Subscription-Remove) | | | -| subscriptionPosition | [Event.Object.Subscription.Position](#anytype-Event-Object-Subscription-Position) | | | -| subscriptionCounters | [Event.Object.Subscription.Counters](#anytype-Event-Object-Subscription-Counters) | | | -| subscriptionGroups | [Event.Object.Subscription.Groups](#anytype-Event-Object-Subscription-Groups) | | | -| blockAdd | [Event.Block.Add](#anytype-Event-Block-Add) | | | -| blockDelete | [Event.Block.Delete](#anytype-Event-Block-Delete) | | | -| filesUpload | [Event.Block.FilesUpload](#anytype-Event-Block-FilesUpload) | | | -| marksInfo | [Event.Block.MarksInfo](#anytype-Event-Block-MarksInfo) | | | -| blockSetFields | [Event.Block.Set.Fields](#anytype-Event-Block-Set-Fields) | | | -| blockSetChildrenIds | [Event.Block.Set.ChildrenIds](#anytype-Event-Block-Set-ChildrenIds) | | | -| blockSetRestrictions | [Event.Block.Set.Restrictions](#anytype-Event-Block-Set-Restrictions) | | | -| blockSetBackgroundColor | [Event.Block.Set.BackgroundColor](#anytype-Event-Block-Set-BackgroundColor) | | | -| blockSetText | [Event.Block.Set.Text](#anytype-Event-Block-Set-Text) | | | -| blockSetFile | [Event.Block.Set.File](#anytype-Event-Block-Set-File) | | | -| blockSetLink | [Event.Block.Set.Link](#anytype-Event-Block-Set-Link) | | | -| blockSetBookmark | [Event.Block.Set.Bookmark](#anytype-Event-Block-Set-Bookmark) | | | -| blockSetAlign | [Event.Block.Set.Align](#anytype-Event-Block-Set-Align) | | | -| blockSetDiv | [Event.Block.Set.Div](#anytype-Event-Block-Set-Div) | | | -| blockSetRelation | [Event.Block.Set.Relation](#anytype-Event-Block-Set-Relation) | | | -| blockSetLatex | [Event.Block.Set.Latex](#anytype-Event-Block-Set-Latex) | | | -| blockSetVerticalAlign | [Event.Block.Set.VerticalAlign](#anytype-Event-Block-Set-VerticalAlign) | | | -| blockSetTableRow | [Event.Block.Set.TableRow](#anytype-Event-Block-Set-TableRow) | | | -| blockSetWidget | [Event.Block.Set.Widget](#anytype-Event-Block-Set-Widget) | | | -| blockDataviewViewSet | [Event.Block.Dataview.ViewSet](#anytype-Event-Block-Dataview-ViewSet) | | | -| blockDataviewViewDelete | [Event.Block.Dataview.ViewDelete](#anytype-Event-Block-Dataview-ViewDelete) | | | -| blockDataviewViewOrder | [Event.Block.Dataview.ViewOrder](#anytype-Event-Block-Dataview-ViewOrder) | | | -| blockDataviewSourceSet | [Event.Block.Dataview.SourceSet](#anytype-Event-Block-Dataview-SourceSet) | | | -| blockDataViewGroupOrderUpdate | [Event.Block.Dataview.GroupOrderUpdate](#anytype-Event-Block-Dataview-GroupOrderUpdate) | | | -| blockDataViewObjectOrderUpdate | [Event.Block.Dataview.ObjectOrderUpdate](#anytype-Event-Block-Dataview-ObjectOrderUpdate) | | | -| blockDataviewRelationDelete | [Event.Block.Dataview.RelationDelete](#anytype-Event-Block-Dataview-RelationDelete) | | | -| blockDataviewRelationSet | [Event.Block.Dataview.RelationSet](#anytype-Event-Block-Dataview-RelationSet) | | | -| blockDataviewViewUpdate | [Event.Block.Dataview.ViewUpdate](#anytype-Event-Block-Dataview-ViewUpdate) | | | -| blockDataviewTargetObjectIdSet | [Event.Block.Dataview.TargetObjectIdSet](#anytype-Event-Block-Dataview-TargetObjectIdSet) | | | -| blockDataviewIsCollectionSet | [Event.Block.Dataview.IsCollectionSet](#anytype-Event-Block-Dataview-IsCollectionSet) | | | -| blockDataviewOldRelationDelete | [Event.Block.Dataview.OldRelationDelete](#anytype-Event-Block-Dataview-OldRelationDelete) | | deprecated | -| blockDataviewOldRelationSet | [Event.Block.Dataview.OldRelationSet](#anytype-Event-Block-Dataview-OldRelationSet) | | deprecated | -| userBlockJoin | [Event.User.Block.Join](#anytype-Event-User-Block-Join) | | | -| userBlockLeft | [Event.User.Block.Left](#anytype-Event-User-Block-Left) | | | -| userBlockSelectRange | [Event.User.Block.SelectRange](#anytype-Event-User-Block-SelectRange) | | | -| userBlockTextRange | [Event.User.Block.TextRange](#anytype-Event-User-Block-TextRange) | | | -| ping | [Event.Ping](#anytype-Event-Ping) | | | -| processNew | [Event.Process.New](#anytype-Event-Process-New) | | | -| processUpdate | [Event.Process.Update](#anytype-Event-Process-Update) | | | -| processDone | [Event.Process.Done](#anytype-Event-Process-Done) | | | -| threadStatus | [Event.Status.Thread](#anytype-Event-Status-Thread) | | | +| accountShow | [Event.Account.Show](#anytype.Event.Account.Show) | | | +| accountDetails | [Event.Account.Details](#anytype.Event.Account.Details) | | | +| accountConfigUpdate | [Event.Account.Config.Update](#anytype.Event.Account.Config.Update) | | | +| accountUpdate | [Event.Account.Update](#anytype.Event.Account.Update) | | | +| objectDetailsSet | [Event.Object.Details.Set](#anytype.Event.Object.Details.Set) | | | +| objectDetailsAmend | [Event.Object.Details.Amend](#anytype.Event.Object.Details.Amend) | | | +| objectDetailsUnset | [Event.Object.Details.Unset](#anytype.Event.Object.Details.Unset) | | | +| objectRelationsAmend | [Event.Object.Relations.Amend](#anytype.Event.Object.Relations.Amend) | | | +| objectRelationsRemove | [Event.Object.Relations.Remove](#anytype.Event.Object.Relations.Remove) | | | +| objectRemove | [Event.Object.Remove](#anytype.Event.Object.Remove) | | | +| objectRestrictionsSet | [Event.Object.Restrictions.Set](#anytype.Event.Object.Restrictions.Set) | | | +| subscriptionAdd | [Event.Object.Subscription.Add](#anytype.Event.Object.Subscription.Add) | | | +| subscriptionRemove | [Event.Object.Subscription.Remove](#anytype.Event.Object.Subscription.Remove) | | | +| subscriptionPosition | [Event.Object.Subscription.Position](#anytype.Event.Object.Subscription.Position) | | | +| subscriptionCounters | [Event.Object.Subscription.Counters](#anytype.Event.Object.Subscription.Counters) | | | +| subscriptionGroups | [Event.Object.Subscription.Groups](#anytype.Event.Object.Subscription.Groups) | | | +| blockAdd | [Event.Block.Add](#anytype.Event.Block.Add) | | | +| blockDelete | [Event.Block.Delete](#anytype.Event.Block.Delete) | | | +| filesUpload | [Event.Block.FilesUpload](#anytype.Event.Block.FilesUpload) | | | +| marksInfo | [Event.Block.MarksInfo](#anytype.Event.Block.MarksInfo) | | | +| blockSetFields | [Event.Block.Set.Fields](#anytype.Event.Block.Set.Fields) | | | +| blockSetChildrenIds | [Event.Block.Set.ChildrenIds](#anytype.Event.Block.Set.ChildrenIds) | | | +| blockSetRestrictions | [Event.Block.Set.Restrictions](#anytype.Event.Block.Set.Restrictions) | | | +| blockSetBackgroundColor | [Event.Block.Set.BackgroundColor](#anytype.Event.Block.Set.BackgroundColor) | | | +| blockSetText | [Event.Block.Set.Text](#anytype.Event.Block.Set.Text) | | | +| blockSetFile | [Event.Block.Set.File](#anytype.Event.Block.Set.File) | | | +| blockSetLink | [Event.Block.Set.Link](#anytype.Event.Block.Set.Link) | | | +| blockSetBookmark | [Event.Block.Set.Bookmark](#anytype.Event.Block.Set.Bookmark) | | | +| blockSetAlign | [Event.Block.Set.Align](#anytype.Event.Block.Set.Align) | | | +| blockSetDiv | [Event.Block.Set.Div](#anytype.Event.Block.Set.Div) | | | +| blockSetRelation | [Event.Block.Set.Relation](#anytype.Event.Block.Set.Relation) | | | +| blockSetLatex | [Event.Block.Set.Latex](#anytype.Event.Block.Set.Latex) | | | +| blockSetVerticalAlign | [Event.Block.Set.VerticalAlign](#anytype.Event.Block.Set.VerticalAlign) | | | +| blockSetTableRow | [Event.Block.Set.TableRow](#anytype.Event.Block.Set.TableRow) | | | +| blockSetWidget | [Event.Block.Set.Widget](#anytype.Event.Block.Set.Widget) | | | +| blockDataviewViewSet | [Event.Block.Dataview.ViewSet](#anytype.Event.Block.Dataview.ViewSet) | | | +| blockDataviewViewDelete | [Event.Block.Dataview.ViewDelete](#anytype.Event.Block.Dataview.ViewDelete) | | | +| blockDataviewViewOrder | [Event.Block.Dataview.ViewOrder](#anytype.Event.Block.Dataview.ViewOrder) | | | +| blockDataviewSourceSet | [Event.Block.Dataview.SourceSet](#anytype.Event.Block.Dataview.SourceSet) | | | +| blockDataViewGroupOrderUpdate | [Event.Block.Dataview.GroupOrderUpdate](#anytype.Event.Block.Dataview.GroupOrderUpdate) | | | +| blockDataViewObjectOrderUpdate | [Event.Block.Dataview.ObjectOrderUpdate](#anytype.Event.Block.Dataview.ObjectOrderUpdate) | | | +| blockDataviewRelationDelete | [Event.Block.Dataview.RelationDelete](#anytype.Event.Block.Dataview.RelationDelete) | | | +| blockDataviewRelationSet | [Event.Block.Dataview.RelationSet](#anytype.Event.Block.Dataview.RelationSet) | | | +| blockDataviewViewUpdate | [Event.Block.Dataview.ViewUpdate](#anytype.Event.Block.Dataview.ViewUpdate) | | | +| blockDataviewTargetObjectIdSet | [Event.Block.Dataview.TargetObjectIdSet](#anytype.Event.Block.Dataview.TargetObjectIdSet) | | | +| blockDataviewIsCollectionSet | [Event.Block.Dataview.IsCollectionSet](#anytype.Event.Block.Dataview.IsCollectionSet) | | | +| blockDataviewOldRelationDelete | [Event.Block.Dataview.OldRelationDelete](#anytype.Event.Block.Dataview.OldRelationDelete) | | deprecated | +| blockDataviewOldRelationSet | [Event.Block.Dataview.OldRelationSet](#anytype.Event.Block.Dataview.OldRelationSet) | | deprecated | +| userBlockJoin | [Event.User.Block.Join](#anytype.Event.User.Block.Join) | | | +| userBlockLeft | [Event.User.Block.Left](#anytype.Event.User.Block.Left) | | | +| userBlockSelectRange | [Event.User.Block.SelectRange](#anytype.Event.User.Block.SelectRange) | | | +| userBlockTextRange | [Event.User.Block.TextRange](#anytype.Event.User.Block.TextRange) | | | +| ping | [Event.Ping](#anytype.Event.Ping) | | | +| processNew | [Event.Process.New](#anytype.Event.Process.New) | | | +| processUpdate | [Event.Process.Update](#anytype.Event.Process.Update) | | | +| processDone | [Event.Process.Done](#anytype.Event.Process.Done) | | | +| threadStatus | [Event.Status.Thread](#anytype.Event.Status.Thread) | | | - + ### Event.Object @@ -19448,7 +19355,7 @@ Precondition: user A opened a block - + ### Event.Object.Details @@ -19458,7 +19365,7 @@ Precondition: user A opened a block - + ### Event.Object.Details.Amend Amend (i.e. add a new key-value pair or update an existing key-value pair) existing state @@ -19467,7 +19374,7 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| details | [Event.Object.Details.Amend.KeyValue](#anytype-Event-Object-Details-Amend-KeyValue) | repeated | slice of changed key-values | +| details | [Event.Object.Details.Amend.KeyValue](#anytype.Event.Object.Details.Amend.KeyValue) | repeated | slice of changed key-values | | subIds | [string](#string) | repeated | | @@ -19475,7 +19382,7 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist - + ### Event.Object.Details.Amend.KeyValue @@ -19484,14 +19391,14 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| value | [google.protobuf.Value](#google-protobuf-Value) | | should not be null | +| value | [google.protobuf.Value](#google.protobuf.Value) | | should not be null | - + ### Event.Object.Details.Set Overwrite current state @@ -19500,7 +19407,7 @@ Overwrite current state | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | can not be a partial state. Should replace client details state | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | can not be a partial state. Should replace client details state | | subIds | [string](#string) | repeated | | @@ -19508,7 +19415,7 @@ Overwrite current state - + ### Event.Object.Details.Unset Unset existing detail keys @@ -19525,7 +19432,7 @@ Unset existing detail keys - + ### Event.Object.Relations @@ -19535,7 +19442,7 @@ Unset existing detail keys - + ### Event.Object.Relations.Amend @@ -19544,14 +19451,14 @@ Unset existing detail keys | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| relationLinks | [model.RelationLink](#anytype-model-RelationLink) | repeated | | +| relationLinks | [model.RelationLink](#anytype.model.RelationLink) | repeated | | - + ### Event.Object.Relations.Remove @@ -19567,7 +19474,7 @@ Unset existing detail keys - + ### Event.Object.Remove @@ -19582,7 +19489,7 @@ Unset existing detail keys - + ### Event.Object.Restrictions @@ -19592,7 +19499,7 @@ Unset existing detail keys - + ### Event.Object.Restrictions.Set @@ -19601,14 +19508,14 @@ Unset existing detail keys | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| restrictions | [model.Restrictions](#anytype-model-Restrictions) | | | +| restrictions | [model.Restrictions](#anytype.model.Restrictions) | | | - + ### Event.Object.Subscription @@ -19618,7 +19525,7 @@ Unset existing detail keys - + ### Event.Object.Subscription.Add Adds new document to subscriptions @@ -19635,7 +19542,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Counters @@ -19653,7 +19560,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Groups @@ -19662,7 +19569,7 @@ Adds new document to subscriptions | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | subId | [string](#string) | | | -| group | [model.Block.Content.Dataview.Group](#anytype-model-Block-Content-Dataview-Group) | | | +| group | [model.Block.Content.Dataview.Group](#anytype.model.Block.Content.Dataview.Group) | | | | remove | [bool](#bool) | | | @@ -19670,7 +19577,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Position Indicates new position of document @@ -19687,7 +19594,7 @@ Indicates new position of document - + ### Event.Object.Subscription.Remove Removes document from subscription @@ -19703,7 +19610,7 @@ Removes document from subscription - + ### Event.Ping @@ -19718,7 +19625,7 @@ Removes document from subscription - + ### Event.Process @@ -19728,7 +19635,7 @@ Removes document from subscription - + ### Event.Process.Done @@ -19736,14 +19643,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype-Model-Process) | | | +| process | [Model.Process](#anytype.Model.Process) | | | - + ### Event.Process.New @@ -19751,14 +19658,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype-Model-Process) | | | +| process | [Model.Process](#anytype.Model.Process) | | | - + ### Event.Process.Update @@ -19766,14 +19673,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype-Model-Process) | | | +| process | [Model.Process](#anytype.Model.Process) | | | - + ### Event.Status @@ -19783,7 +19690,7 @@ Removes document from subscription - + ### Event.Status.Thread @@ -19791,16 +19698,16 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| summary | [Event.Status.Thread.Summary](#anytype-Event-Status-Thread-Summary) | | | -| cafe | [Event.Status.Thread.Cafe](#anytype-Event-Status-Thread-Cafe) | | | -| accounts | [Event.Status.Thread.Account](#anytype-Event-Status-Thread-Account) | repeated | | +| summary | [Event.Status.Thread.Summary](#anytype.Event.Status.Thread.Summary) | | | +| cafe | [Event.Status.Thread.Cafe](#anytype.Event.Status.Thread.Cafe) | | | +| accounts | [Event.Status.Thread.Account](#anytype.Event.Status.Thread.Account) | repeated | | - + ### Event.Status.Thread.Account @@ -19814,14 +19721,14 @@ Removes document from subscription | online | [bool](#bool) | | | | lastPulled | [int64](#int64) | | | | lastEdited | [int64](#int64) | | | -| devices | [Event.Status.Thread.Device](#anytype-Event-Status-Thread-Device) | repeated | | +| devices | [Event.Status.Thread.Device](#anytype.Event.Status.Thread.Device) | repeated | | - + ### Event.Status.Thread.Cafe @@ -19829,17 +19736,17 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [Event.Status.Thread.SyncStatus](#anytype-Event-Status-Thread-SyncStatus) | | | +| status | [Event.Status.Thread.SyncStatus](#anytype.Event.Status.Thread.SyncStatus) | | | | lastPulled | [int64](#int64) | | | | lastPushSucceed | [bool](#bool) | | | -| files | [Event.Status.Thread.Cafe.PinStatus](#anytype-Event-Status-Thread-Cafe-PinStatus) | | | +| files | [Event.Status.Thread.Cafe.PinStatus](#anytype.Event.Status.Thread.Cafe.PinStatus) | | | - + ### Event.Status.Thread.Cafe.PinStatus @@ -19857,7 +19764,7 @@ Removes document from subscription - + ### Event.Status.Thread.Device @@ -19875,7 +19782,7 @@ Removes document from subscription - + ### Event.Status.Thread.Summary @@ -19883,14 +19790,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [Event.Status.Thread.SyncStatus](#anytype-Event-Status-Thread-SyncStatus) | | | +| status | [Event.Status.Thread.SyncStatus](#anytype.Event.Status.Thread.SyncStatus) | | | - + ### Event.User @@ -19900,7 +19807,7 @@ Removes document from subscription - + ### Event.User.Block @@ -19910,7 +19817,7 @@ Removes document from subscription - + ### Event.User.Block.Join Middleware to front end event message, that will be sent in this scenario: @@ -19921,14 +19828,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that opened a block | +| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that opened a block | - + ### Event.User.Block.Left Middleware to front end event message, that will be sent in this scenario: @@ -19939,14 +19846,14 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that left the block | +| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that left the block | - + ### Event.User.Block.SelectRange Middleware to front end event message, that will be sent in this scenario: @@ -19957,7 +19864,7 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that selected blocks | +| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that selected blocks | | blockIdsArray | [string](#string) | repeated | Ids of selected blocks. | @@ -19965,7 +19872,7 @@ Precondition: user A and user B opened the same block - + ### Event.User.Block.TextRange Middleware to front end event message, that will be sent in this scenario: @@ -19976,16 +19883,16 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that selected a text | +| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that selected a text | | blockId | [string](#string) | | Id of the text block, that have a selection | -| range | [model.Range](#anytype-model-Range) | | Range of the selection | +| range | [model.Range](#anytype.model.Range) | | Range of the selection | - + ### Model @@ -19995,7 +19902,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process @@ -20004,16 +19911,16 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Model.Process.Type](#anytype-Model-Process-Type) | | | -| state | [Model.Process.State](#anytype-Model-Process-State) | | | -| progress | [Model.Process.Progress](#anytype-Model-Process-Progress) | | | +| type | [Model.Process.Type](#anytype.Model.Process.Type) | | | +| state | [Model.Process.State](#anytype.Model.Process.State) | | | +| progress | [Model.Process.Progress](#anytype.Model.Process.Progress) | | | - + ### Model.Process.Progress @@ -20030,7 +19937,7 @@ Precondition: user A and user B opened the same block - + ### ResponseEvent @@ -20038,7 +19945,7 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| messages | [Event.Message](#anytype-Event-Message) | repeated | | +| messages | [Event.Message](#anytype.Event.Message) | repeated | | | contextId | [string](#string) | | | | traceId | [string](#string) | | | @@ -20049,7 +19956,7 @@ Precondition: user A and user B opened the same block - + ### Event.Block.Dataview.SliceOperation @@ -20064,7 +19971,7 @@ Precondition: user A and user B opened the same block - + ### Event.Status.Thread.SyncStatus @@ -20079,7 +19986,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process.State @@ -20094,7 +20001,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process.Type @@ -20117,14 +20024,14 @@ Precondition: user A and user B opened the same block - + ## pb/protos/snapshot.proto - + ### Profile @@ -20143,7 +20050,7 @@ Precondition: user A and user B opened the same block - + ### SnapshotWithType @@ -20151,8 +20058,8 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| sbType | [model.SmartBlockType](#anytype-model-SmartBlockType) | | | -| snapshot | [Change.Snapshot](#anytype-Change-Snapshot) | | | +| sbType | [model.SmartBlockType](#anytype.model.SmartBlockType) | | | +| snapshot | [Change.Snapshot](#anytype.Change.Snapshot) | | | @@ -20168,14 +20075,14 @@ Precondition: user A and user B opened the same block - + ## pkg/lib/pb/model/protos/localstore.proto - + ### ObjectDetails @@ -20183,14 +20090,14 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### ObjectInfo @@ -20200,18 +20107,18 @@ Precondition: user A and user B opened the same block | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | objectTypeUrls | [string](#string) | repeated | deprecated | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| relations | [Relation](#anytype-model-Relation) | repeated | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| relations | [Relation](#anytype.model.Relation) | repeated | | | snippet | [string](#string) | | | | hasInboundLinks | [bool](#bool) | | | -| objectType | [SmartBlockType](#anytype-model-SmartBlockType) | | | +| objectType | [SmartBlockType](#anytype.model.SmartBlockType) | | | - + ### ObjectInfoWithLinks @@ -20220,15 +20127,15 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| info | [ObjectInfo](#anytype-model-ObjectInfo) | | | -| links | [ObjectLinksInfo](#anytype-model-ObjectLinksInfo) | | | +| info | [ObjectInfo](#anytype.model.ObjectInfo) | | | +| links | [ObjectLinksInfo](#anytype.model.ObjectLinksInfo) | | | - + ### ObjectInfoWithOutboundLinks @@ -20237,15 +20144,15 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| info | [ObjectInfo](#anytype-model-ObjectInfo) | | | -| outboundLinks | [ObjectInfo](#anytype-model-ObjectInfo) | repeated | | +| info | [ObjectInfo](#anytype.model.ObjectInfo) | | | +| outboundLinks | [ObjectInfo](#anytype.model.ObjectInfo) | repeated | | - + ### ObjectInfoWithOutboundLinksIDs @@ -20254,7 +20161,7 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| info | [ObjectInfo](#anytype-model-ObjectInfo) | | | +| info | [ObjectInfo](#anytype.model.ObjectInfo) | | | | outboundLinks | [string](#string) | repeated | | @@ -20262,7 +20169,7 @@ Precondition: user A and user B opened the same block - + ### ObjectLinks @@ -20278,7 +20185,7 @@ Precondition: user A and user B opened the same block - + ### ObjectLinksInfo @@ -20286,15 +20193,15 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| inbound | [ObjectInfo](#anytype-model-ObjectInfo) | repeated | | -| outbound | [ObjectInfo](#anytype-model-ObjectInfo) | repeated | | +| inbound | [ObjectInfo](#anytype.model.ObjectInfo) | repeated | | +| outbound | [ObjectInfo](#anytype.model.ObjectInfo) | repeated | | - + ### ObjectStoreChecksums @@ -20327,14 +20234,14 @@ Precondition: user A and user B opened the same block - + ## pkg/lib/pb/model/protos/models.proto - + ### Account Contains basic information about a user account @@ -20344,17 +20251,17 @@ Contains basic information about a user account | ----- | ---- | ----- | ----------- | | id | [string](#string) | | User's thread id | | name | [string](#string) | | User name, that associated with this account | -| avatar | [Account.Avatar](#anytype-model-Account-Avatar) | | Avatar of a user's account | -| config | [Account.Config](#anytype-model-Account-Config) | | | -| status | [Account.Status](#anytype-model-Account-Status) | | | -| info | [Account.Info](#anytype-model-Account-Info) | | | +| avatar | [Account.Avatar](#anytype.model.Account.Avatar) | | Avatar of a user's account | +| config | [Account.Config](#anytype.model.Account.Config) | | | +| status | [Account.Status](#anytype.model.Account.Status) | | | +| info | [Account.Info](#anytype.model.Account.Info) | | | - + ### Account.Avatar Avatar of a user's account. It could be an image or color @@ -20362,7 +20269,7 @@ Avatar of a user's account. It could be an image or color | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| image | [Block.Content.File](#anytype-model-Block-Content-File) | | Image of the avatar. Contains the hash to retrieve the image. | +| image | [Block.Content.File](#anytype.model.Block.Content.File) | | Image of the avatar. Contains the hash to retrieve the image. | | color | [string](#string) | | Color of the avatar, used if image not set. | @@ -20370,7 +20277,7 @@ Avatar of a user's account. It could be an image or color - + ### Account.Config @@ -20382,14 +20289,14 @@ Avatar of a user's account. It could be an image or color | enableDebug | [bool](#bool) | | | | enablePrereleaseChannel | [bool](#bool) | | | | enableSpaces | [bool](#bool) | | | -| extra | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| extra | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### Account.Info @@ -20413,7 +20320,7 @@ Avatar of a user's account. It could be an image or color - + ### Account.Status @@ -20421,7 +20328,7 @@ Avatar of a user's account. It could be an image or color | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| statusType | [Account.StatusType](#anytype-model-Account-StatusType) | | | +| statusType | [Account.StatusType](#anytype.model.Account.StatusType) | | | | deletionDate | [int64](#int64) | | | @@ -20429,7 +20336,7 @@ Avatar of a user's account. It could be an image or color - + ### Block @@ -20438,36 +20345,36 @@ Avatar of a user's account. It could be an image or color | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| restrictions | [Block.Restrictions](#anytype-model-Block-Restrictions) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| restrictions | [Block.Restrictions](#anytype.model.Block.Restrictions) | | | | childrenIds | [string](#string) | repeated | | | backgroundColor | [string](#string) | | | -| align | [Block.Align](#anytype-model-Block-Align) | | | -| verticalAlign | [Block.VerticalAlign](#anytype-model-Block-VerticalAlign) | | | -| smartblock | [Block.Content.Smartblock](#anytype-model-Block-Content-Smartblock) | | | -| text | [Block.Content.Text](#anytype-model-Block-Content-Text) | | | -| file | [Block.Content.File](#anytype-model-Block-Content-File) | | | -| layout | [Block.Content.Layout](#anytype-model-Block-Content-Layout) | | | -| div | [Block.Content.Div](#anytype-model-Block-Content-Div) | | | -| bookmark | [Block.Content.Bookmark](#anytype-model-Block-Content-Bookmark) | | | -| icon | [Block.Content.Icon](#anytype-model-Block-Content-Icon) | | | -| link | [Block.Content.Link](#anytype-model-Block-Content-Link) | | | -| dataview | [Block.Content.Dataview](#anytype-model-Block-Content-Dataview) | | | -| relation | [Block.Content.Relation](#anytype-model-Block-Content-Relation) | | | -| featuredRelations | [Block.Content.FeaturedRelations](#anytype-model-Block-Content-FeaturedRelations) | | | -| latex | [Block.Content.Latex](#anytype-model-Block-Content-Latex) | | | -| tableOfContents | [Block.Content.TableOfContents](#anytype-model-Block-Content-TableOfContents) | | | -| table | [Block.Content.Table](#anytype-model-Block-Content-Table) | | | -| tableColumn | [Block.Content.TableColumn](#anytype-model-Block-Content-TableColumn) | | | -| tableRow | [Block.Content.TableRow](#anytype-model-Block-Content-TableRow) | | | -| widget | [Block.Content.Widget](#anytype-model-Block-Content-Widget) | | | +| align | [Block.Align](#anytype.model.Block.Align) | | | +| verticalAlign | [Block.VerticalAlign](#anytype.model.Block.VerticalAlign) | | | +| smartblock | [Block.Content.Smartblock](#anytype.model.Block.Content.Smartblock) | | | +| text | [Block.Content.Text](#anytype.model.Block.Content.Text) | | | +| file | [Block.Content.File](#anytype.model.Block.Content.File) | | | +| layout | [Block.Content.Layout](#anytype.model.Block.Content.Layout) | | | +| div | [Block.Content.Div](#anytype.model.Block.Content.Div) | | | +| bookmark | [Block.Content.Bookmark](#anytype.model.Block.Content.Bookmark) | | | +| icon | [Block.Content.Icon](#anytype.model.Block.Content.Icon) | | | +| link | [Block.Content.Link](#anytype.model.Block.Content.Link) | | | +| dataview | [Block.Content.Dataview](#anytype.model.Block.Content.Dataview) | | | +| relation | [Block.Content.Relation](#anytype.model.Block.Content.Relation) | | | +| featuredRelations | [Block.Content.FeaturedRelations](#anytype.model.Block.Content.FeaturedRelations) | | | +| latex | [Block.Content.Latex](#anytype.model.Block.Content.Latex) | | | +| tableOfContents | [Block.Content.TableOfContents](#anytype.model.Block.Content.TableOfContents) | | | +| table | [Block.Content.Table](#anytype.model.Block.Content.Table) | | | +| tableColumn | [Block.Content.TableColumn](#anytype.model.Block.Content.TableColumn) | | | +| tableRow | [Block.Content.TableRow](#anytype.model.Block.Content.TableRow) | | | +| widget | [Block.Content.Widget](#anytype.model.Block.Content.Widget) | | | - + ### Block.Content @@ -20477,7 +20384,7 @@ Avatar of a user's account. It could be an image or color - + ### Block.Content.Bookmark Bookmark is to keep a web-link and to preview a content. @@ -20490,16 +20397,16 @@ Bookmark is to keep a web-link and to preview a content. | description | [string](#string) | | Deprecated. Get this data from the target object. | | imageHash | [string](#string) | | Deprecated. Get this data from the target object. | | faviconHash | [string](#string) | | Deprecated. Get this data from the target object. | -| type | [LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | +| type | [LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | | targetObjectId | [string](#string) | | | -| state | [Block.Content.Bookmark.State](#anytype-model-Block-Content-Bookmark-State) | | | +| state | [Block.Content.Bookmark.State](#anytype.model.Block.Content.Bookmark.State) | | | - + ### Block.Content.Dataview @@ -20508,12 +20415,12 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | source | [string](#string) | repeated | | -| views | [Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | repeated | | -| relations | [Relation](#anytype-model-Relation) | repeated | deprecated | +| views | [Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | repeated | | +| relations | [Relation](#anytype.model.Relation) | repeated | deprecated | | activeView | [string](#string) | | saved within a session | -| groupOrders | [Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) | repeated | | -| objectOrders | [Block.Content.Dataview.ObjectOrder](#anytype-model-Block-Content-Dataview-ObjectOrder) | repeated | | -| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | | +| groupOrders | [Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) | repeated | | +| objectOrders | [Block.Content.Dataview.ObjectOrder](#anytype.model.Block.Content.Dataview.ObjectOrder) | repeated | | +| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | | | TargetObjectId | [string](#string) | | | | isCollection | [bool](#bool) | | | @@ -20522,7 +20429,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Checkbox @@ -20537,7 +20444,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Date @@ -20547,7 +20454,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Filter @@ -20556,13 +20463,13 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| operator | [Block.Content.Dataview.Filter.Operator](#anytype-model-Block-Content-Dataview-Filter-Operator) | | looks not applicable? | +| operator | [Block.Content.Dataview.Filter.Operator](#anytype.model.Block.Content.Dataview.Filter.Operator) | | looks not applicable? | | RelationKey | [string](#string) | | | | relationProperty | [string](#string) | | | -| condition | [Block.Content.Dataview.Filter.Condition](#anytype-model-Block-Content-Dataview-Filter-Condition) | | | -| value | [google.protobuf.Value](#google-protobuf-Value) | | | -| quickOption | [Block.Content.Dataview.Filter.QuickOption](#anytype-model-Block-Content-Dataview-Filter-QuickOption) | | | -| format | [RelationFormat](#anytype-model-RelationFormat) | | | +| condition | [Block.Content.Dataview.Filter.Condition](#anytype.model.Block.Content.Dataview.Filter.Condition) | | | +| value | [google.protobuf.Value](#google.protobuf.Value) | | | +| quickOption | [Block.Content.Dataview.Filter.QuickOption](#anytype.model.Block.Content.Dataview.Filter.QuickOption) | | | +| format | [RelationFormat](#anytype.model.RelationFormat) | | | | includeTime | [bool](#bool) | | | @@ -20570,7 +20477,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Group @@ -20579,17 +20486,17 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| status | [Block.Content.Dataview.Status](#anytype-model-Block-Content-Dataview-Status) | | | -| tag | [Block.Content.Dataview.Tag](#anytype-model-Block-Content-Dataview-Tag) | | | -| checkbox | [Block.Content.Dataview.Checkbox](#anytype-model-Block-Content-Dataview-Checkbox) | | | -| date | [Block.Content.Dataview.Date](#anytype-model-Block-Content-Dataview-Date) | | | +| status | [Block.Content.Dataview.Status](#anytype.model.Block.Content.Dataview.Status) | | | +| tag | [Block.Content.Dataview.Tag](#anytype.model.Block.Content.Dataview.Tag) | | | +| checkbox | [Block.Content.Dataview.Checkbox](#anytype.model.Block.Content.Dataview.Checkbox) | | | +| date | [Block.Content.Dataview.Date](#anytype.model.Block.Content.Dataview.Date) | | | - + ### Block.Content.Dataview.GroupOrder @@ -20598,14 +20505,14 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | viewId | [string](#string) | | | -| viewGroups | [Block.Content.Dataview.ViewGroup](#anytype-model-Block-Content-Dataview-ViewGroup) | repeated | | +| viewGroups | [Block.Content.Dataview.ViewGroup](#anytype.model.Block.Content.Dataview.ViewGroup) | repeated | | - + ### Block.Content.Dataview.ObjectOrder @@ -20622,7 +20529,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Relation @@ -20634,15 +20541,15 @@ Bookmark is to keep a web-link and to preview a content. | isVisible | [bool](#bool) | | | | width | [int32](#int32) | | the displayed column % calculated based on other visible relations | | dateIncludeTime | [bool](#bool) | | | -| timeFormat | [Block.Content.Dataview.Relation.TimeFormat](#anytype-model-Block-Content-Dataview-Relation-TimeFormat) | | | -| dateFormat | [Block.Content.Dataview.Relation.DateFormat](#anytype-model-Block-Content-Dataview-Relation-DateFormat) | | | +| timeFormat | [Block.Content.Dataview.Relation.TimeFormat](#anytype.model.Block.Content.Dataview.Relation.TimeFormat) | | | +| dateFormat | [Block.Content.Dataview.Relation.DateFormat](#anytype.model.Block.Content.Dataview.Relation.DateFormat) | | | - + ### Block.Content.Dataview.Sort @@ -20652,9 +20559,9 @@ Bookmark is to keep a web-link and to preview a content. | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | RelationKey | [string](#string) | | | -| type | [Block.Content.Dataview.Sort.Type](#anytype-model-Block-Content-Dataview-Sort-Type) | | | -| customOrder | [google.protobuf.Value](#google-protobuf-Value) | repeated | | -| format | [RelationFormat](#anytype-model-RelationFormat) | | | +| type | [Block.Content.Dataview.Sort.Type](#anytype.model.Block.Content.Dataview.Sort.Type) | | | +| customOrder | [google.protobuf.Value](#google.protobuf.Value) | repeated | | +| format | [RelationFormat](#anytype.model.RelationFormat) | | | | includeTime | [bool](#bool) | | | @@ -20662,7 +20569,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Status @@ -20677,7 +20584,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Tag @@ -20692,7 +20599,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.View @@ -20701,14 +20608,14 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Block.Content.Dataview.View.Type](#anytype-model-Block-Content-Dataview-View-Type) | | | +| type | [Block.Content.Dataview.View.Type](#anytype.model.Block.Content.Dataview.View.Type) | | | | name | [string](#string) | | | -| sorts | [Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | | -| filters | [Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | -| relations | [Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | repeated | relations fields/columns options, also used to provide the order | +| sorts | [Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | | +| filters | [Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | +| relations | [Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | repeated | relations fields/columns options, also used to provide the order | | coverRelationKey | [string](#string) | | Relation used for cover in gallery | | hideIcon | [bool](#bool) | | Hide icon near name | -| cardSize | [Block.Content.Dataview.View.Size](#anytype-model-Block-Content-Dataview-View-Size) | | Gallery card size | +| cardSize | [Block.Content.Dataview.View.Size](#anytype.model.Block.Content.Dataview.View.Size) | | Gallery card size | | coverFit | [bool](#bool) | | Image fits container | | groupRelationKey | [string](#string) | | Group view by this relationKey | | groupBackgroundColors | [bool](#bool) | | Enable backgrounds in groups | @@ -20719,7 +20626,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.ViewGroup @@ -20737,7 +20644,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Div Divider: block, that contains only one horizontal thin line @@ -20745,14 +20652,14 @@ Divider: block, that contains only one horizontal thin line | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| style | [Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | +| style | [Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | - + ### Block.Content.FeaturedRelations @@ -20762,7 +20669,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.File @@ -20772,19 +20679,19 @@ Divider: block, that contains only one horizontal thin line | ----- | ---- | ----- | ----------- | | hash | [string](#string) | | | | name | [string](#string) | | | -| type | [Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | +| type | [Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | | mime | [string](#string) | | | | size | [int64](#int64) | | | | addedAt | [int64](#int64) | | | -| state | [Block.Content.File.State](#anytype-model-Block-Content-File-State) | | | -| style | [Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | +| state | [Block.Content.File.State](#anytype.model.Block.Content.File.State) | | | +| style | [Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | - + ### Block.Content.Icon @@ -20799,7 +20706,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.Latex @@ -20814,7 +20721,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.Layout Layout have no visual representation, but affects on blocks, that it contains. @@ -20823,14 +20730,14 @@ Row/Column layout blocks creates only automatically, after some of a D&D ope | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| style | [Block.Content.Layout.Style](#anytype-model-Block-Content-Layout-Style) | | | +| style | [Block.Content.Layout.Style](#anytype.model.Block.Content.Layout.Style) | | | - + ### Block.Content.Link Link: block to link some content from an external sources. @@ -20839,11 +20746,11 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetBlockId | [string](#string) | | id of the target block | -| style | [Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) | | deprecated | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| iconSize | [Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) | | | -| cardStyle | [Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) | | | -| description | [Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) | | | +| style | [Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) | | deprecated | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| iconSize | [Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) | | | +| cardStyle | [Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) | | | +| description | [Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) | | | | relations | [string](#string) | repeated | | @@ -20851,7 +20758,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Relation @@ -20866,7 +20773,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Smartblock @@ -20876,7 +20783,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Table @@ -20886,7 +20793,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableColumn @@ -20896,7 +20803,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableOfContents @@ -20906,7 +20813,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableRow @@ -20921,7 +20828,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text @@ -20930,8 +20837,8 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | text | [string](#string) | | | -| style | [Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | -| marks | [Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | list of marks to apply to the text | +| style | [Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| marks | [Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | list of marks to apply to the text | | checked | [bool](#bool) | | | | color | [string](#string) | | | | iconEmoji | [string](#string) | | used with style Callout | @@ -20942,7 +20849,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text.Mark @@ -20950,8 +20857,8 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| range | [Range](#anytype-model-Range) | | range of symbols to apply this mark. From(symbol) To(symbol) | -| type | [Block.Content.Text.Mark.Type](#anytype-model-Block-Content-Text-Mark-Type) | | | +| range | [Range](#anytype.model.Range) | | range of symbols to apply this mark. From(symbol) To(symbol) | +| type | [Block.Content.Text.Mark.Type](#anytype.model.Block.Content.Text.Mark.Type) | | | | param | [string](#string) | | link, color, etc | @@ -20959,7 +20866,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text.Marks @@ -20967,14 +20874,14 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| marks | [Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) | repeated | | +| marks | [Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) | repeated | | - + ### Block.Content.Widget @@ -20982,14 +20889,14 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| layout | [Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | +| layout | [Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | - + ### Block.Restrictions @@ -21008,7 +20915,7 @@ Link: block to link some content from an external sources. - + ### BlockMetaOnly Used to decode block meta only, without the content itself @@ -21017,14 +20924,14 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | - + ### InternalFlag @@ -21032,14 +20939,14 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [InternalFlag.Value](#anytype-model-InternalFlag-Value) | | | +| value | [InternalFlag.Value](#anytype.model.InternalFlag.Value) | | | - + ### Layout @@ -21047,16 +20954,16 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| id | [ObjectType.Layout](#anytype-model-ObjectType-Layout) | | | +| id | [ObjectType.Layout](#anytype.model.ObjectType.Layout) | | | | name | [string](#string) | | | -| requiredRelations | [Relation](#anytype-model-Relation) | repeated | relations required for this object type | +| requiredRelations | [Relation](#anytype.model.Relation) | repeated | relations required for this object type | - + ### LinkPreview @@ -21069,14 +20976,14 @@ Used to decode block meta only, without the content itself | description | [string](#string) | | | | imageUrl | [string](#string) | | | | faviconUrl | [string](#string) | | | -| type | [LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | +| type | [LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | - + ### Object @@ -21086,7 +20993,7 @@ Used to decode block meta only, without the content itself - + ### Object.ChangePayload @@ -21094,14 +21001,14 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| smartBlockType | [SmartBlockType](#anytype-model-SmartBlockType) | | | +| smartBlockType | [SmartBlockType](#anytype.model.SmartBlockType) | | | - + ### ObjectType @@ -21111,13 +21018,13 @@ Used to decode block meta only, without the content itself | ----- | ---- | ----- | ----------- | | url | [string](#string) | | leave empty in case you want to create the new one | | name | [string](#string) | | name of objectType (can be localized for bundled types) | -| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | cannot contain more than one Relation with the same RelationType | -| layout | [ObjectType.Layout](#anytype-model-ObjectType-Layout) | | | +| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | cannot contain more than one Relation with the same RelationType | +| layout | [ObjectType.Layout](#anytype.model.ObjectType.Layout) | | | | iconEmoji | [string](#string) | | emoji symbol | | description | [string](#string) | | | | hidden | [bool](#bool) | | | | readonly | [bool](#bool) | | | -| types | [SmartBlockType](#anytype-model-SmartBlockType) | repeated | | +| types | [SmartBlockType](#anytype.model.SmartBlockType) | repeated | | | isArchived | [bool](#bool) | | sets locally to hide object type from set and some other places | | installedByDefault | [bool](#bool) | | | @@ -21126,7 +21033,7 @@ Used to decode block meta only, without the content itself - + ### ObjectView Works with a smart blocks: Page, Dashboard @@ -21136,20 +21043,20 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | rootId | [string](#string) | | Root block id | -| blocks | [Block](#anytype-model-Block) | repeated | dependent simple blocks (descendants) | -| details | [ObjectView.DetailsSet](#anytype-model-ObjectView-DetailsSet) | repeated | details for the current and dependent objects | -| type | [SmartBlockType](#anytype-model-SmartBlockType) | | | -| relations | [Relation](#anytype-model-Relation) | repeated | DEPRECATED, use relationLinks instead | -| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | | -| restrictions | [Restrictions](#anytype-model-Restrictions) | | object restrictions | -| history | [ObjectView.HistorySize](#anytype-model-ObjectView-HistorySize) | | | +| blocks | [Block](#anytype.model.Block) | repeated | dependent simple blocks (descendants) | +| details | [ObjectView.DetailsSet](#anytype.model.ObjectView.DetailsSet) | repeated | details for the current and dependent objects | +| type | [SmartBlockType](#anytype.model.SmartBlockType) | | | +| relations | [Relation](#anytype.model.Relation) | repeated | DEPRECATED, use relationLinks instead | +| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | | +| restrictions | [Restrictions](#anytype.model.Restrictions) | | object restrictions | +| history | [ObjectView.HistorySize](#anytype.model.ObjectView.HistorySize) | | | - + ### ObjectView.DetailsSet @@ -21158,7 +21065,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | can not be a partial state. Should replace client details state | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | can not be a partial state. Should replace client details state | | subIds | [string](#string) | repeated | | @@ -21166,7 +21073,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc - + ### ObjectView.HistorySize @@ -21182,7 +21089,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc - + ### ObjectView.RelationWithValuePerObject @@ -21191,14 +21098,14 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | objectId | [string](#string) | | | -| relations | [RelationWithValue](#anytype-model-RelationWithValue) | repeated | | +| relations | [RelationWithValue](#anytype.model.RelationWithValue) | repeated | | - + ### Range General purpose structure, uses in Mark. @@ -21214,7 +21121,7 @@ General purpose structure, uses in Mark. - + ### Relation Relation describe the human-interpreted relation type. It may be something like "Date of creation, format=date" or "Assignee, format=objectId, objectType=person" @@ -21224,21 +21131,21 @@ Relation describe the human-interpreted relation type. It may be something like | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | key | [string](#string) | | Key under which the value is stored in the map. Must be unique for the object type. It usually auto-generated bsonid, but also may be something human-readable in case of prebuilt types. | -| format | [RelationFormat](#anytype-model-RelationFormat) | | format of the underlying data | +| format | [RelationFormat](#anytype.model.RelationFormat) | | format of the underlying data | | name | [string](#string) | | name to show (can be localized for bundled types) | -| defaultValue | [google.protobuf.Value](#google-protobuf-Value) | | | -| dataSource | [Relation.DataSource](#anytype-model-Relation-DataSource) | | where the data is stored | +| defaultValue | [google.protobuf.Value](#google.protobuf.Value) | | | +| dataSource | [Relation.DataSource](#anytype.model.Relation.DataSource) | | where the data is stored | | hidden | [bool](#bool) | | internal, not displayed to user (e.g. coverX, coverY) | | readOnly | [bool](#bool) | | value not editable by user tobe renamed to readonlyValue | | readOnlyRelation | [bool](#bool) | | relation metadata, eg name and format is not editable by user | | multi | [bool](#bool) | | allow multiple values (stored in pb list) | | objectTypes | [string](#string) | repeated | URL of object type, empty to allow link to any object | -| selectDict | [Relation.Option](#anytype-model-Relation-Option) | repeated | index 10, 11 was used in internal-only builds. Can be reused, but may break some test accounts +| selectDict | [Relation.Option](#anytype.model.Relation.Option) | repeated | index 10, 11 was used in internal-only builds. Can be reused, but may break some test accounts default dictionary with unique values to choose for select/multiSelect format | | maxCount | [int32](#int32) | | max number of values can be set for this relation. 0 means no limit. 1 means the value can be stored in non-repeated field | | description | [string](#string) | | | -| scope | [Relation.Scope](#anytype-model-Relation-Scope) | | on-store fields, injected only locally +| scope | [Relation.Scope](#anytype.model.Relation.Scope) | | on-store fields, injected only locally scope from which this relation have been aggregated | | creator | [string](#string) | | creator profile id | @@ -21248,7 +21155,7 @@ scope from which this relation have been aggregated | - + ### Relation.Option @@ -21268,7 +21175,7 @@ stored | - + ### RelationLink @@ -21277,14 +21184,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| format | [RelationFormat](#anytype-model-RelationFormat) | | | +| format | [RelationFormat](#anytype.model.RelationFormat) | | | - + ### RelationOptions @@ -21292,14 +21199,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| options | [Relation.Option](#anytype-model-Relation-Option) | repeated | | +| options | [Relation.Option](#anytype.model.Relation.Option) | repeated | | - + ### RelationWithValue @@ -21307,15 +21214,15 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relation | [Relation](#anytype-model-Relation) | | | -| value | [google.protobuf.Value](#google-protobuf-Value) | | | +| relation | [Relation](#anytype.model.Relation) | | | +| value | [google.protobuf.Value](#google.protobuf.Value) | | | - + ### Relations @@ -21323,14 +21230,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relations | [Relation](#anytype-model-Relation) | repeated | | +| relations | [Relation](#anytype.model.Relation) | repeated | | - + ### Restrictions @@ -21338,15 +21245,15 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| object | [Restrictions.ObjectRestriction](#anytype-model-Restrictions-ObjectRestriction) | repeated | | -| dataview | [Restrictions.DataviewRestrictions](#anytype-model-Restrictions-DataviewRestrictions) | repeated | | +| object | [Restrictions.ObjectRestriction](#anytype.model.Restrictions.ObjectRestriction) | repeated | | +| dataview | [Restrictions.DataviewRestrictions](#anytype.model.Restrictions.DataviewRestrictions) | repeated | | - + ### Restrictions.DataviewRestrictions @@ -21355,14 +21262,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | blockId | [string](#string) | | | -| restrictions | [Restrictions.DataviewRestriction](#anytype-model-Restrictions-DataviewRestriction) | repeated | | +| restrictions | [Restrictions.DataviewRestriction](#anytype.model.Restrictions.DataviewRestriction) | repeated | | - + ### SmartBlockSnapshotBase @@ -21370,21 +21277,21 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| blocks | [Block](#anytype-model-Block) | repeated | | -| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| fileKeys | [google.protobuf.Struct](#google-protobuf-Struct) | | | -| extraRelations | [Relation](#anytype-model-Relation) | repeated | deprecated | +| blocks | [Block](#anytype.model.Block) | repeated | | +| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| fileKeys | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| extraRelations | [Relation](#anytype.model.Relation) | repeated | deprecated | | objectTypes | [string](#string) | repeated | | -| collections | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| collections | [google.protobuf.Struct](#google.protobuf.Struct) | | | | removedCollectionKeys | [string](#string) | repeated | | -| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | | +| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | | - + ### ThreadCreateQueueEntry @@ -21400,7 +21307,7 @@ stored | - + ### ThreadDeeplinkPayload @@ -21418,7 +21325,7 @@ stored | - + ### Account.StatusType @@ -21432,7 +21339,7 @@ stored | - + ### Block.Align @@ -21445,7 +21352,7 @@ stored | - + ### Block.Content.Bookmark.State @@ -21459,7 +21366,7 @@ stored | - + ### Block.Content.Dataview.Filter.Condition @@ -21483,10 +21390,11 @@ stored | | NotAllIn | 14 | | | ExactIn | 15 | | | NotExactIn | 16 | | +| Exists | 17 | | - + ### Block.Content.Dataview.Filter.Operator @@ -21498,7 +21406,7 @@ stored | - + ### Block.Content.Dataview.Filter.QuickOption @@ -21520,7 +21428,7 @@ stored | - + ### Block.Content.Dataview.Relation.DateFormat @@ -21535,7 +21443,7 @@ stored | - + ### Block.Content.Dataview.Relation.TimeFormat @@ -21547,7 +21455,7 @@ stored | - + ### Block.Content.Dataview.Sort.Type @@ -21560,7 +21468,7 @@ stored | - + ### Block.Content.Dataview.View.Size @@ -21573,7 +21481,7 @@ stored | - + ### Block.Content.Dataview.View.Type @@ -21587,7 +21495,7 @@ stored | - + ### Block.Content.Div.Style @@ -21599,7 +21507,7 @@ stored | - + ### Block.Content.File.State @@ -21613,7 +21521,7 @@ stored | - + ### Block.Content.File.Style @@ -21626,7 +21534,7 @@ stored | - + ### Block.Content.File.Type @@ -21642,7 +21550,7 @@ stored | - + ### Block.Content.Layout.Style @@ -21658,7 +21566,7 @@ stored | - + ### Block.Content.Link.CardStyle @@ -21671,7 +21579,7 @@ stored | - + ### Block.Content.Link.Description @@ -21684,7 +21592,7 @@ stored | - + ### Block.Content.Link.IconSize @@ -21697,7 +21605,7 @@ stored | - + ### Block.Content.Link.Style @@ -21711,7 +21619,7 @@ stored | - + ### Block.Content.Text.Mark.Type @@ -21732,7 +21640,7 @@ stored | - + ### Block.Content.Text.Style @@ -21756,7 +21664,7 @@ stored | - + ### Block.Content.Widget.Layout @@ -21769,7 +21677,7 @@ stored | - + ### Block.Position @@ -21787,7 +21695,7 @@ stored | - + ### Block.VerticalAlign @@ -21800,7 +21708,7 @@ stored | - + ### InternalFlag.Value Use such a weird construction due to the issue with imported repeated enum type @@ -21811,10 +21719,11 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. | editorDeleteEmpty | 0 | | | editorSelectType | 1 | | | editorSelectTemplate | 2 | | +| collectionDontIndex | 3 | | - + ### LinkPreview.Type @@ -21828,7 +21737,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### ObjectType.Layout @@ -21854,7 +21763,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### Relation.DataSource @@ -21868,7 +21777,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### Relation.Scope @@ -21883,7 +21792,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### RelationFormat RelationFormat describes how the underlying data is stored in the google.protobuf.Value and how it should be validated/sanitized @@ -21907,7 +21816,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### Restrictions.DataviewRestriction @@ -21921,7 +21830,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### Restrictions.ObjectRestriction @@ -21940,7 +21849,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### SmartBlockType @@ -21962,6 +21871,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu | AnytypeProfile | 515 | | | Date | 516 | | | Workspace | 518 | | +| MissingObject | 519 | | diff --git a/pkg/lib/pb/model/models.pb.go b/pkg/lib/pb/model/models.pb.go index df58b28e2..7e0c608f9 100644 --- a/pkg/lib/pb/model/models.pb.go +++ b/pkg/lib/pb/model/models.pb.go @@ -41,6 +41,7 @@ const ( SmartBlockType_AnytypeProfile SmartBlockType = 515 SmartBlockType_Date SmartBlockType = 516 SmartBlockType_Workspace SmartBlockType = 518 + SmartBlockType_MissingObject SmartBlockType = 519 ) var SmartBlockType_name = map[int32]string{ @@ -59,6 +60,7 @@ var SmartBlockType_name = map[int32]string{ 515: "AnytypeProfile", 516: "Date", 518: "Workspace", + 519: "MissingObject", } var SmartBlockType_value = map[string]int32{ @@ -77,6 +79,7 @@ var SmartBlockType_value = map[string]int32{ "AnytypeProfile": 515, "Date": 516, "Workspace": 518, + "MissingObject": 519, } func (x SmartBlockType) String() string { @@ -863,6 +866,7 @@ const ( BlockContentDataviewFilter_NotAllIn BlockContentDataviewFilterCondition = 14 BlockContentDataviewFilter_ExactIn BlockContentDataviewFilterCondition = 15 BlockContentDataviewFilter_NotExactIn BlockContentDataviewFilterCondition = 16 + BlockContentDataviewFilter_Exists BlockContentDataviewFilterCondition = 17 ) var BlockContentDataviewFilterCondition_name = map[int32]string{ @@ -883,6 +887,7 @@ var BlockContentDataviewFilterCondition_name = map[int32]string{ 14: "NotAllIn", 15: "ExactIn", 16: "NotExactIn", + 17: "Exists", } var BlockContentDataviewFilterCondition_value = map[string]int32{ @@ -903,6 +908,7 @@ var BlockContentDataviewFilterCondition_value = map[string]int32{ "NotAllIn": 14, "ExactIn": 15, "NotExactIn": 16, + "Exists": 17, } func (x BlockContentDataviewFilterCondition) String() string { @@ -1283,18 +1289,21 @@ const ( InternalFlag_editorDeleteEmpty InternalFlagValue = 0 InternalFlag_editorSelectType InternalFlagValue = 1 InternalFlag_editorSelectTemplate InternalFlagValue = 2 + InternalFlag_collectionDontIndex InternalFlagValue = 3 ) var InternalFlagValue_name = map[int32]string{ 0: "editorDeleteEmpty", 1: "editorSelectType", 2: "editorSelectTemplate", + 3: "collectionDontIndex", } var InternalFlagValue_value = map[string]int32{ "editorDeleteEmpty": 0, "editorSelectType": 1, "editorSelectTemplate": 2, + "collectionDontIndex": 3, } func (x InternalFlagValue) String() string { @@ -5757,328 +5766,330 @@ func init() { } var fileDescriptor_98a910b73321e591 = []byte{ - // 5130 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5b, 0x4d, 0x6c, 0x1c, 0x47, - 0x76, 0xe6, 0xfc, 0xcf, 0xbc, 0x21, 0xa9, 0x62, 0x89, 0x92, 0x26, 0x2d, 0xad, 0xc2, 0xed, 0x78, - 0xb5, 0x5a, 0xd9, 0x4b, 0xd9, 0xfa, 0xf1, 0x5f, 0x62, 0xcb, 0xfc, 0x91, 0x4c, 0x42, 0x3f, 0xa4, + // 5165 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x3b, 0x4b, 0x6c, 0x1c, 0x47, + 0x76, 0xf3, 0xff, 0xbc, 0x21, 0xa9, 0x62, 0x89, 0x92, 0x26, 0x2d, 0xaf, 0xc2, 0xed, 0x78, 0xb5, + 0x5a, 0xad, 0x97, 0xb2, 0xf5, 0x59, 0x7b, 0x37, 0xb1, 0xb5, 0xfc, 0x48, 0x26, 0x21, 0xc9, 0xa4, 0x7b, 0x28, 0x2a, 0x6b, 0x24, 0x81, 0x7b, 0xa6, 0x8b, 0x33, 0x6d, 0xf6, 0x74, 0x8d, 0xbb, 0x6b, - 0x28, 0x72, 0x81, 0x00, 0xce, 0xef, 0x31, 0x70, 0x02, 0x04, 0x39, 0x05, 0xd8, 0xdc, 0x73, 0x0d, - 0x92, 0x00, 0x41, 0x2e, 0x41, 0x80, 0x00, 0xb9, 0xf8, 0xb8, 0x40, 0x80, 0x24, 0xb0, 0x8f, 0xb9, - 0xe5, 0x9a, 0x3d, 0x04, 0xef, 0x55, 0x75, 0x4f, 0xcf, 0x0f, 0xa9, 0xa1, 0x77, 0x4f, 0xd3, 0xef, - 0xf5, 0x7b, 0xaf, 0xeb, 0xe7, 0xd5, 0x57, 0xef, 0xbd, 0xaa, 0x81, 0xd7, 0xfa, 0x87, 0x9d, 0xdb, - 0x81, 0xdf, 0xba, 0xdd, 0x6f, 0xdd, 0xee, 0x49, 0x4f, 0x04, 0xb7, 0xfb, 0x91, 0x54, 0x32, 0xd6, - 0x44, 0xbc, 0x4a, 0x14, 0x5f, 0x70, 0xc3, 0x13, 0x75, 0xd2, 0x17, 0xab, 0xc4, 0xb5, 0xae, 0x75, - 0xa4, 0xec, 0x04, 0x42, 0x8b, 0xb6, 0x06, 0x07, 0xb7, 0x63, 0x15, 0x0d, 0xda, 0x4a, 0x0b, 0xdb, - 0xff, 0x5a, 0x80, 0xcb, 0xcd, 0x9e, 0x1b, 0xa9, 0xf5, 0x40, 0xb6, 0x0f, 0x9b, 0xa1, 0xdb, 0x8f, - 0xbb, 0x52, 0xad, 0xbb, 0xb1, 0xe0, 0x6f, 0x40, 0xb9, 0x85, 0xcc, 0xb8, 0x91, 0x5b, 0x29, 0xdc, - 0xac, 0xdf, 0x59, 0x5e, 0x1d, 0x31, 0xbc, 0x4a, 0x1a, 0x8e, 0x91, 0xe1, 0x6f, 0x41, 0xc5, 0x13, - 0xca, 0xf5, 0x83, 0xb8, 0x91, 0x5f, 0xc9, 0xdd, 0xac, 0xdf, 0xb9, 0xb2, 0xaa, 0x3f, 0xbc, 0x9a, - 0x7c, 0x78, 0xb5, 0x49, 0x1f, 0x76, 0x12, 0x39, 0x7e, 0x17, 0xaa, 0x07, 0x7e, 0x20, 0x1e, 0x8b, - 0x93, 0xb8, 0x51, 0x38, 0x5b, 0x27, 0x15, 0xe4, 0x0f, 0x60, 0x51, 0x1c, 0xab, 0xc8, 0x75, 0x44, - 0xe0, 0x2a, 0x5f, 0x86, 0x71, 0xa3, 0x48, 0xad, 0xbb, 0x32, 0xd6, 0xba, 0xe4, 0xbd, 0x33, 0x26, - 0xce, 0x57, 0xa0, 0x2e, 0x5b, 0x9f, 0x8b, 0xb6, 0xda, 0x3b, 0xe9, 0x8b, 0xb8, 0x51, 0x5a, 0x29, - 0xdc, 0xac, 0x39, 0x59, 0x16, 0x7f, 0x0f, 0xea, 0x6d, 0x19, 0x04, 0xa2, 0xad, 0xed, 0x97, 0xcf, - 0x6e, 0x5a, 0x56, 0x96, 0xdf, 0x83, 0x4b, 0x91, 0xe8, 0xc9, 0x23, 0xe1, 0x6d, 0xa4, 0x5c, 0xea, - 0x5f, 0x95, 0x3e, 0x33, 0xfd, 0x25, 0x5f, 0x83, 0x85, 0xc8, 0xb4, 0xef, 0x89, 0x1f, 0x1e, 0xc6, - 0x8d, 0x0a, 0x75, 0xe9, 0xea, 0x29, 0x5d, 0x42, 0x19, 0x67, 0x54, 0xc3, 0xfe, 0x6a, 0x1d, 0x4a, - 0x34, 0x21, 0x7c, 0x11, 0xf2, 0xbe, 0xd7, 0xc8, 0xad, 0xe4, 0x6e, 0xd6, 0x9c, 0xbc, 0xef, 0xf1, - 0xdb, 0x50, 0x3e, 0xf0, 0x45, 0xe0, 0xbd, 0x72, 0x5e, 0x8c, 0x18, 0x7f, 0x08, 0xf3, 0x91, 0x88, - 0x55, 0xe4, 0x9b, 0xfe, 0xeb, 0xa9, 0xf9, 0xfe, 0xb4, 0xd9, 0x5f, 0x75, 0x32, 0x82, 0xce, 0x88, - 0x1a, 0x8e, 0x73, 0xbb, 0xeb, 0x07, 0x5e, 0x24, 0xc2, 0x6d, 0x4f, 0xcf, 0x52, 0xcd, 0xc9, 0xb2, - 0xf8, 0x4d, 0xb8, 0xd0, 0x72, 0xdb, 0x87, 0x9d, 0x48, 0x0e, 0x42, 0x1c, 0x12, 0x19, 0x35, 0x4a, - 0xd4, 0xec, 0x71, 0x36, 0x7f, 0x13, 0x4a, 0x6e, 0xe0, 0x77, 0x42, 0x9a, 0x8b, 0xc5, 0x3b, 0xd6, - 0xd4, 0xb6, 0xac, 0xa1, 0x84, 0xa3, 0x05, 0xf9, 0x16, 0x2c, 0x1c, 0x89, 0x48, 0xf9, 0x6d, 0x37, - 0x20, 0x7e, 0xa3, 0x42, 0x9a, 0xf6, 0x54, 0xcd, 0xfd, 0xac, 0xa4, 0x33, 0xaa, 0xc8, 0xb7, 0x01, - 0x62, 0x5c, 0x20, 0xe4, 0xe7, 0x8d, 0x3a, 0x0d, 0xc6, 0x0f, 0xa7, 0x9a, 0xd9, 0x90, 0xa1, 0x12, - 0xa1, 0x5a, 0x6d, 0xa6, 0xe2, 0x5b, 0x73, 0x4e, 0x46, 0x99, 0xbf, 0x03, 0x45, 0x25, 0x8e, 0x55, - 0x63, 0xf1, 0x8c, 0x11, 0x4d, 0x8c, 0xec, 0x89, 0x63, 0xb5, 0x35, 0xe7, 0x90, 0x02, 0x2a, 0xe2, - 0x02, 0x68, 0x5c, 0x98, 0x41, 0xf1, 0x91, 0x1f, 0x08, 0x54, 0x44, 0x05, 0xfe, 0x01, 0x94, 0x03, - 0xf7, 0x44, 0x0e, 0x54, 0x83, 0x91, 0xea, 0x6f, 0x9c, 0xa9, 0xfa, 0x84, 0x44, 0xb7, 0xe6, 0x1c, - 0xa3, 0xc4, 0xef, 0x41, 0xc1, 0xf3, 0x8f, 0x1a, 0x4b, 0xa4, 0xbb, 0x72, 0xa6, 0xee, 0xa6, 0x7f, - 0xb4, 0x35, 0xe7, 0xa0, 0x38, 0xdf, 0x80, 0x6a, 0x4b, 0xca, 0xc3, 0x9e, 0x1b, 0x1d, 0x36, 0x38, - 0xa9, 0xfe, 0xe0, 0x4c, 0xd5, 0x75, 0x23, 0xbc, 0x35, 0xe7, 0xa4, 0x8a, 0xd8, 0x65, 0xbf, 0x2d, - 0xc3, 0xc6, 0xc5, 0x19, 0xba, 0xbc, 0xdd, 0x96, 0x21, 0x76, 0x19, 0x15, 0x50, 0x31, 0xf0, 0xc3, - 0xc3, 0xc6, 0xf2, 0x0c, 0x8a, 0xb8, 0x76, 0x50, 0x11, 0x15, 0xb0, 0xd9, 0x9e, 0xab, 0xdc, 0x23, - 0x5f, 0xbc, 0x6c, 0x5c, 0x9a, 0xa1, 0xd9, 0x9b, 0x46, 0x18, 0x9b, 0x9d, 0x28, 0xa2, 0x91, 0x64, - 0x61, 0x36, 0x2e, 0xcf, 0x60, 0x24, 0x59, 0xd3, 0x68, 0x24, 0x51, 0xe4, 0xbf, 0x07, 0x4b, 0x07, - 0xc2, 0x55, 0x83, 0x48, 0x78, 0x43, 0x98, 0xbb, 0x42, 0xd6, 0x56, 0xcf, 0x9e, 0xfb, 0x71, 0xad, - 0xad, 0x39, 0x67, 0xd2, 0x14, 0x7f, 0x1f, 0x4a, 0x81, 0xab, 0xc4, 0x71, 0xa3, 0x41, 0x36, 0xed, - 0x57, 0x38, 0x85, 0x12, 0xc7, 0x5b, 0x73, 0x8e, 0x56, 0xe1, 0xbf, 0x0d, 0x17, 0x94, 0xdb, 0x0a, - 0xc4, 0xce, 0x81, 0x11, 0x88, 0x1b, 0xbf, 0x46, 0x56, 0xde, 0x38, 0xdb, 0x9d, 0x47, 0x75, 0xb6, - 0xe6, 0x9c, 0x71, 0x33, 0xd8, 0x2a, 0x62, 0x35, 0xac, 0x19, 0x5a, 0x45, 0xf6, 0xb0, 0x55, 0xa4, - 0xc2, 0x9f, 0x40, 0x9d, 0x1e, 0x36, 0x64, 0x30, 0xe8, 0x85, 0x8d, 0xab, 0x64, 0xe1, 0xe6, 0xab, - 0x2d, 0x68, 0xf9, 0xad, 0x39, 0x27, 0xab, 0x8e, 0x93, 0x48, 0xa4, 0x23, 0x5f, 0x36, 0xae, 0xcd, - 0x30, 0x89, 0x7b, 0x46, 0x18, 0x27, 0x31, 0x51, 0xc4, 0xa5, 0xf7, 0xd2, 0xf7, 0x3a, 0x42, 0x35, - 0xbe, 0x37, 0xc3, 0xd2, 0x7b, 0x41, 0xa2, 0xb8, 0xf4, 0xb4, 0x92, 0xf5, 0x53, 0x98, 0xcf, 0x82, - 0x2b, 0xe7, 0x50, 0x8c, 0x84, 0xab, 0x81, 0xbd, 0xea, 0xd0, 0x33, 0xf2, 0x84, 0xe7, 0x2b, 0x02, - 0xf6, 0xaa, 0x43, 0xcf, 0xfc, 0x32, 0x94, 0xf5, 0x26, 0x43, 0xb8, 0x5d, 0x75, 0x0c, 0x85, 0xb2, - 0x5e, 0xe4, 0x76, 0x1a, 0x45, 0x2d, 0x8b, 0xcf, 0x28, 0xeb, 0x45, 0xb2, 0xbf, 0x13, 0x12, 0xee, - 0x56, 0x1d, 0x43, 0x59, 0xff, 0x7c, 0x17, 0x2a, 0xa6, 0x61, 0xd6, 0x5f, 0xe7, 0xa0, 0xac, 0x71, - 0x81, 0x3f, 0x80, 0x52, 0xac, 0x4e, 0x02, 0x41, 0x6d, 0x58, 0xbc, 0xf3, 0xa3, 0x19, 0xb0, 0x64, - 0xb5, 0x89, 0x0a, 0x8e, 0xd6, 0xb3, 0x1d, 0x28, 0x11, 0xcd, 0x2b, 0x50, 0x70, 0xe4, 0x4b, 0x36, - 0xc7, 0x01, 0xca, 0x7a, 0xcc, 0x59, 0x0e, 0x99, 0x9b, 0xfe, 0x11, 0xcb, 0x23, 0x73, 0x4b, 0xb8, - 0x9e, 0x88, 0x58, 0x81, 0x2f, 0x40, 0x2d, 0x19, 0xdd, 0x98, 0x15, 0x39, 0x83, 0xf9, 0xcc, 0xbc, - 0xc5, 0xac, 0x64, 0xfd, 0x6f, 0x11, 0x8a, 0xb8, 0x8c, 0xf9, 0x6b, 0xb0, 0xa0, 0xdc, 0xa8, 0x23, - 0x74, 0x24, 0xb3, 0x9d, 0x6c, 0x81, 0xa3, 0x4c, 0xfe, 0x41, 0xd2, 0x87, 0x3c, 0xf5, 0xe1, 0x87, - 0xaf, 0x84, 0x87, 0x91, 0x1e, 0x64, 0x36, 0xd3, 0xc2, 0x6c, 0x9b, 0xe9, 0x23, 0xa8, 0x22, 0x2a, - 0x35, 0xfd, 0x9f, 0x0a, 0x1a, 0xfa, 0xc5, 0x3b, 0xb7, 0x5e, 0xfd, 0xc9, 0x6d, 0xa3, 0xe1, 0xa4, - 0xba, 0x7c, 0x1b, 0x6a, 0x6d, 0x37, 0xf2, 0xa8, 0x31, 0x34, 0x5b, 0x8b, 0x77, 0x5e, 0x7f, 0xb5, - 0xa1, 0x8d, 0x44, 0xc5, 0x19, 0x6a, 0xf3, 0x1d, 0xa8, 0x7b, 0x22, 0x6e, 0x47, 0x7e, 0x9f, 0x50, - 0x4a, 0x6f, 0xa9, 0x3f, 0x7e, 0xb5, 0xb1, 0xcd, 0xa1, 0x92, 0x93, 0xb5, 0xc0, 0xaf, 0x41, 0x2d, - 0x4a, 0x61, 0xaa, 0x42, 0xfb, 0xfc, 0x90, 0x61, 0xbf, 0x03, 0xd5, 0xa4, 0x3f, 0x7c, 0x1e, 0xaa, - 0xf8, 0xfb, 0x4c, 0x86, 0x82, 0xcd, 0xe1, 0xdc, 0x22, 0xd5, 0xec, 0xb9, 0x41, 0xc0, 0x72, 0x7c, - 0x11, 0x00, 0xc9, 0xa7, 0xc2, 0xf3, 0x07, 0x3d, 0x96, 0xb7, 0x7f, 0x33, 0xf1, 0x96, 0x2a, 0x14, - 0x77, 0xdd, 0x0e, 0x6a, 0xcc, 0x43, 0x35, 0x41, 0x5d, 0x96, 0x43, 0xfd, 0x4d, 0x37, 0xee, 0xb6, - 0xa4, 0x1b, 0x79, 0x2c, 0xcf, 0xeb, 0x50, 0x59, 0x8b, 0xda, 0x5d, 0xff, 0x48, 0xb0, 0x82, 0x7d, - 0x1b, 0xea, 0x99, 0xf6, 0xa2, 0x09, 0xf3, 0xd1, 0x1a, 0x94, 0xd6, 0x3c, 0x4f, 0x78, 0x2c, 0x87, - 0x0a, 0xa6, 0x83, 0x2c, 0x6f, 0xbf, 0x0e, 0xb5, 0x74, 0xb4, 0x50, 0x1c, 0xf7, 0x5f, 0x36, 0x87, - 0x4f, 0xc8, 0x66, 0x39, 0xf4, 0xca, 0xed, 0x30, 0xf0, 0x43, 0xc1, 0xf2, 0xd6, 0x67, 0xe4, 0xaa, - 0xfc, 0xb7, 0x46, 0x17, 0xc4, 0x8d, 0x57, 0x6d, 0x90, 0xa3, 0xab, 0xe1, 0x6a, 0xa6, 0x7f, 0x4f, - 0x7c, 0x6a, 0x5c, 0x15, 0x8a, 0x9b, 0x52, 0xc5, 0x2c, 0x67, 0xfd, 0x4f, 0x1e, 0xaa, 0xc9, 0xbe, - 0xc8, 0x19, 0x14, 0x06, 0x51, 0x60, 0x1c, 0x1a, 0x1f, 0xf9, 0x32, 0x94, 0x94, 0xaf, 0x8c, 0x1b, - 0xd7, 0x1c, 0x4d, 0x60, 0xc8, 0x95, 0x9d, 0xd9, 0x02, 0xbd, 0x1b, 0x9f, 0x2a, 0xbf, 0xe7, 0x76, - 0xc4, 0x96, 0x1b, 0x77, 0xc9, 0x1f, 0x6b, 0xce, 0x90, 0x81, 0xfa, 0x07, 0xee, 0x11, 0xfa, 0x1c, - 0xbd, 0xd7, 0xc1, 0x58, 0x96, 0xc5, 0xef, 0x42, 0x11, 0x3b, 0x68, 0x9c, 0xe6, 0xd7, 0xc7, 0x3a, - 0x8c, 0x6e, 0xb2, 0x1b, 0x09, 0x9c, 0x9e, 0x55, 0x0c, 0xa5, 0x1d, 0x12, 0xe6, 0x37, 0x60, 0x51, - 0x2f, 0xc2, 0x1d, 0x0a, 0xb2, 0xb7, 0x3d, 0x0a, 0xc6, 0x6a, 0xce, 0x18, 0x97, 0xaf, 0xe1, 0x70, - 0xba, 0x4a, 0x34, 0xaa, 0x33, 0xf8, 0x77, 0x32, 0x38, 0xab, 0x4d, 0x54, 0x71, 0xb4, 0xa6, 0x7d, - 0x1f, 0xc7, 0xd4, 0x55, 0x02, 0xa7, 0xf9, 0x61, 0xaf, 0xaf, 0x4e, 0xb4, 0xd3, 0x3c, 0x12, 0xaa, - 0xdd, 0xf5, 0xc3, 0x0e, 0xcb, 0xe9, 0x21, 0xc6, 0x49, 0x24, 0x91, 0x28, 0x92, 0x11, 0x2b, 0x58, - 0x16, 0x14, 0xd1, 0x47, 0x11, 0x24, 0x43, 0xb7, 0x27, 0xcc, 0x48, 0xd3, 0xb3, 0x75, 0x11, 0x96, - 0x26, 0xb6, 0x55, 0xeb, 0x1f, 0xcb, 0xda, 0x43, 0x50, 0x83, 0x42, 0x3a, 0xa3, 0x41, 0xd1, 0xda, - 0xb9, 0x30, 0x06, 0xad, 0x8c, 0x62, 0xcc, 0x07, 0x50, 0xc2, 0x8e, 0x25, 0x10, 0x33, 0x83, 0xfa, - 0x53, 0x14, 0x77, 0xb4, 0x16, 0x6f, 0x40, 0xa5, 0xdd, 0x15, 0xed, 0x43, 0xe1, 0x19, 0xac, 0x4f, - 0x48, 0x74, 0x9a, 0x76, 0x26, 0xca, 0xd6, 0x04, 0xb9, 0x44, 0x5b, 0x86, 0x0f, 0x7b, 0xf2, 0x73, - 0x9f, 0xe6, 0x15, 0x5d, 0x22, 0x61, 0x24, 0x6f, 0xb7, 0xd1, 0x47, 0xcc, 0xb4, 0x0d, 0x19, 0xd6, - 0x43, 0x28, 0xd1, 0xb7, 0x71, 0x25, 0xe8, 0x36, 0xeb, 0x54, 0xf1, 0xc6, 0x6c, 0x6d, 0x36, 0x4d, - 0xb6, 0xfe, 0x36, 0x0f, 0x45, 0xa4, 0xf9, 0x2d, 0x28, 0x45, 0x6e, 0xd8, 0xd1, 0x13, 0x30, 0x99, - 0x71, 0x3a, 0xf8, 0xce, 0xd1, 0x22, 0xfc, 0x81, 0x71, 0xc5, 0xfc, 0x0c, 0xce, 0x92, 0x7e, 0x31, - 0xeb, 0x96, 0xcb, 0x50, 0xea, 0xbb, 0x91, 0xdb, 0x33, 0xeb, 0x44, 0x13, 0xf6, 0xcf, 0x72, 0x50, - 0x44, 0x21, 0xbe, 0x04, 0x0b, 0x4d, 0x15, 0xf9, 0x87, 0x42, 0x75, 0x23, 0x39, 0xe8, 0x74, 0xb5, - 0x27, 0x3d, 0x16, 0x27, 0x1a, 0x6f, 0x34, 0x20, 0x28, 0x37, 0xf0, 0xdb, 0x2c, 0x8f, 0x5e, 0xb5, - 0x2e, 0x03, 0x8f, 0x15, 0xf8, 0x05, 0xa8, 0x3f, 0x0f, 0x3d, 0x11, 0xc5, 0x6d, 0x19, 0x09, 0x8f, - 0x15, 0xcd, 0xea, 0x3e, 0x64, 0x25, 0xda, 0xcb, 0xc4, 0xb1, 0xa2, 0x94, 0x86, 0x95, 0xf9, 0x45, - 0xb8, 0xb0, 0x3e, 0x9a, 0xe7, 0xb0, 0x0a, 0x62, 0xd2, 0x53, 0x11, 0xa2, 0x93, 0xb1, 0xaa, 0x76, - 0x62, 0xf9, 0xb9, 0xcf, 0x6a, 0xf8, 0x31, 0xbd, 0x4e, 0x18, 0xd8, 0xff, 0x94, 0x4b, 0x90, 0x63, - 0x01, 0x6a, 0xbb, 0x6e, 0xe4, 0x76, 0x22, 0xb7, 0x8f, 0xed, 0xab, 0x43, 0x45, 0x6f, 0x9c, 0x6f, - 0x69, 0x74, 0xd3, 0xc4, 0x1d, 0x8d, 0x8d, 0x9a, 0xb8, 0xcb, 0x0a, 0x43, 0xe2, 0x1e, 0x2b, 0xe2, - 0x37, 0x3e, 0x19, 0x48, 0x25, 0x58, 0x89, 0xb0, 0x4e, 0x7a, 0x82, 0x95, 0x91, 0xb9, 0x87, 0x88, - 0xc2, 0x2a, 0xd8, 0xe7, 0x0d, 0xf4, 0x9f, 0x96, 0x3c, 0x66, 0x55, 0x6c, 0x06, 0x0e, 0xa3, 0xf0, - 0x58, 0x0d, 0xdf, 0x3c, 0x1b, 0xf4, 0x5a, 0x02, 0xbb, 0x09, 0xf8, 0x66, 0x4f, 0x76, 0x3a, 0x81, - 0x60, 0x75, 0x1c, 0x83, 0x0c, 0xf8, 0xb2, 0x79, 0x42, 0x5a, 0x37, 0x08, 0xe4, 0x40, 0xb1, 0x05, - 0xeb, 0xeb, 0x02, 0x14, 0x31, 0x49, 0xc1, 0xb5, 0xd3, 0x45, 0x9c, 0x31, 0x6b, 0x07, 0x9f, 0xd3, - 0x15, 0x98, 0x1f, 0xae, 0x40, 0xfe, 0xbe, 0x99, 0xe9, 0xc2, 0x0c, 0x28, 0x8b, 0x86, 0xb3, 0x93, - 0xcc, 0xa1, 0xd8, 0xf3, 0x7b, 0xc2, 0x60, 0x1d, 0x3d, 0x23, 0x2f, 0xc6, 0xfd, 0x18, 0x97, 0x41, - 0xc1, 0xa1, 0x67, 0x5c, 0x35, 0x2e, 0x6e, 0x0b, 0x6b, 0x8a, 0xd6, 0x40, 0xc1, 0x49, 0x48, 0xbd, - 0x9a, 0x11, 0x95, 0x2a, 0x33, 0xac, 0x66, 0xfa, 0x7c, 0x16, 0x91, 0x86, 0x60, 0x50, 0x9d, 0x5d, - 0x3d, 0xb3, 0x49, 0x6c, 0x1a, 0x6f, 0x1c, 0x6e, 0x60, 0x55, 0x3d, 0x7a, 0x2c, 0x87, 0xb3, 0x44, - 0xcb, 0x50, 0x63, 0xd9, 0xbe, 0xef, 0x09, 0xc9, 0x0a, 0xb4, 0xc1, 0x0d, 0x3c, 0x5f, 0xb2, 0x22, - 0x46, 0x54, 0xbb, 0x9b, 0x8f, 0x58, 0xc9, 0xbe, 0x91, 0xd9, 0x6a, 0xd6, 0x06, 0x4a, 0x6a, 0x33, - 0xe4, 0x96, 0x39, 0xed, 0x65, 0x2d, 0xe1, 0xb1, 0xbc, 0xfd, 0xf6, 0x14, 0xf8, 0x5c, 0x80, 0xda, - 0xf3, 0x7e, 0x20, 0x5d, 0xef, 0x0c, 0xfc, 0x9c, 0x07, 0x18, 0x26, 0xbd, 0xd6, 0xff, 0x5d, 0x1b, - 0x6e, 0xd3, 0x18, 0x63, 0xc6, 0x72, 0x10, 0xb5, 0x05, 0x41, 0x43, 0xcd, 0x31, 0x14, 0xff, 0x08, - 0x4a, 0xf8, 0x3e, 0x6e, 0xe4, 0x09, 0x31, 0x6e, 0xcd, 0x94, 0x6a, 0xad, 0xee, 0xfb, 0xe2, 0xa5, - 0xa3, 0x15, 0xf9, 0xfd, 0x6c, 0xd8, 0xf1, 0x8a, 0x22, 0xd0, 0x50, 0x92, 0x5f, 0x07, 0x70, 0xdb, - 0xca, 0x3f, 0x12, 0x68, 0xcb, 0xac, 0xfd, 0x0c, 0x87, 0x3b, 0x50, 0xc7, 0x25, 0xd9, 0xdf, 0x89, - 0x70, 0x15, 0x37, 0xe6, 0xc9, 0xf0, 0x9b, 0xb3, 0x35, 0xef, 0xe3, 0x54, 0xd1, 0xc9, 0x1a, 0xe1, - 0xcf, 0x61, 0x5e, 0x17, 0x98, 0x8c, 0xd1, 0x05, 0x32, 0xfa, 0xd6, 0x6c, 0x46, 0x77, 0x86, 0x9a, - 0xce, 0x88, 0x99, 0xc9, 0xba, 0x51, 0xe9, 0xbc, 0x75, 0x23, 0xdc, 0x9b, 0xf7, 0x46, 0xf7, 0x66, - 0xbd, 0x05, 0x8c, 0x71, 0xb9, 0x0d, 0xf3, 0x7e, 0x3c, 0x2c, 0x5b, 0x51, 0x09, 0xa3, 0xea, 0x8c, - 0xf0, 0xac, 0x9f, 0x97, 0xa0, 0x48, 0x43, 0x38, 0x5e, 0x82, 0xda, 0x18, 0x81, 0xea, 0xdb, 0xb3, - 0x4f, 0xf5, 0xd8, 0x4a, 0x26, 0x64, 0x28, 0x64, 0x90, 0xe1, 0x23, 0x28, 0xc5, 0x32, 0x52, 0xc9, - 0xf4, 0xcf, 0xe8, 0x44, 0x4d, 0x19, 0x29, 0x47, 0x2b, 0xf2, 0x47, 0x50, 0x39, 0xf0, 0x03, 0x85, - 0x93, 0xa2, 0x07, 0xef, 0x8d, 0xd9, 0x6c, 0x3c, 0x22, 0x25, 0x27, 0x51, 0xe6, 0x4f, 0xb2, 0xce, - 0x58, 0x26, 0x4b, 0xab, 0xb3, 0x59, 0x9a, 0xe6, 0xa3, 0xb7, 0x80, 0xb5, 0xe5, 0x91, 0x88, 0x92, - 0x77, 0x8f, 0xc5, 0x89, 0xd9, 0x7c, 0x27, 0xf8, 0xdc, 0x82, 0x6a, 0xd7, 0xf7, 0x04, 0xc6, 0x2f, - 0x84, 0x31, 0x55, 0x27, 0xa5, 0xf9, 0x63, 0xa8, 0x52, 0xdc, 0x8f, 0x68, 0x57, 0x3b, 0xf7, 0xe0, - 0xeb, 0x14, 0x24, 0x31, 0x80, 0x1f, 0xa2, 0x8f, 0x3f, 0xf2, 0x55, 0x03, 0xf4, 0x87, 0x12, 0x1a, - 0x1b, 0x4c, 0xfe, 0x9e, 0x6d, 0x70, 0x5d, 0x37, 0x78, 0x9c, 0xcf, 0xef, 0xc1, 0x25, 0xe2, 0x8d, - 0x6d, 0x7e, 0xb8, 0xd4, 0xd0, 0xe8, 0xf4, 0x97, 0x18, 0x88, 0xf4, 0xdd, 0x8e, 0x78, 0xe2, 0xf7, - 0x7c, 0xd5, 0x58, 0x58, 0xc9, 0xdd, 0x2c, 0x39, 0x43, 0x86, 0x7d, 0xcf, 0xc0, 0x24, 0x6e, 0x5c, - 0x98, 0x1f, 0x26, 0x00, 0x17, 0x2b, 0xbd, 0x13, 0x7e, 0xec, 0x06, 0x81, 0x88, 0x4e, 0x74, 0x72, - 0xf9, 0xd8, 0x0d, 0x5b, 0x6e, 0xc8, 0x0a, 0xf6, 0x4d, 0x28, 0x52, 0xcf, 0x6a, 0x50, 0xd2, 0x49, - 0x08, 0x25, 0xa4, 0x26, 0x01, 0x21, 0x60, 0x7c, 0x82, 0xab, 0x80, 0xe5, 0xad, 0x7f, 0x28, 0x40, - 0x35, 0xe9, 0x03, 0x86, 0xe3, 0x87, 0xe2, 0x24, 0x09, 0xc7, 0x0f, 0xc5, 0x09, 0x45, 0x49, 0xf1, - 0xbe, 0x1f, 0xfb, 0x2d, 0x13, 0xf5, 0x55, 0x9d, 0x21, 0x03, 0x03, 0x8d, 0x97, 0xbe, 0xa7, 0xba, - 0xe4, 0xba, 0x25, 0x47, 0x13, 0xfc, 0x26, 0x5c, 0xf0, 0x5c, 0x25, 0xb6, 0xc3, 0x76, 0x30, 0xf0, - 0xc4, 0x1e, 0x6e, 0x52, 0x3a, 0x0b, 0x1f, 0x67, 0xf3, 0x9f, 0x00, 0x28, 0xbf, 0x27, 0x1e, 0xc9, - 0xa8, 0xe7, 0x2a, 0x13, 0x7a, 0xbf, 0x77, 0x3e, 0xe7, 0x5a, 0xdd, 0x4b, 0x0d, 0x38, 0x19, 0x63, - 0x68, 0x1a, 0xbf, 0x66, 0x4c, 0x57, 0xbe, 0x93, 0xe9, 0xcd, 0xd4, 0x80, 0x93, 0x31, 0x66, 0xff, - 0x0e, 0xc0, 0xf0, 0x0d, 0xbf, 0x0c, 0xfc, 0xa9, 0x0c, 0x55, 0x77, 0xad, 0xd5, 0x8a, 0xd6, 0xc5, - 0x81, 0x8c, 0xc4, 0xa6, 0x8b, 0xbb, 0xcb, 0x25, 0x58, 0x4a, 0xf9, 0x6b, 0x07, 0x4a, 0x44, 0xc8, - 0xa6, 0xa1, 0x6f, 0x76, 0x65, 0xa4, 0x74, 0xe8, 0x42, 0x8f, 0xcf, 0x9b, 0xac, 0x80, 0x3b, 0xda, - 0x76, 0x73, 0x87, 0x15, 0xed, 0x9b, 0x00, 0xc3, 0x2e, 0x51, 0x88, 0x4f, 0x4f, 0x6f, 0xdd, 0x31, - 0x01, 0x3f, 0x51, 0x77, 0xee, 0xb1, 0x9c, 0xf5, 0xf7, 0x79, 0x28, 0xe2, 0x8a, 0x37, 0xa8, 0x54, - 0x4e, 0x51, 0x69, 0x05, 0xea, 0x59, 0x77, 0xd5, 0xd3, 0x99, 0x65, 0x7d, 0x37, 0xdc, 0xc2, 0x6f, - 0x65, 0x71, 0xeb, 0x5d, 0xa8, 0xb7, 0x07, 0xb1, 0x92, 0x3d, 0x02, 0xed, 0x46, 0x81, 0xb0, 0xe1, - 0xf2, 0x44, 0xdd, 0x60, 0xdf, 0x0d, 0x06, 0xc2, 0xc9, 0x8a, 0xf2, 0xfb, 0x50, 0x3e, 0xd0, 0x13, - 0xa3, 0x2b, 0x07, 0xdf, 0x3b, 0x05, 0xd7, 0xcd, 0xe0, 0x1b, 0x61, 0xec, 0x97, 0x3f, 0xe1, 0x54, - 0x59, 0x96, 0xfd, 0x03, 0xb3, 0x5a, 0x2a, 0x50, 0x58, 0x8b, 0xdb, 0x26, 0xef, 0x14, 0x71, 0x5b, - 0x07, 0xb5, 0x1b, 0xd4, 0x04, 0x96, 0xb7, 0xfe, 0xa5, 0x02, 0x65, 0x8d, 0x73, 0x66, 0xec, 0x6a, - 0xe9, 0xd8, 0x7d, 0x02, 0x55, 0xd9, 0x17, 0x91, 0xab, 0x64, 0x64, 0x92, 0xdf, 0xfb, 0xe7, 0xc1, - 0xcd, 0xd5, 0x1d, 0xa3, 0xec, 0xa4, 0x66, 0xc6, 0xa7, 0x23, 0x3f, 0x39, 0x1d, 0xb7, 0x80, 0x25, - 0x10, 0xb9, 0x1b, 0xa1, 0x9e, 0x3a, 0x31, 0xa9, 0xcc, 0x04, 0x9f, 0xef, 0x41, 0xad, 0x2d, 0x43, - 0xcf, 0x4f, 0x13, 0xe1, 0xc5, 0x3b, 0x6f, 0x9f, 0xab, 0x85, 0x1b, 0x89, 0xb6, 0x33, 0x34, 0xc4, - 0xdf, 0x80, 0xd2, 0x11, 0xce, 0x13, 0x4d, 0xc8, 0xe9, 0xb3, 0xa8, 0x85, 0xf8, 0xa7, 0x50, 0xff, - 0x62, 0xe0, 0xb7, 0x0f, 0x77, 0xb2, 0x85, 0x96, 0x77, 0xcf, 0xd5, 0x8a, 0x4f, 0x86, 0xfa, 0x4e, - 0xd6, 0x58, 0xc6, 0x37, 0x2a, 0xbf, 0x84, 0x6f, 0x54, 0x27, 0x7d, 0xe3, 0x2a, 0x54, 0x93, 0xc9, - 0x21, 0xff, 0x08, 0x3d, 0x36, 0xc7, 0xcb, 0x90, 0xdf, 0x89, 0x58, 0xce, 0xfe, 0x36, 0x07, 0xb5, - 0x74, 0x60, 0x46, 0x8b, 0x2a, 0x0f, 0xbf, 0x18, 0xb8, 0x01, 0xcb, 0x51, 0x56, 0x20, 0x95, 0xa6, - 0x68, 0xf1, 0x7e, 0x1c, 0x09, 0x57, 0x51, 0x2d, 0x0f, 0x11, 0x59, 0xc4, 0x31, 0x2b, 0x72, 0x0e, - 0x8b, 0x86, 0xbd, 0x13, 0x69, 0xd1, 0x12, 0x26, 0x0d, 0xf8, 0x36, 0x61, 0x94, 0x35, 0x80, 0x1f, - 0x0a, 0x9d, 0x14, 0x3d, 0x93, 0x8a, 0x88, 0x2a, 0xb6, 0x65, 0x3b, 0x64, 0x35, 0xfc, 0xe6, 0x33, - 0xa9, 0xb6, 0x43, 0x06, 0xc3, 0x68, 0xb5, 0x9e, 0x7c, 0x9e, 0xa8, 0x79, 0x8a, 0x85, 0x83, 0x60, - 0x3b, 0x64, 0x0b, 0xe6, 0x85, 0xa6, 0x16, 0xd1, 0xe2, 0xc3, 0x63, 0xb7, 0x8d, 0xea, 0x17, 0xf8, - 0x22, 0x00, 0xea, 0x18, 0x9a, 0xd9, 0xff, 0x9e, 0x83, 0x7a, 0x66, 0xe0, 0x31, 0x02, 0xa6, 0x97, - 0x08, 0x67, 0x3a, 0x20, 0xfe, 0x89, 0x88, 0x95, 0x88, 0xbc, 0x04, 0xaa, 0xf6, 0x24, 0x3e, 0xe6, - 0xf1, 0x1b, 0x7b, 0xb2, 0x27, 0xa3, 0x48, 0xbe, 0x64, 0x05, 0xa4, 0x9e, 0xb8, 0xb1, 0x7a, 0x21, - 0xc4, 0x21, 0x2b, 0x62, 0xf7, 0x36, 0x06, 0x51, 0x24, 0x42, 0xcd, 0x28, 0x51, 0x83, 0xc4, 0xb1, - 0xa6, 0xca, 0x68, 0x14, 0x85, 0x09, 0x0b, 0x59, 0x85, 0x33, 0x98, 0x37, 0xd2, 0x9a, 0x53, 0x45, - 0x01, 0x14, 0xd7, 0x64, 0x0d, 0x93, 0x47, 0x9d, 0x7c, 0xed, 0x1c, 0x6c, 0xba, 0x27, 0xf1, 0x5a, - 0x47, 0x32, 0x18, 0x67, 0x3e, 0x93, 0x2f, 0x59, 0xdd, 0x1a, 0x00, 0x0c, 0xc3, 0x52, 0x0c, 0xc7, - 0xd1, 0xbf, 0xd2, 0xf2, 0xa8, 0xa1, 0xf8, 0x0e, 0x00, 0x3e, 0x91, 0x64, 0x12, 0x93, 0x9f, 0x23, - 0x56, 0x20, 0x3d, 0x27, 0x63, 0xc2, 0xfa, 0x7d, 0xa8, 0xa5, 0x2f, 0x30, 0xbb, 0xa2, 0x5d, 0x3d, - 0xfd, 0x6c, 0x42, 0xe2, 0xde, 0xe8, 0x87, 0x9e, 0x38, 0xa6, 0xf5, 0x5e, 0x72, 0x34, 0x81, 0xad, - 0xec, 0xfa, 0x9e, 0x27, 0xc2, 0xa4, 0x88, 0xad, 0xa9, 0x69, 0x27, 0x86, 0xc5, 0xa9, 0x27, 0x86, - 0xd6, 0xef, 0x42, 0x3d, 0x13, 0x37, 0x9f, 0xda, 0xed, 0x4c, 0xc3, 0xf2, 0xa3, 0x0d, 0xbb, 0x06, - 0x35, 0x69, 0x82, 0xdf, 0x98, 0x40, 0xbb, 0xe6, 0x0c, 0x19, 0xb8, 0xa9, 0x94, 0x74, 0xd7, 0xc6, - 0x63, 0xdd, 0x47, 0x50, 0xc6, 0xc4, 0x6f, 0x90, 0x1c, 0xb7, 0xce, 0x18, 0x4f, 0x36, 0x49, 0x67, - 0x6b, 0xce, 0x31, 0xda, 0xfc, 0x03, 0x28, 0x28, 0xb7, 0x63, 0x6a, 0x40, 0x3f, 0x9a, 0xcd, 0xc8, - 0x9e, 0xdb, 0xd9, 0x9a, 0x73, 0x50, 0x8f, 0x3f, 0x81, 0x6a, 0xdb, 0xa4, 0xed, 0x06, 0xac, 0x66, - 0x0c, 0x47, 0x93, 0x64, 0x7f, 0x6b, 0xce, 0x49, 0x2d, 0xf0, 0x8f, 0xa0, 0x88, 0x3b, 0x3b, 0xa1, - 0xed, 0xcc, 0x61, 0x36, 0x2e, 0x97, 0xad, 0x39, 0x87, 0x34, 0xd7, 0x2b, 0x50, 0x22, 0x6c, 0xb4, - 0x1a, 0x50, 0xd6, 0x7d, 0x1d, 0x1f, 0x39, 0xeb, 0x0a, 0x14, 0xf6, 0xdc, 0x0e, 0x46, 0x57, 0xbe, - 0x17, 0x9b, 0x6c, 0x11, 0x1f, 0xad, 0xd7, 0x86, 0x25, 0x88, 0x6c, 0x75, 0x2b, 0x37, 0x52, 0xdd, - 0xb2, 0xca, 0x50, 0xc4, 0x2f, 0x5a, 0xd7, 0xce, 0x8a, 0xd4, 0xac, 0xab, 0x18, 0xd3, 0x29, 0x71, - 0x3c, 0xad, 0x70, 0x67, 0x2d, 0xc1, 0x85, 0xb1, 0x73, 0x2a, 0xab, 0x62, 0x02, 0x4a, 0x6b, 0x01, - 0xea, 0x99, 0x93, 0x07, 0xeb, 0x06, 0x54, 0x93, 0x73, 0x09, 0x0c, 0x8c, 0xfd, 0x58, 0x57, 0x54, - 0x4c, 0xa3, 0x52, 0xda, 0x52, 0x50, 0xd6, 0x47, 0x3b, 0x7c, 0x3d, 0x3d, 0x8a, 0xcd, 0xcd, 0x70, - 0x0e, 0xa0, 0x95, 0xcc, 0x29, 0x4a, 0x72, 0x1e, 0x6b, 0xdf, 0x48, 0xcf, 0x62, 0x92, 0xf4, 0x9d, - 0xf6, 0xee, 0xbd, 0x48, 0x08, 0x9d, 0x9a, 0x53, 0xc4, 0x9b, 0xb7, 0x0f, 0xa0, 0xba, 0x2b, 0xe3, - 0x71, 0x94, 0xae, 0x40, 0x61, 0x4f, 0xf6, 0xf5, 0x26, 0xbf, 0x2e, 0x15, 0x6d, 0xf2, 0x1a, 0x94, - 0x0f, 0x94, 0x2e, 0x1c, 0x38, 0x7e, 0xa7, 0xab, 0x74, 0x51, 0x68, 0x3b, 0x0c, 0x45, 0xc4, 0x4a, - 0x88, 0x94, 0x8e, 0xe8, 0x07, 0x6e, 0x5b, 0xb0, 0x32, 0x22, 0x25, 0xf1, 0x1f, 0xf9, 0x51, 0xac, - 0x58, 0xc5, 0x7e, 0x07, 0xf1, 0xd5, 0xef, 0x10, 0x44, 0xd2, 0x03, 0x99, 0x9a, 0x43, 0xb0, 0x23, - 0x72, 0x43, 0x84, 0x08, 0xfd, 0x54, 0xdb, 0xd7, 0x87, 0xeb, 0xf4, 0x81, 0xbc, 0xfd, 0x02, 0x16, - 0x46, 0x0e, 0xdd, 0xf9, 0x32, 0xb0, 0x11, 0x06, 0x36, 0x74, 0x8e, 0x5f, 0x81, 0x8b, 0x23, 0xdc, - 0xa7, 0xbe, 0xe7, 0x51, 0xe9, 0x63, 0xfc, 0x45, 0xd2, 0x9d, 0xf5, 0x1a, 0x54, 0xda, 0x7a, 0x08, - 0xed, 0x5d, 0x58, 0xa0, 0x31, 0x7d, 0x2a, 0x94, 0xbb, 0x13, 0x06, 0x27, 0xbf, 0xf4, 0xcd, 0x08, - 0xfb, 0x75, 0x28, 0x51, 0x09, 0x12, 0x9d, 0xe7, 0x20, 0x92, 0x3d, 0xb2, 0x55, 0x72, 0xe8, 0x19, - 0xad, 0x2b, 0x69, 0x60, 0x2c, 0xaf, 0xa4, 0xfd, 0xe7, 0x35, 0xa8, 0xac, 0xb5, 0xdb, 0x72, 0x10, - 0xaa, 0x89, 0x2f, 0x4f, 0xab, 0x72, 0xdd, 0x87, 0xb2, 0x7b, 0xe4, 0x2a, 0x37, 0x32, 0x6b, 0x7e, - 0x7c, 0x47, 0x37, 0xb6, 0x56, 0xd7, 0x48, 0xc8, 0x31, 0xc2, 0xa8, 0xd6, 0x96, 0xe1, 0x81, 0xdf, - 0x31, 0xcb, 0xfc, 0x34, 0xb5, 0x0d, 0x12, 0x72, 0x8c, 0x30, 0xaa, 0x19, 0x98, 0x2a, 0x9d, 0xa9, - 0xa6, 0xd7, 0x6a, 0x8a, 0x4a, 0xb7, 0xa1, 0xe8, 0x87, 0x07, 0xd2, 0xdc, 0x89, 0xb9, 0x7a, 0x8a, - 0xd2, 0x76, 0x78, 0x20, 0x1d, 0x12, 0xb4, 0x04, 0x94, 0x75, 0x83, 0xf9, 0x7b, 0x50, 0xa2, 0x93, - 0x06, 0x53, 0xdb, 0x9d, 0xe9, 0x12, 0x83, 0xd6, 0xe0, 0x97, 0x93, 0xc2, 0x35, 0x8d, 0x17, 0xf2, - 0x89, 0x5c, 0xaf, 0x26, 0x43, 0x66, 0xfd, 0x57, 0x0e, 0xca, 0xba, 0x87, 0xfc, 0x06, 0x2c, 0x8a, - 0x10, 0x97, 0x66, 0x02, 0x44, 0x66, 0x4d, 0x8e, 0x71, 0x31, 0x14, 0x32, 0x1c, 0xd1, 0x1a, 0x74, - 0x4c, 0xd6, 0x96, 0x65, 0xf1, 0x77, 0xe1, 0x8a, 0x26, 0x77, 0x23, 0x11, 0x89, 0x40, 0xb8, 0xb1, - 0xd8, 0xe8, 0xba, 0x61, 0x28, 0x02, 0xb3, 0x2d, 0x9d, 0xf6, 0x9a, 0xdb, 0x30, 0xaf, 0x5f, 0x35, - 0xfb, 0x6e, 0x5b, 0xc4, 0xa6, 0x10, 0x3f, 0xc2, 0xe3, 0x3f, 0x86, 0x12, 0xdd, 0x4c, 0x6a, 0x78, - 0x67, 0x3b, 0x9f, 0x96, 0xb2, 0x64, 0x8a, 0x9b, 0x6b, 0x00, 0x7a, 0x36, 0x30, 0x86, 0x37, 0x60, - 0xf2, 0xfd, 0x33, 0xa7, 0x8f, 0xb2, 0x91, 0x8c, 0x12, 0xb6, 0xcf, 0x13, 0x81, 0x40, 0x7c, 0x40, - 0xcc, 0xa4, 0xce, 0x17, 0x9c, 0x11, 0x9e, 0xf5, 0x65, 0x01, 0x8a, 0x38, 0x91, 0x28, 0xdc, 0x95, - 0x3d, 0x91, 0x16, 0x88, 0xb4, 0xd3, 0x8e, 0xf0, 0x70, 0x63, 0x76, 0xf5, 0xd9, 0x5b, 0x2a, 0xa6, - 0xeb, 0x34, 0xe3, 0x6c, 0x94, 0xec, 0x47, 0xf2, 0xc0, 0x0f, 0x86, 0x92, 0x66, 0x0b, 0x1f, 0x63, - 0xf3, 0xb7, 0xe1, 0x72, 0xcf, 0x8d, 0x0e, 0x85, 0x22, 0xf4, 0x79, 0x21, 0xa3, 0xc3, 0x18, 0x47, - 0x6e, 0xdb, 0x33, 0x95, 0x85, 0x53, 0xde, 0x22, 0x1c, 0x7b, 0xe2, 0xc8, 0x27, 0xc9, 0x2a, 0x49, - 0xa6, 0x34, 0x3a, 0x87, 0xab, 0x87, 0xa6, 0x69, 0x6c, 0xe9, 0x9c, 0x66, 0x8c, 0x8b, 0xbb, 0xbf, - 0x3e, 0x87, 0x8f, 0xb7, 0x3d, 0x2a, 0x76, 0xd4, 0x9c, 0x21, 0x83, 0x5f, 0x07, 0xe8, 0xb8, 0x4a, - 0xbc, 0x74, 0x4f, 0x9e, 0x47, 0x41, 0x43, 0xe8, 0x12, 0xe2, 0x90, 0x83, 0x89, 0x4a, 0x20, 0xdb, - 0x6e, 0xd0, 0x54, 0x32, 0x72, 0x3b, 0x62, 0xd7, 0x55, 0xdd, 0x46, 0x47, 0x27, 0x2a, 0xe3, 0x7c, - 0x6c, 0x2d, 0xe6, 0xe3, 0x9f, 0xca, 0x50, 0x34, 0xba, 0xba, 0xb5, 0x09, 0x6d, 0xef, 0x00, 0x0c, - 0x27, 0x10, 0x51, 0x7b, 0x8d, 0xca, 0x94, 0x6c, 0x0e, 0x23, 0xbd, 0x5d, 0x11, 0x7a, 0x7e, 0xd8, - 0xd9, 0x34, 0x73, 0xc6, 0x72, 0xc8, 0x6c, 0x2a, 0x37, 0x52, 0xc2, 0x4b, 0x99, 0x14, 0x81, 0x13, - 0x25, 0x3c, 0x56, 0xb0, 0x7f, 0x91, 0x83, 0x7a, 0xe6, 0x90, 0xee, 0x57, 0x78, 0xb0, 0x88, 0x7b, - 0x20, 0xae, 0x55, 0x1c, 0x10, 0x3d, 0x9f, 0x29, 0x8d, 0xc3, 0x65, 0xce, 0x10, 0xf1, 0xad, 0xce, - 0xd8, 0x32, 0x9c, 0xef, 0x74, 0xa8, 0x68, 0xdf, 0x31, 0x39, 0x6c, 0x1d, 0x2a, 0xcf, 0xc3, 0xc3, - 0x50, 0xbe, 0x0c, 0xf5, 0x5e, 0x48, 0x27, 0xc5, 0x23, 0xb5, 0xf1, 0xe4, 0x30, 0xb7, 0x60, 0xff, - 0x45, 0x71, 0xec, 0x52, 0xc5, 0x43, 0x28, 0xeb, 0x98, 0x8e, 0xc2, 0x8d, 0xc9, 0x53, 0xf0, 0xac, - 0xb0, 0xa9, 0xc3, 0x66, 0x58, 0x8e, 0x51, 0xc6, 0x60, 0x2b, 0xbd, 0x39, 0x94, 0x9f, 0x5a, 0x2f, - 0x1e, 0x31, 0x94, 0x40, 0xd0, 0xc8, 0xe5, 0xb9, 0xd4, 0x82, 0xf5, 0x27, 0x39, 0x58, 0x9e, 0x26, - 0x82, 0xb1, 0x4f, 0x6b, 0xe4, 0x6e, 0x43, 0x42, 0xf2, 0xe6, 0xd8, 0x95, 0xbd, 0x3c, 0xf5, 0xe6, - 0xf6, 0x39, 0x1b, 0x31, 0x7a, 0x81, 0xcf, 0xfe, 0x2a, 0x07, 0x4b, 0x13, 0x7d, 0xce, 0x84, 0x13, - 0x00, 0x65, 0xed, 0x59, 0xfa, 0x28, 0x3e, 0x3d, 0x1c, 0xd5, 0x45, 0x36, 0xc2, 0xf3, 0x58, 0x9f, - 0x36, 0x6d, 0xea, 0x0b, 0x9f, 0xac, 0x88, 0x71, 0x00, 0xce, 0x1a, 0xe2, 0x64, 0x47, 0xb0, 0x12, - 0xe6, 0x39, 0x3a, 0xa0, 0x31, 0x9c, 0x32, 0xe5, 0x50, 0xa2, 0xd7, 0x0f, 0x30, 0xd7, 0xaa, 0xd0, - 0x11, 0xff, 0xa0, 0x1f, 0xf8, 0x6d, 0x24, 0xab, 0xb6, 0x03, 0x17, 0xa7, 0xb4, 0x9b, 0x5a, 0xb2, - 0x6f, 0x5a, 0xb5, 0x08, 0xb0, 0xb9, 0x9f, 0xb4, 0x85, 0xe5, 0x30, 0xd5, 0xdc, 0xdc, 0xdf, 0xa0, - 0x64, 0xd3, 0x1c, 0xa0, 0xe9, 0x35, 0xb1, 0x8f, 0xd9, 0x49, 0xcc, 0x0a, 0xf6, 0x03, 0xb8, 0xb4, - 0xd7, 0x8d, 0x84, 0xeb, 0x6d, 0x0a, 0xd1, 0x0f, 0xd0, 0xd9, 0xdc, 0x93, 0x40, 0xba, 0xde, 0x94, - 0x32, 0xdf, 0x32, 0x94, 0x5c, 0xcf, 0x8b, 0xf4, 0xf8, 0xd6, 0x1c, 0x4d, 0xd8, 0x9f, 0xc1, 0x65, - 0x6d, 0x40, 0x7f, 0xe5, 0x93, 0x81, 0x18, 0x88, 0x87, 0xa1, 0x8a, 0x4e, 0x74, 0x19, 0x37, 0x29, - 0x8f, 0x6b, 0x19, 0x63, 0x6e, 0x82, 0x4f, 0x38, 0x40, 0x4f, 0x29, 0xc2, 0xa6, 0xb4, 0xfd, 0x59, - 0x72, 0xf8, 0x67, 0xed, 0xc3, 0x82, 0x1e, 0xa9, 0xa4, 0x91, 0x0f, 0x61, 0x31, 0x4e, 0xaf, 0xef, - 0x66, 0x36, 0x84, 0xf1, 0xfd, 0xbc, 0x39, 0x22, 0xe4, 0x8c, 0x29, 0xd9, 0x7f, 0x56, 0x02, 0xd8, - 0x49, 0xaf, 0xc0, 0x4e, 0xc1, 0x85, 0x69, 0x11, 0xcb, 0xc4, 0xf1, 0x43, 0xe1, 0xdc, 0xc7, 0x0f, - 0xef, 0xa6, 0x41, 0xb1, 0x2e, 0x71, 0x8d, 0xdf, 0x31, 0x1c, 0xb6, 0x69, 0x2c, 0x14, 0x1e, 0x3d, - 0xb6, 0x2e, 0x8d, 0x1f, 0x5b, 0xaf, 0x4c, 0xde, 0x71, 0x19, 0x03, 0xac, 0x61, 0x8a, 0x59, 0x19, - 0x49, 0x31, 0x2d, 0xa8, 0xe2, 0xa8, 0xcb, 0x30, 0x38, 0x49, 0xaa, 0xdc, 0x09, 0xcd, 0xef, 0x42, - 0x49, 0xd1, 0xa5, 0xe1, 0x2a, 0xad, 0xaf, 0x57, 0x8c, 0xb1, 0x96, 0x45, 0xf4, 0xf3, 0x63, 0x73, - 0x31, 0x45, 0x6f, 0x37, 0x55, 0x27, 0xc3, 0xe1, 0xab, 0xc0, 0xfd, 0x30, 0x56, 0x6e, 0x10, 0x08, - 0x6f, 0xfd, 0x64, 0x53, 0x1c, 0xb8, 0x83, 0x40, 0xd1, 0x16, 0x57, 0x75, 0xa6, 0xbc, 0xb1, 0xbf, - 0x1d, 0x5e, 0xc8, 0xaa, 0x41, 0xa9, 0xe5, 0xc6, 0x7e, 0x5b, 0x1f, 0xfd, 0x9a, 0xfd, 0x53, 0x27, - 0x02, 0x4a, 0x7a, 0x92, 0xe5, 0x31, 0xe4, 0x8f, 0x05, 0x06, 0xf7, 0x8b, 0x00, 0xc3, 0x2b, 0xce, - 0xac, 0x88, 0xcb, 0x2c, 0x99, 0x09, 0x7d, 0xf2, 0x4b, 0xaa, 0x54, 0x87, 0xf0, 0xd2, 0x3b, 0x35, - 0x15, 0xfc, 0x02, 0xc1, 0x38, 0xab, 0xa2, 0x4c, 0x28, 0x95, 0xd0, 0x95, 0x17, 0xda, 0x6b, 0x19, - 0xa0, 0x99, 0xe4, 0xc6, 0x26, 0xab, 0x63, 0x54, 0x9e, 0x18, 0xd5, 0xa5, 0x93, 0x98, 0xf2, 0x91, - 0x79, 0x5c, 0x84, 0xa3, 0x2f, 0xd8, 0x02, 0xb6, 0x68, 0xb8, 0x08, 0xd8, 0x22, 0x9a, 0x42, 0x08, - 0x6c, 0xb9, 0xb1, 0x60, 0xcb, 0xf6, 0x5f, 0x0e, 0x7b, 0xf9, 0x66, 0x1a, 0x3c, 0xcf, 0xe2, 0x1f, - 0xa7, 0x85, 0xd7, 0x0f, 0x61, 0x29, 0x12, 0x5f, 0x0c, 0xfc, 0x91, 0x3b, 0x95, 0x85, 0xb3, 0x4f, - 0x0d, 0x27, 0x35, 0xec, 0x23, 0x58, 0x4a, 0x88, 0x17, 0xbe, 0xea, 0x52, 0x4e, 0xcb, 0xef, 0x66, - 0x2e, 0x7d, 0xe6, 0x4c, 0x34, 0x77, 0x8a, 0xc9, 0xe1, 0x25, 0xcf, 0xb4, 0x96, 0x98, 0x9f, 0xa1, - 0x96, 0x68, 0xff, 0x67, 0x39, 0x93, 0xd6, 0xea, 0x74, 0xc2, 0x4b, 0xd3, 0x89, 0x49, 0xa4, 0x1a, - 0x96, 0x07, 0xf3, 0xe7, 0x29, 0x0f, 0x4e, 0x3b, 0x63, 0x7b, 0x1f, 0x63, 0x45, 0x72, 0xbd, 0xfd, - 0x19, 0x4a, 0x9f, 0x23, 0xb2, 0x7c, 0x9d, 0x8e, 0x17, 0xdc, 0xa6, 0x3e, 0x00, 0x2e, 0x4d, 0xbd, - 0x82, 0x9d, 0x3d, 0x47, 0x30, 0x92, 0x4e, 0x46, 0x2b, 0xb3, 0x50, 0xcb, 0xd3, 0x16, 0x2a, 0x66, - 0x76, 0x66, 0x09, 0xa7, 0xb4, 0xae, 0x14, 0xeb, 0xe7, 0xc4, 0x3c, 0xdd, 0x9d, 0xae, 0x3a, 0x13, - 0x7c, 0x04, 0xf5, 0xde, 0x20, 0x50, 0xbe, 0x29, 0x86, 0x6a, 0x62, 0xfc, 0x5f, 0x02, 0xb5, 0xc9, - 0x7f, 0x09, 0x7c, 0x08, 0x10, 0x0b, 0x74, 0xdf, 0x4d, 0xbf, 0xad, 0xcc, 0x31, 0xf1, 0xf5, 0xd3, - 0xfa, 0x66, 0x4a, 0xb8, 0x19, 0x0d, 0x6c, 0x7f, 0xcf, 0x3d, 0xde, 0xc0, 0xa8, 0xd3, 0x9c, 0x67, - 0xa5, 0xf4, 0x38, 0x7c, 0x2d, 0x4e, 0xc2, 0xd7, 0x5d, 0x28, 0xc5, 0x6d, 0xd9, 0x17, 0x74, 0xcd, - 0xf9, 0xf4, 0xf9, 0x5d, 0x6d, 0xa2, 0x90, 0xa3, 0x65, 0xa9, 0x78, 0x82, 0x7b, 0x94, 0x8c, 0xe8, - 0x82, 0x73, 0xcd, 0x49, 0x48, 0xcb, 0x83, 0xb2, 0x29, 0x76, 0x4e, 0x49, 0x55, 0xa9, 0x4e, 0x92, - 0xcf, 0x5c, 0x70, 0x4a, 0x2f, 0x12, 0x15, 0xb2, 0x17, 0x89, 0x56, 0xa0, 0x1e, 0x65, 0x0a, 0xf8, - 0xe6, 0xf6, 0x58, 0x86, 0x65, 0x7f, 0x0a, 0x25, 0x6a, 0x0f, 0x6e, 0xd8, 0x7a, 0x28, 0x75, 0xcc, - 0x86, 0x0d, 0x67, 0x39, 0xbe, 0x0c, 0x2c, 0x16, 0x6a, 0xe7, 0x60, 0xaf, 0x2b, 0x9a, 0x6e, 0x4f, - 0x10, 0x52, 0xe5, 0x79, 0x03, 0x96, 0xb5, 0x6c, 0x3c, 0xfa, 0x86, 0x22, 0x8b, 0xc0, 0x6f, 0x45, - 0x6e, 0x74, 0xc2, 0x8a, 0xf6, 0x87, 0x74, 0xdc, 0x94, 0x38, 0x4d, 0x3d, 0xfd, 0x37, 0x8a, 0xc6, - 0x46, 0x4f, 0x44, 0x08, 0xb6, 0xfa, 0x30, 0xd0, 0xc4, 0xfa, 0xfa, 0x0a, 0x03, 0x05, 0xe4, 0xac, - 0x60, 0xbf, 0xc0, 0xd0, 0x70, 0xb8, 0x35, 0xfd, 0xca, 0xd6, 0x94, 0xbd, 0x9e, 0x09, 0x8d, 0x46, - 0xef, 0x2c, 0xe4, 0x66, 0xbd, 0xb3, 0x60, 0x3f, 0x86, 0x0b, 0xce, 0x28, 0xb0, 0xf2, 0x77, 0xa1, - 0x22, 0xfb, 0x59, 0x3b, 0xaf, 0xf2, 0xbd, 0x44, 0xdc, 0xfe, 0xab, 0x1c, 0xcc, 0x6f, 0x87, 0x4a, - 0x44, 0xa1, 0x1b, 0x3c, 0x0a, 0xdc, 0x0e, 0x7f, 0x27, 0x41, 0xa2, 0xe9, 0xb9, 0x64, 0x56, 0x76, - 0x14, 0x94, 0x9e, 0x99, 0xa2, 0x1e, 0xbf, 0x04, 0x4b, 0xc2, 0xf3, 0x95, 0x8c, 0x74, 0x40, 0x98, - 0x5c, 0x1d, 0x59, 0x06, 0xa6, 0xd9, 0x4d, 0x72, 0xfb, 0x3d, 0x3d, 0xcd, 0x0d, 0x58, 0x1e, 0xe1, - 0x26, 0xd1, 0x5e, 0xde, 0xfe, 0x8f, 0x34, 0x0a, 0xd9, 0x37, 0x57, 0x47, 0x22, 0x29, 0xd5, 0xb0, - 0x68, 0xab, 0xa9, 0xcc, 0x1f, 0x93, 0xf2, 0x33, 0xfc, 0x31, 0xe9, 0xc3, 0xe1, 0x1f, 0x93, 0x34, - 0xdc, 0xbf, 0x36, 0x75, 0x0f, 0xa1, 0x13, 0x6f, 0x13, 0xa8, 0x36, 0x45, 0xe6, 0x5f, 0x4a, 0x6f, - 0x99, 0xec, 0xa4, 0x38, 0x4b, 0x5c, 0xa5, 0x8f, 0xfc, 0xee, 0x8f, 0x5f, 0x88, 0x9d, 0xed, 0x66, - 0xca, 0x44, 0x3c, 0x05, 0xe7, 0x8e, 0xa7, 0x1e, 0x8c, 0x25, 0x02, 0xd5, 0xa9, 0x75, 0x9a, 0x33, - 0xfe, 0xb5, 0xf3, 0x00, 0x2a, 0x5d, 0x3f, 0x56, 0x32, 0x3a, 0xa1, 0x50, 0x65, 0xf2, 0xe6, 0x7b, - 0x66, 0xb4, 0xb6, 0xb4, 0x20, 0x5d, 0x13, 0x48, 0xb4, 0xac, 0x0e, 0xc0, 0x70, 0x14, 0x27, 0xd0, - 0xe4, 0x3b, 0xfc, 0x4b, 0xec, 0x32, 0x94, 0xe3, 0x41, 0x6b, 0x58, 0x85, 0x37, 0x94, 0x75, 0x0c, - 0xd6, 0xc4, 0x4e, 0xbc, 0x2b, 0x22, 0xdd, 0x3e, 0x44, 0xd7, 0xa4, 0x5a, 0x6f, 0x3e, 0x9f, 0xd2, - 0xfc, 0xc3, 0xec, 0xf4, 0x68, 0x17, 0x5a, 0x39, 0x65, 0x8c, 0x53, 0xcb, 0x99, 0x79, 0xb2, 0xee, - 0x43, 0x3d, 0xd3, 0x75, 0x44, 0xc8, 0x41, 0xe8, 0xc9, 0xa4, 0x18, 0x88, 0xcf, 0xfa, 0xb6, 0xbe, - 0x97, 0x94, 0x03, 0xe9, 0xf9, 0xd6, 0x2f, 0x72, 0xb0, 0x38, 0xea, 0x2e, 0x54, 0x16, 0xd5, 0x60, - 0xb4, 0x13, 0x78, 0x99, 0xfc, 0x95, 0xf1, 0x0b, 0x50, 0xdf, 0xd5, 0xf1, 0x1c, 0x31, 0x96, 0xf0, - 0xd5, 0x96, 0xec, 0x09, 0xb6, 0x92, 0xbd, 0xe7, 0xfc, 0x26, 0x22, 0xa9, 0x2e, 0x15, 0xb3, 0x3e, - 0xaf, 0x99, 0x9b, 0x61, 0x5f, 0xe6, 0xf9, 0x42, 0x26, 0x8b, 0xfa, 0x59, 0x9e, 0x2f, 0xc3, 0x85, - 0xf5, 0x41, 0xe8, 0x05, 0xc2, 0x4b, 0xb9, 0x7f, 0x93, 0xe5, 0xa6, 0xf9, 0xd2, 0x97, 0x98, 0xa2, - 0xd5, 0x9a, 0x83, 0x96, 0xc9, 0x95, 0xfe, 0xa0, 0xc8, 0x2f, 0xc3, 0x92, 0x91, 0x1a, 0x06, 0x5b, - 0xec, 0x0f, 0x8b, 0xfc, 0x22, 0x2c, 0xae, 0xe9, 0x31, 0x33, 0x0d, 0x65, 0x7f, 0x54, 0xc4, 0x26, - 0xd0, 0x29, 0xd9, 0x1f, 0x93, 0x9d, 0xb4, 0x2a, 0xc3, 0xfe, 0xb4, 0x78, 0xeb, 0xef, 0x72, 0xb0, - 0x38, 0x0a, 0x91, 0x18, 0xf2, 0x05, 0x32, 0xec, 0x28, 0x7d, 0xd5, 0x7a, 0x01, 0x6a, 0x71, 0x57, - 0x46, 0x8a, 0x48, 0x2a, 0x52, 0x87, 0x74, 0x98, 0xa5, 0xf3, 0x49, 0x5d, 0xbd, 0xd2, 0x57, 0x00, - 0x94, 0xdb, 0x61, 0x75, 0x1c, 0x11, 0x0f, 0xbf, 0x55, 0x4c, 0xc3, 0x57, 0x3a, 0x54, 0x4b, 0x0e, - 0x2d, 0x58, 0x19, 0x45, 0x07, 0x51, 0xa0, 0xc3, 0x58, 0xd1, 0x73, 0xfd, 0x40, 0xdf, 0xa9, 0xec, - 0x77, 0x31, 0x55, 0xac, 0x69, 0xae, 0xfc, 0xdc, 0xd7, 0xb7, 0x17, 0xcd, 0x86, 0xe4, 0x61, 0x3b, - 0xd2, 0xb9, 0x66, 0x62, 0xfd, 0xd6, 0xbf, 0x7d, 0x73, 0x3d, 0xf7, 0xf5, 0x37, 0xd7, 0x73, 0xff, - 0xfd, 0xcd, 0xf5, 0xdc, 0x57, 0xdf, 0x5e, 0x9f, 0xfb, 0xfa, 0xdb, 0xeb, 0x73, 0x3f, 0xff, 0xf6, - 0xfa, 0xdc, 0xa7, 0x6c, 0xfc, 0xef, 0x98, 0xad, 0x32, 0x79, 0xf1, 0xdd, 0xff, 0x0f, 0x00, 0x00, - 0xff, 0xff, 0xfa, 0x38, 0x64, 0x5e, 0xa9, 0x39, 0x00, 0x00, + 0x28, 0x72, 0x81, 0x00, 0xce, 0x77, 0x6f, 0x81, 0x13, 0x20, 0xb7, 0x04, 0xd8, 0xdc, 0x73, 0xc8, + 0x25, 0x48, 0x02, 0xe4, 0x1a, 0x20, 0x48, 0x0e, 0xf1, 0x71, 0x81, 0x00, 0x49, 0x60, 0x1f, 0x73, + 0x08, 0x90, 0x73, 0x0e, 0xc1, 0x7b, 0x55, 0xdd, 0xd3, 0xf3, 0x21, 0x35, 0xf4, 0xee, 0x69, 0xfa, + 0xbd, 0x7e, 0xef, 0xf5, 0xab, 0xaa, 0x57, 0xef, 0x57, 0x35, 0xf0, 0xfa, 0xe0, 0xa8, 0x7b, 0x27, + 0xf0, 0xdb, 0x77, 0x06, 0xed, 0x3b, 0x7d, 0xe9, 0x89, 0xe0, 0xce, 0x20, 0x92, 0x4a, 0xc6, 0x1a, + 0x88, 0xd7, 0x08, 0xe2, 0x8b, 0x6e, 0x78, 0xaa, 0x4e, 0x07, 0x62, 0x8d, 0xb0, 0xd6, 0x6b, 0x5d, + 0x29, 0xbb, 0x81, 0xd0, 0xa4, 0xed, 0xe1, 0xe1, 0x9d, 0x58, 0x45, 0xc3, 0x8e, 0xd2, 0xc4, 0xf6, + 0x3f, 0x15, 0xe1, 0x6a, 0xab, 0xef, 0x46, 0x6a, 0x23, 0x90, 0x9d, 0xa3, 0x56, 0xe8, 0x0e, 0xe2, + 0x9e, 0x54, 0x1b, 0x6e, 0x2c, 0xf8, 0x1b, 0x50, 0x69, 0x23, 0x32, 0x6e, 0xe6, 0x57, 0x8b, 0xb7, + 0x1a, 0x77, 0x57, 0xd6, 0xc6, 0x04, 0xaf, 0x11, 0x87, 0x63, 0x68, 0xf8, 0x5b, 0x50, 0xf5, 0x84, + 0x72, 0xfd, 0x20, 0x6e, 0x16, 0x56, 0xf3, 0xb7, 0x1a, 0x77, 0xaf, 0xad, 0xe9, 0x0f, 0xaf, 0x25, + 0x1f, 0x5e, 0x6b, 0xd1, 0x87, 0x9d, 0x84, 0x8e, 0xdf, 0x83, 0xda, 0xa1, 0x1f, 0x88, 0x27, 0xe2, + 0x34, 0x6e, 0x16, 0xcf, 0xe7, 0x49, 0x09, 0xf9, 0x43, 0x58, 0x12, 0x27, 0x2a, 0x72, 0x1d, 0x11, + 0xb8, 0xca, 0x97, 0x61, 0xdc, 0x2c, 0x91, 0x76, 0xd7, 0x26, 0xb4, 0x4b, 0xde, 0x3b, 0x13, 0xe4, + 0x7c, 0x15, 0x1a, 0xb2, 0xfd, 0x89, 0xe8, 0xa8, 0xfd, 0xd3, 0x81, 0x88, 0x9b, 0xe5, 0xd5, 0xe2, + 0xad, 0xba, 0x93, 0x45, 0xf1, 0x1f, 0x40, 0xa3, 0x23, 0x83, 0x40, 0x74, 0xb4, 0xfc, 0xca, 0xf9, + 0xaa, 0x65, 0x69, 0xf9, 0x7d, 0xb8, 0x12, 0x89, 0xbe, 0x3c, 0x16, 0xde, 0x66, 0x8a, 0xa5, 0xf1, + 0xd5, 0xe8, 0x33, 0xb3, 0x5f, 0xf2, 0x75, 0x58, 0x8c, 0x8c, 0x7e, 0x4f, 0xfd, 0xf0, 0x28, 0x6e, + 0x56, 0x69, 0x48, 0xd7, 0xcf, 0x18, 0x12, 0xd2, 0x38, 0xe3, 0x1c, 0xf6, 0x5f, 0x6c, 0x40, 0x99, + 0x16, 0x84, 0x2f, 0x41, 0xc1, 0xf7, 0x9a, 0xf9, 0xd5, 0xfc, 0xad, 0xba, 0x53, 0xf0, 0x3d, 0x7e, + 0x07, 0x2a, 0x87, 0xbe, 0x08, 0xbc, 0x57, 0xae, 0x8b, 0x21, 0xe3, 0x8f, 0x60, 0x21, 0x12, 0xb1, + 0x8a, 0x7c, 0x33, 0x7e, 0xbd, 0x34, 0xdf, 0x9c, 0xb5, 0xfa, 0x6b, 0x4e, 0x86, 0xd0, 0x19, 0x63, + 0xc3, 0x79, 0xee, 0xf4, 0xfc, 0xc0, 0x8b, 0x44, 0xb8, 0xe3, 0xe9, 0x55, 0xaa, 0x3b, 0x59, 0x14, + 0xbf, 0x05, 0x97, 0xda, 0x6e, 0xe7, 0xa8, 0x1b, 0xc9, 0x61, 0x88, 0x53, 0x22, 0xa3, 0x66, 0x99, + 0xd4, 0x9e, 0x44, 0xf3, 0x37, 0xa1, 0xec, 0x06, 0x7e, 0x37, 0xa4, 0xb5, 0x58, 0xba, 0x6b, 0xcd, + 0xd4, 0x65, 0x1d, 0x29, 0x1c, 0x4d, 0xc8, 0xb7, 0x61, 0xf1, 0x58, 0x44, 0xca, 0xef, 0xb8, 0x01, + 0xe1, 0x9b, 0x55, 0xe2, 0xb4, 0x67, 0x72, 0x1e, 0x64, 0x29, 0x9d, 0x71, 0x46, 0xbe, 0x03, 0x10, + 0xe3, 0x06, 0x21, 0x3b, 0x6f, 0x36, 0x68, 0x32, 0xbe, 0x3d, 0x53, 0xcc, 0xa6, 0x0c, 0x95, 0x08, + 0xd5, 0x5a, 0x2b, 0x25, 0xdf, 0xce, 0x39, 0x19, 0x66, 0xfe, 0x36, 0x94, 0x94, 0x38, 0x51, 0xcd, + 0xa5, 0x73, 0x66, 0x34, 0x11, 0xb2, 0x2f, 0x4e, 0xd4, 0x76, 0xce, 0x21, 0x06, 0x64, 0xc4, 0x0d, + 0xd0, 0xbc, 0x34, 0x07, 0xe3, 0x63, 0x3f, 0x10, 0xc8, 0x88, 0x0c, 0xfc, 0x5d, 0xa8, 0x04, 0xee, + 0xa9, 0x1c, 0xaa, 0x26, 0x23, 0xd6, 0x5f, 0x3b, 0x97, 0xf5, 0x29, 0x91, 0x6e, 0xe7, 0x1c, 0xc3, + 0xc4, 0xef, 0x43, 0xd1, 0xf3, 0x8f, 0x9b, 0xcb, 0xc4, 0xbb, 0x7a, 0x2e, 0xef, 0x96, 0x7f, 0xbc, + 0x9d, 0x73, 0x90, 0x9c, 0x6f, 0x42, 0xad, 0x2d, 0xe5, 0x51, 0xdf, 0x8d, 0x8e, 0x9a, 0x9c, 0x58, + 0xbf, 0x75, 0x2e, 0xeb, 0x86, 0x21, 0xde, 0xce, 0x39, 0x29, 0x23, 0x0e, 0xd9, 0xef, 0xc8, 0xb0, + 0x79, 0x79, 0x8e, 0x21, 0xef, 0x74, 0x64, 0x88, 0x43, 0x46, 0x06, 0x64, 0x0c, 0xfc, 0xf0, 0xa8, + 0xb9, 0x32, 0x07, 0x23, 0xee, 0x1d, 0x64, 0x44, 0x06, 0x54, 0xdb, 0x73, 0x95, 0x7b, 0xec, 0x8b, + 0x97, 0xcd, 0x2b, 0x73, 0xa8, 0xbd, 0x65, 0x88, 0x51, 0xed, 0x84, 0x11, 0x85, 0x24, 0x1b, 0xb3, + 0x79, 0x75, 0x0e, 0x21, 0xc9, 0x9e, 0x46, 0x21, 0x09, 0x23, 0xff, 0x1d, 0x58, 0x3e, 0x14, 0xae, + 0x1a, 0x46, 0xc2, 0x1b, 0xb9, 0xb9, 0x6b, 0x24, 0x6d, 0xed, 0xfc, 0xb5, 0x9f, 0xe4, 0xda, 0xce, + 0x39, 0xd3, 0xa2, 0xf8, 0x0f, 0xa1, 0x1c, 0xb8, 0x4a, 0x9c, 0x34, 0x9b, 0x24, 0xd3, 0x7e, 0x85, + 0x51, 0x28, 0x71, 0xb2, 0x9d, 0x73, 0x34, 0x0b, 0xff, 0x4d, 0xb8, 0xa4, 0xdc, 0x76, 0x20, 0x76, + 0x0f, 0x0d, 0x41, 0xdc, 0xfc, 0x15, 0x92, 0xf2, 0xc6, 0xf9, 0xe6, 0x3c, 0xce, 0xb3, 0x9d, 0x73, + 0x26, 0xc5, 0xa0, 0x56, 0x84, 0x6a, 0x5a, 0x73, 0x68, 0x45, 0xf2, 0x50, 0x2b, 0x62, 0xe1, 0x4f, + 0xa1, 0x41, 0x0f, 0x9b, 0x32, 0x18, 0xf6, 0xc3, 0xe6, 0x75, 0x92, 0x70, 0xeb, 0xd5, 0x12, 0x34, + 0xfd, 0x76, 0xce, 0xc9, 0xb2, 0xe3, 0x22, 0x12, 0xe8, 0xc8, 0x97, 0xcd, 0xd7, 0xe6, 0x58, 0xc4, + 0x7d, 0x43, 0x8c, 0x8b, 0x98, 0x30, 0xe2, 0xd6, 0x7b, 0xe9, 0x7b, 0x5d, 0xa1, 0x9a, 0xdf, 0x98, + 0x63, 0xeb, 0xbd, 0x20, 0x52, 0xdc, 0x7a, 0x9a, 0xc9, 0xfa, 0x09, 0x2c, 0x64, 0x9d, 0x2b, 0xe7, + 0x50, 0x8a, 0x84, 0xab, 0x1d, 0x7b, 0xcd, 0xa1, 0x67, 0xc4, 0x09, 0xcf, 0x57, 0xe4, 0xd8, 0x6b, + 0x0e, 0x3d, 0xf3, 0xab, 0x50, 0xd1, 0x41, 0x86, 0xfc, 0x76, 0xcd, 0x31, 0x10, 0xd2, 0x7a, 0x91, + 0xdb, 0x6d, 0x96, 0x34, 0x2d, 0x3e, 0x23, 0xad, 0x17, 0xc9, 0xc1, 0x6e, 0x48, 0x7e, 0xb7, 0xe6, + 0x18, 0xc8, 0xfa, 0x97, 0x7b, 0x50, 0x35, 0x8a, 0x59, 0x7f, 0x99, 0x87, 0x8a, 0xf6, 0x0b, 0xfc, + 0x21, 0x94, 0x63, 0x75, 0x1a, 0x08, 0xd2, 0x61, 0xe9, 0xee, 0x77, 0xe6, 0xf0, 0x25, 0x6b, 0x2d, + 0x64, 0x70, 0x34, 0x9f, 0xed, 0x40, 0x99, 0x60, 0x5e, 0x85, 0xa2, 0x23, 0x5f, 0xb2, 0x1c, 0x07, + 0xa8, 0xe8, 0x39, 0x67, 0x79, 0x44, 0x6e, 0xf9, 0xc7, 0xac, 0x80, 0xc8, 0x6d, 0xe1, 0x7a, 0x22, + 0x62, 0x45, 0xbe, 0x08, 0xf5, 0x64, 0x76, 0x63, 0x56, 0xe2, 0x0c, 0x16, 0x32, 0xeb, 0x16, 0xb3, + 0xb2, 0xf5, 0xbf, 0x25, 0x28, 0xe1, 0x36, 0xe6, 0xaf, 0xc3, 0xa2, 0x72, 0xa3, 0xae, 0xd0, 0x99, + 0xcc, 0x4e, 0x12, 0x02, 0xc7, 0x91, 0xfc, 0xdd, 0x64, 0x0c, 0x05, 0x1a, 0xc3, 0xb7, 0x5f, 0xe9, + 0x1e, 0xc6, 0x46, 0x90, 0x09, 0xa6, 0xc5, 0xf9, 0x82, 0xe9, 0x63, 0xa8, 0xa1, 0x57, 0x6a, 0xf9, + 0x3f, 0x11, 0x34, 0xf5, 0x4b, 0x77, 0x6f, 0xbf, 0xfa, 0x93, 0x3b, 0x86, 0xc3, 0x49, 0x79, 0xf9, + 0x0e, 0xd4, 0x3b, 0x6e, 0xe4, 0x91, 0x32, 0xb4, 0x5a, 0x4b, 0x77, 0xbf, 0xfb, 0x6a, 0x41, 0x9b, + 0x09, 0x8b, 0x33, 0xe2, 0xe6, 0xbb, 0xd0, 0xf0, 0x44, 0xdc, 0x89, 0xfc, 0x01, 0x79, 0x29, 0x1d, + 0x52, 0xbf, 0xf7, 0x6a, 0x61, 0x5b, 0x23, 0x26, 0x27, 0x2b, 0x81, 0xbf, 0x06, 0xf5, 0x28, 0x75, + 0x53, 0x55, 0x8a, 0xf3, 0x23, 0x84, 0xfd, 0x36, 0xd4, 0x92, 0xf1, 0xf0, 0x05, 0xa8, 0xe1, 0xef, + 0x07, 0x32, 0x14, 0x2c, 0x87, 0x6b, 0x8b, 0x50, 0xab, 0xef, 0x06, 0x01, 0xcb, 0xf3, 0x25, 0x00, + 0x04, 0x9f, 0x09, 0xcf, 0x1f, 0xf6, 0x59, 0xc1, 0xfe, 0xf5, 0xc4, 0x5a, 0x6a, 0x50, 0xda, 0x73, + 0xbb, 0xc8, 0xb1, 0x00, 0xb5, 0xc4, 0xeb, 0xb2, 0x3c, 0xf2, 0x6f, 0xb9, 0x71, 0xaf, 0x2d, 0xdd, + 0xc8, 0x63, 0x05, 0xde, 0x80, 0xea, 0x7a, 0xd4, 0xe9, 0xf9, 0xc7, 0x82, 0x15, 0xed, 0x3b, 0xd0, + 0xc8, 0xe8, 0x8b, 0x22, 0xcc, 0x47, 0xeb, 0x50, 0x5e, 0xf7, 0x3c, 0xe1, 0xb1, 0x3c, 0x32, 0x98, + 0x01, 0xb2, 0x82, 0xfd, 0x5d, 0xa8, 0xa7, 0xb3, 0x85, 0xe4, 0x18, 0x7f, 0x59, 0x0e, 0x9f, 0x10, + 0xcd, 0xf2, 0x68, 0x95, 0x3b, 0x61, 0xe0, 0x87, 0x82, 0x15, 0xac, 0x8f, 0xc9, 0x54, 0xf9, 0x6f, + 0x8c, 0x6f, 0x88, 0x9b, 0xaf, 0x0a, 0x90, 0xe3, 0xbb, 0xe1, 0x7a, 0x66, 0x7c, 0x4f, 0x7d, 0x52, + 0xae, 0x06, 0xa5, 0x2d, 0xa9, 0x62, 0x96, 0xb7, 0xfe, 0xbb, 0x00, 0xb5, 0x24, 0x2e, 0x72, 0x06, + 0xc5, 0x61, 0x14, 0x18, 0x83, 0xc6, 0x47, 0xbe, 0x02, 0x65, 0xe5, 0x2b, 0x63, 0xc6, 0x75, 0x47, + 0x03, 0x98, 0x72, 0x65, 0x57, 0xb6, 0x48, 0xef, 0x26, 0x97, 0xca, 0xef, 0xbb, 0x5d, 0xb1, 0xed, + 0xc6, 0x3d, 0xb2, 0xc7, 0xba, 0x33, 0x42, 0x20, 0xff, 0xa1, 0x7b, 0x8c, 0x36, 0x47, 0xef, 0x75, + 0x32, 0x96, 0x45, 0xf1, 0x7b, 0x50, 0xc2, 0x01, 0x1a, 0xa3, 0xf9, 0xd5, 0x89, 0x01, 0xa3, 0x99, + 0xec, 0x45, 0x02, 0x97, 0x67, 0x0d, 0x53, 0x69, 0x87, 0x88, 0xf9, 0x4d, 0x58, 0xd2, 0x9b, 0x70, + 0x97, 0x92, 0xec, 0x1d, 0x8f, 0x92, 0xb1, 0xba, 0x33, 0x81, 0xe5, 0xeb, 0x38, 0x9d, 0xae, 0x12, + 0xcd, 0xda, 0x1c, 0xf6, 0x9d, 0x4c, 0xce, 0x5a, 0x0b, 0x59, 0x1c, 0xcd, 0x69, 0x3f, 0xc0, 0x39, + 0x75, 0x95, 0xc0, 0x65, 0x7e, 0xd4, 0x1f, 0xa8, 0x53, 0x6d, 0x34, 0x8f, 0x85, 0xea, 0xf4, 0xfc, + 0xb0, 0xcb, 0xf2, 0x7a, 0x8a, 0x71, 0x11, 0x89, 0x24, 0x8a, 0x64, 0xc4, 0x8a, 0x96, 0x05, 0x25, + 0xb4, 0x51, 0x74, 0x92, 0xa1, 0xdb, 0x17, 0x66, 0xa6, 0xe9, 0xd9, 0xba, 0x0c, 0xcb, 0x53, 0x61, + 0xd5, 0xfa, 0x87, 0x8a, 0xb6, 0x10, 0xe4, 0xa0, 0x94, 0xce, 0x70, 0x50, 0xb6, 0x76, 0x21, 0x1f, + 0x83, 0x52, 0xc6, 0x7d, 0xcc, 0xbb, 0x50, 0xc6, 0x81, 0x25, 0x2e, 0x66, 0x0e, 0xf6, 0x67, 0x48, + 0xee, 0x68, 0x2e, 0xde, 0x84, 0x6a, 0xa7, 0x27, 0x3a, 0x47, 0xc2, 0x33, 0xbe, 0x3e, 0x01, 0xd1, + 0x68, 0x3a, 0x99, 0x2c, 0x5b, 0x03, 0x64, 0x12, 0x1d, 0x19, 0x3e, 0xea, 0xcb, 0x4f, 0x7c, 0x5a, + 0x57, 0x34, 0x89, 0x04, 0x91, 0xbc, 0xdd, 0x41, 0x1b, 0x31, 0xcb, 0x36, 0x42, 0x58, 0x8f, 0xa0, + 0x4c, 0xdf, 0xc6, 0x9d, 0xa0, 0x75, 0xd6, 0xa5, 0xe2, 0xcd, 0xf9, 0x74, 0x36, 0x2a, 0x5b, 0x7f, + 0x5d, 0x80, 0x12, 0xc2, 0xfc, 0x36, 0x94, 0x23, 0x37, 0xec, 0xea, 0x05, 0x98, 0xae, 0x38, 0x1d, + 0x7c, 0xe7, 0x68, 0x12, 0xfe, 0xd0, 0x98, 0x62, 0x61, 0x0e, 0x63, 0x49, 0xbf, 0x98, 0x35, 0xcb, + 0x15, 0x28, 0x0f, 0xdc, 0xc8, 0xed, 0x9b, 0x7d, 0xa2, 0x01, 0xfb, 0x67, 0x79, 0x28, 0x21, 0x11, + 0x5f, 0x86, 0xc5, 0x96, 0x8a, 0xfc, 0x23, 0xa1, 0x7a, 0x91, 0x1c, 0x76, 0x7b, 0xda, 0x92, 0x9e, + 0x88, 0x53, 0xed, 0x6f, 0xb4, 0x43, 0x50, 0x6e, 0xe0, 0x77, 0x58, 0x01, 0xad, 0x6a, 0x43, 0x06, + 0x1e, 0x2b, 0xf2, 0x4b, 0xd0, 0x78, 0x1e, 0x7a, 0x22, 0x8a, 0x3b, 0x32, 0x12, 0x1e, 0x2b, 0x99, + 0xdd, 0x7d, 0xc4, 0xca, 0x14, 0xcb, 0xc4, 0x89, 0xa2, 0x92, 0x86, 0x55, 0xf8, 0x65, 0xb8, 0xb4, + 0x31, 0x5e, 0xe7, 0xb0, 0x2a, 0xfa, 0xa4, 0x67, 0x22, 0x44, 0x23, 0x63, 0x35, 0x6d, 0xc4, 0xf2, + 0x13, 0x9f, 0xd5, 0xf1, 0x63, 0x7a, 0x9f, 0x30, 0xb0, 0xff, 0x31, 0x9f, 0x78, 0x8e, 0x45, 0xa8, + 0xef, 0xb9, 0x91, 0xdb, 0x8d, 0xdc, 0x01, 0xea, 0xd7, 0x80, 0xaa, 0x0e, 0x9c, 0x6f, 0x69, 0xef, + 0xa6, 0x81, 0xbb, 0xda, 0x37, 0x6a, 0xe0, 0x1e, 0x2b, 0x8e, 0x80, 0xfb, 0xac, 0x84, 0xdf, 0xf8, + 0x70, 0x28, 0x95, 0x60, 0x65, 0xf2, 0x75, 0xd2, 0x13, 0xac, 0x82, 0xc8, 0x7d, 0xf4, 0x28, 0xac, + 0x8a, 0x63, 0xde, 0x44, 0xfb, 0x69, 0xcb, 0x13, 0x56, 0x43, 0x35, 0x70, 0x1a, 0x85, 0xc7, 0xea, + 0xf8, 0xe6, 0x83, 0x61, 0xbf, 0x2d, 0x70, 0x98, 0x80, 0x6f, 0xf6, 0x65, 0xb7, 0x1b, 0x08, 0xd6, + 0xc0, 0x39, 0xc8, 0x38, 0x5f, 0xb6, 0x40, 0x9e, 0xd6, 0x0d, 0x02, 0x39, 0x54, 0x6c, 0xd1, 0xfa, + 0xa2, 0x08, 0x25, 0x2c, 0x52, 0x70, 0xef, 0xf4, 0xd0, 0xcf, 0x98, 0xbd, 0x83, 0xcf, 0xe9, 0x0e, + 0x2c, 0x8c, 0x76, 0x20, 0xff, 0xa1, 0x59, 0xe9, 0xe2, 0x1c, 0x5e, 0x16, 0x05, 0x67, 0x17, 0x99, + 0x43, 0xa9, 0xef, 0xf7, 0x85, 0xf1, 0x75, 0xf4, 0x8c, 0xb8, 0x18, 0xe3, 0x31, 0x6e, 0x83, 0xa2, + 0x43, 0xcf, 0xb8, 0x6b, 0x5c, 0x0c, 0x0b, 0xeb, 0x8a, 0xf6, 0x40, 0xd1, 0x49, 0x40, 0xbd, 0x9b, + 0xd1, 0x2b, 0x55, 0xe7, 0xd8, 0xcd, 0xf4, 0xf9, 0xac, 0x47, 0x1a, 0x39, 0x83, 0xda, 0xfc, 0xec, + 0x99, 0x20, 0xb1, 0x65, 0xac, 0x71, 0x14, 0xc0, 0x6a, 0x7a, 0xf6, 0x58, 0x1e, 0x57, 0x89, 0xb6, + 0xa1, 0xf6, 0x65, 0x07, 0xbe, 0x27, 0x24, 0x2b, 0x52, 0x80, 0x1b, 0x7a, 0xbe, 0x64, 0x25, 0xcc, + 0xa8, 0xf6, 0xb6, 0x1e, 0xb3, 0xb2, 0x7d, 0x33, 0x13, 0x6a, 0xd6, 0x87, 0x4a, 0x6a, 0x31, 0x64, + 0x96, 0x79, 0x6d, 0x65, 0x6d, 0xe1, 0xb1, 0x82, 0xfd, 0xfd, 0x19, 0xee, 0x73, 0x11, 0xea, 0xcf, + 0x07, 0x81, 0x74, 0xbd, 0x73, 0xfc, 0xe7, 0x02, 0xc0, 0xa8, 0xe8, 0xb5, 0x7e, 0xfa, 0x8d, 0x51, + 0x98, 0xc6, 0x1c, 0x33, 0x96, 0xc3, 0xa8, 0x23, 0xc8, 0x35, 0xd4, 0x1d, 0x03, 0xf1, 0x1f, 0x41, + 0x19, 0xdf, 0xc7, 0xcd, 0x02, 0x79, 0x8c, 0xdb, 0x73, 0x95, 0x5a, 0x6b, 0x07, 0xbe, 0x78, 0xe9, + 0x68, 0x46, 0xfe, 0x20, 0x9b, 0x76, 0xbc, 0xa2, 0x09, 0x34, 0xa2, 0xe4, 0x37, 0x00, 0xdc, 0x8e, + 0xf2, 0x8f, 0x05, 0xca, 0x32, 0x7b, 0x3f, 0x83, 0xe1, 0x0e, 0x34, 0x70, 0x4b, 0x0e, 0x76, 0x23, + 0xdc, 0xc5, 0xcd, 0x05, 0x12, 0xfc, 0xe6, 0x7c, 0xea, 0xbd, 0x9f, 0x32, 0x3a, 0x59, 0x21, 0xfc, + 0x39, 0x2c, 0xe8, 0x06, 0x93, 0x11, 0xba, 0x48, 0x42, 0xdf, 0x9a, 0x4f, 0xe8, 0xee, 0x88, 0xd3, + 0x19, 0x13, 0x33, 0xdd, 0x37, 0x2a, 0x5f, 0xb4, 0x6f, 0x84, 0xb1, 0x79, 0x7f, 0x3c, 0x36, 0xeb, + 0x10, 0x30, 0x81, 0xe5, 0x36, 0x2c, 0xf8, 0xf1, 0xa8, 0x6d, 0x45, 0x2d, 0x8c, 0x9a, 0x33, 0x86, + 0xb3, 0x7e, 0x5e, 0x86, 0x12, 0x4d, 0xe1, 0x64, 0x0b, 0x6a, 0x73, 0xcc, 0x55, 0xdf, 0x99, 0x7f, + 0xa9, 0x27, 0x76, 0x32, 0x79, 0x86, 0x62, 0xc6, 0x33, 0xfc, 0x08, 0xca, 0xb1, 0x8c, 0x54, 0xb2, + 0xfc, 0x73, 0x1a, 0x51, 0x4b, 0x46, 0xca, 0xd1, 0x8c, 0xfc, 0x31, 0x54, 0x0f, 0xfd, 0x40, 0xe1, + 0xa2, 0xe8, 0xc9, 0x7b, 0x63, 0x3e, 0x19, 0x8f, 0x89, 0xc9, 0x49, 0x98, 0xf9, 0xd3, 0xac, 0x31, + 0x56, 0x48, 0xd2, 0xda, 0x7c, 0x92, 0x66, 0xd9, 0xe8, 0x6d, 0x60, 0x1d, 0x79, 0x2c, 0xa2, 0xe4, + 0xdd, 0x13, 0x71, 0x6a, 0x82, 0xef, 0x14, 0x9e, 0x5b, 0x50, 0xeb, 0xf9, 0x9e, 0xc0, 0xfc, 0x85, + 0x7c, 0x4c, 0xcd, 0x49, 0x61, 0xfe, 0x04, 0x6a, 0x94, 0xf7, 0xa3, 0xb7, 0xab, 0x5f, 0x78, 0xf2, + 0x75, 0x09, 0x92, 0x08, 0xc0, 0x0f, 0xd1, 0xc7, 0x1f, 0xfb, 0xaa, 0x09, 0xfa, 0x43, 0x09, 0x8c, + 0x0a, 0x93, 0xbd, 0x67, 0x15, 0x6e, 0x68, 0x85, 0x27, 0xf1, 0xfc, 0x3e, 0x5c, 0x21, 0xdc, 0x44, + 0xf0, 0xc3, 0xad, 0x86, 0x42, 0x67, 0xbf, 0xc4, 0x44, 0x64, 0xe0, 0x76, 0xc5, 0x53, 0xbf, 0xef, + 0xab, 0xe6, 0xe2, 0x6a, 0xfe, 0x56, 0xd9, 0x19, 0x21, 0xec, 0xfb, 0xc6, 0x4d, 0x62, 0xe0, 0xc2, + 0xfa, 0x30, 0x71, 0x70, 0xb1, 0xd2, 0x91, 0xf0, 0x7d, 0x37, 0x08, 0x44, 0x74, 0xaa, 0x8b, 0xcb, + 0x27, 0x6e, 0xd8, 0x76, 0x43, 0x56, 0xb4, 0x6f, 0x41, 0x89, 0x46, 0x56, 0x87, 0xb2, 0x2e, 0x42, + 0xa8, 0x20, 0x35, 0x05, 0x08, 0x39, 0xc6, 0xa7, 0xb8, 0x0b, 0x58, 0xc1, 0xfa, 0xfb, 0x22, 0xd4, + 0x92, 0x31, 0x60, 0x3a, 0x7e, 0x24, 0x4e, 0x93, 0x74, 0xfc, 0x48, 0x9c, 0x52, 0x96, 0x14, 0x1f, + 0xf8, 0xb1, 0xdf, 0x36, 0x59, 0x5f, 0xcd, 0x19, 0x21, 0x30, 0xd1, 0x78, 0xe9, 0x7b, 0xaa, 0x47, + 0xa6, 0x5b, 0x76, 0x34, 0xc0, 0x6f, 0xc1, 0x25, 0xcf, 0x55, 0x62, 0x27, 0xec, 0x04, 0x43, 0x4f, + 0xec, 0x63, 0x90, 0xd2, 0x55, 0xf8, 0x24, 0x9a, 0xff, 0x18, 0x40, 0xf9, 0x7d, 0xf1, 0x58, 0x46, + 0x7d, 0x57, 0x99, 0xd4, 0xfb, 0x07, 0x17, 0x33, 0xae, 0xb5, 0xfd, 0x54, 0x80, 0x93, 0x11, 0x86, + 0xa2, 0xf1, 0x6b, 0x46, 0x74, 0xf5, 0x6b, 0x89, 0xde, 0x4a, 0x05, 0x38, 0x19, 0x61, 0xf6, 0x6f, + 0x01, 0x8c, 0xde, 0xf0, 0xab, 0xc0, 0x9f, 0xc9, 0x50, 0xf5, 0xd6, 0xdb, 0xed, 0x68, 0x43, 0x1c, + 0xca, 0x48, 0x6c, 0xb9, 0x18, 0x5d, 0xae, 0xc0, 0x72, 0x8a, 0x5f, 0x3f, 0x54, 0x22, 0x42, 0x34, + 0x4d, 0x7d, 0xab, 0x27, 0x23, 0xa5, 0x53, 0x17, 0x7a, 0x7c, 0xde, 0x62, 0x45, 0x8c, 0x68, 0x3b, + 0xad, 0x5d, 0x56, 0xb2, 0x6f, 0x01, 0x8c, 0x86, 0x44, 0x29, 0x3e, 0x3d, 0xbd, 0x75, 0xd7, 0x24, + 0xfc, 0x04, 0xdd, 0xbd, 0xcf, 0xf2, 0xd6, 0xdf, 0x15, 0xa0, 0x84, 0x3b, 0xde, 0x78, 0xa5, 0x4a, + 0xea, 0x95, 0x56, 0xa1, 0x91, 0x35, 0x57, 0xbd, 0x9c, 0x59, 0xd4, 0xd7, 0xf3, 0x5b, 0xf8, 0xad, + 0xac, 0xdf, 0x7a, 0x07, 0x1a, 0x9d, 0x61, 0xac, 0x64, 0x9f, 0x9c, 0x76, 0xb3, 0x48, 0xbe, 0xe1, + 0xea, 0x54, 0xdf, 0xe0, 0xc0, 0x0d, 0x86, 0xc2, 0xc9, 0x92, 0xf2, 0x07, 0x50, 0x39, 0xd4, 0x0b, + 0xa3, 0x3b, 0x07, 0xdf, 0x38, 0xc3, 0xaf, 0x9b, 0xc9, 0x37, 0xc4, 0x38, 0x2e, 0x7f, 0xca, 0xa8, + 0xb2, 0x28, 0xfb, 0x5b, 0x66, 0xb7, 0x54, 0xa1, 0xb8, 0x1e, 0x77, 0x4c, 0xdd, 0x29, 0xe2, 0x8e, + 0x4e, 0x6a, 0x37, 0x49, 0x05, 0x56, 0xb0, 0xfe, 0xad, 0x0a, 0x15, 0xed, 0xe7, 0xcc, 0xdc, 0xd5, + 0xd3, 0xb9, 0xfb, 0x10, 0x6a, 0x72, 0x20, 0x22, 0x57, 0xc9, 0xc8, 0x14, 0xbf, 0x0f, 0x2e, 0xe2, + 0x37, 0xd7, 0x76, 0x0d, 0xb3, 0x93, 0x8a, 0x99, 0x5c, 0x8e, 0xc2, 0xf4, 0x72, 0xdc, 0x06, 0x96, + 0xb8, 0xc8, 0xbd, 0x08, 0xf9, 0xd4, 0xa9, 0x29, 0x65, 0xa6, 0xf0, 0x7c, 0x1f, 0xea, 0x1d, 0x19, + 0x7a, 0x7e, 0x5a, 0x08, 0x2f, 0xdd, 0xfd, 0xfe, 0x85, 0x34, 0xdc, 0x4c, 0xb8, 0x9d, 0x91, 0x20, + 0xfe, 0x06, 0x94, 0x8f, 0x71, 0x9d, 0x68, 0x41, 0xce, 0x5e, 0x45, 0x4d, 0xc4, 0x3f, 0x82, 0xc6, + 0xa7, 0x43, 0xbf, 0x73, 0xb4, 0x9b, 0x6d, 0xb4, 0xbc, 0x73, 0x21, 0x2d, 0x3e, 0x1c, 0xf1, 0x3b, + 0x59, 0x61, 0x19, 0xdb, 0xa8, 0xfe, 0x02, 0xb6, 0x51, 0x9b, 0xb6, 0x8d, 0xeb, 0x50, 0x4b, 0x16, + 0x87, 0xec, 0x23, 0xf4, 0x58, 0x8e, 0x57, 0xa0, 0xb0, 0x1b, 0xb1, 0xbc, 0xfd, 0x3f, 0x79, 0xa8, + 0xa7, 0x13, 0x33, 0xde, 0x54, 0x79, 0xf4, 0xe9, 0xd0, 0x0d, 0x58, 0x9e, 0xaa, 0x02, 0xa9, 0x34, + 0x44, 0x9b, 0xf7, 0xfd, 0x48, 0xb8, 0x8a, 0x7a, 0x79, 0xe8, 0x91, 0x45, 0x1c, 0xb3, 0x12, 0xe7, + 0xb0, 0x64, 0xd0, 0xbb, 0x91, 0x26, 0x2d, 0x63, 0xd1, 0x80, 0x6f, 0x13, 0x44, 0x45, 0x3b, 0xf0, + 0x23, 0xa1, 0x8b, 0xa2, 0x0f, 0xa4, 0x22, 0xa0, 0x86, 0xba, 0xec, 0x84, 0xac, 0x8e, 0xdf, 0xfc, + 0x40, 0xaa, 0x9d, 0x90, 0xc1, 0x28, 0x5b, 0x6d, 0x24, 0x9f, 0x27, 0x68, 0x81, 0x72, 0xe1, 0x20, + 0xd8, 0x09, 0xd9, 0xa2, 0x79, 0xa1, 0xa1, 0x25, 0x94, 0xf8, 0xe8, 0xc4, 0xed, 0x20, 0xfb, 0x25, + 0xbe, 0x04, 0x80, 0x3c, 0x06, 0x66, 0xb8, 0x07, 0x1e, 0x9d, 0xf8, 0xb1, 0x8a, 0xd9, 0xb2, 0xfd, + 0xaf, 0x79, 0x68, 0x64, 0x16, 0x01, 0xb3, 0x61, 0x22, 0x44, 0xd7, 0xa6, 0x93, 0xe3, 0x1f, 0x8b, + 0x58, 0x89, 0xc8, 0x4b, 0xdc, 0xd6, 0xbe, 0xc4, 0xc7, 0x02, 0x7e, 0x6f, 0x5f, 0xf6, 0x65, 0x14, + 0xc9, 0x97, 0xac, 0x88, 0xd0, 0x53, 0x37, 0x56, 0x2f, 0x84, 0x38, 0x62, 0x25, 0x1c, 0xea, 0xe6, + 0x30, 0x8a, 0x44, 0xa8, 0x11, 0x65, 0x52, 0x4e, 0x9c, 0x68, 0xa8, 0x82, 0x42, 0x91, 0x98, 0xfc, + 0x22, 0xab, 0x72, 0x06, 0x0b, 0x86, 0x5a, 0x63, 0x6a, 0x48, 0x80, 0xe4, 0x1a, 0xac, 0x63, 0x21, + 0xa9, 0x0b, 0xb1, 0xdd, 0xc3, 0x2d, 0xf7, 0x34, 0x5e, 0xef, 0x4a, 0x06, 0x93, 0xc8, 0x0f, 0xe4, + 0x4b, 0xd6, 0xb0, 0x86, 0x00, 0xa3, 0x14, 0x15, 0x53, 0x73, 0xb4, 0xb5, 0xb4, 0x55, 0x6a, 0x20, + 0xbe, 0x0b, 0x80, 0x4f, 0x44, 0x99, 0xe4, 0xe7, 0x17, 0xc8, 0x1b, 0x88, 0xcf, 0xc9, 0x88, 0xb0, + 0x7e, 0x17, 0xea, 0xe9, 0x0b, 0xac, 0xb4, 0x28, 0xc2, 0xa7, 0x9f, 0x4d, 0x40, 0x8c, 0x93, 0x7e, + 0xe8, 0x89, 0x13, 0xda, 0xfb, 0x65, 0x47, 0x03, 0xa8, 0x65, 0xcf, 0xf7, 0x3c, 0x11, 0x26, 0x0d, + 0x6d, 0x0d, 0xcd, 0x3a, 0x3d, 0x2c, 0xcd, 0x3c, 0x3d, 0xb4, 0x7e, 0x1b, 0x1a, 0x99, 0x1c, 0xfa, + 0xcc, 0x61, 0x67, 0x14, 0x2b, 0x8c, 0x2b, 0xf6, 0x1a, 0xd4, 0xa5, 0x49, 0x84, 0x63, 0x72, 0xe0, + 0x75, 0x67, 0x84, 0xc0, 0x00, 0x53, 0xd6, 0x43, 0x9b, 0xcc, 0x7b, 0x1f, 0x43, 0x05, 0x8b, 0xc0, + 0x61, 0x72, 0xf4, 0x3a, 0x67, 0x6e, 0xd9, 0x22, 0x9e, 0xed, 0x9c, 0x63, 0xb8, 0xf9, 0xbb, 0x50, + 0x54, 0x6e, 0xd7, 0xf4, 0x83, 0xbe, 0x33, 0x9f, 0x90, 0x7d, 0xb7, 0xbb, 0x9d, 0x73, 0x90, 0x8f, + 0x3f, 0x85, 0x5a, 0xc7, 0x94, 0xf0, 0xc6, 0x71, 0xcd, 0x99, 0x9a, 0x26, 0x85, 0xff, 0x76, 0xce, + 0x49, 0x25, 0xf0, 0x1f, 0x41, 0x09, 0xa3, 0x3c, 0x79, 0xde, 0xb9, 0x53, 0x6e, 0xdc, 0x2e, 0xdb, + 0x39, 0x87, 0x38, 0x37, 0xaa, 0x50, 0x26, 0x3f, 0x69, 0x35, 0xa1, 0xa2, 0xc7, 0x3a, 0x39, 0x73, + 0xd6, 0x35, 0x28, 0xee, 0xbb, 0x5d, 0xcc, 0xb4, 0x7c, 0x2f, 0x36, 0x95, 0x23, 0x3e, 0x5a, 0xaf, + 0x8f, 0xda, 0x11, 0xd9, 0x4e, 0x57, 0x7e, 0xac, 0xd3, 0x65, 0x55, 0xa0, 0x84, 0x5f, 0xb4, 0x5e, + 0x3b, 0x2f, 0x6b, 0xb3, 0xae, 0x63, 0x7e, 0xa7, 0xc4, 0xc9, 0xac, 0x26, 0x9e, 0xb5, 0x0c, 0x97, + 0x26, 0xce, 0xac, 0xac, 0xaa, 0x49, 0x2e, 0xad, 0x45, 0x68, 0x64, 0x4e, 0x21, 0xac, 0x9b, 0x50, + 0x4b, 0xce, 0x28, 0x30, 0x49, 0xf6, 0x63, 0xdd, 0x5d, 0x31, 0x4a, 0xa5, 0xb0, 0xa5, 0xa0, 0xa2, + 0x8f, 0x79, 0xf8, 0x46, 0x7a, 0x2c, 0x9b, 0x9f, 0xe3, 0x4c, 0x40, 0x33, 0x99, 0x13, 0x95, 0xe4, + 0x6c, 0xd6, 0xbe, 0x99, 0x9e, 0xcb, 0x24, 0xa5, 0x3c, 0xc5, 0xf1, 0xfd, 0x48, 0x08, 0x5d, 0xa6, + 0x53, 0xf6, 0x5b, 0xb0, 0x0f, 0xa1, 0xb6, 0x27, 0xe3, 0x49, 0x8f, 0x5d, 0x85, 0xe2, 0xbe, 0x1c, + 0xe8, 0x80, 0xbf, 0x21, 0x15, 0x05, 0x7c, 0xed, 0xa0, 0x0f, 0x95, 0x6e, 0x22, 0x38, 0x7e, 0xb7, + 0xa7, 0x74, 0x83, 0x68, 0x27, 0x0c, 0x45, 0xc4, 0xca, 0xe8, 0x35, 0x1d, 0x31, 0x08, 0xdc, 0x8e, + 0x60, 0x15, 0xf4, 0x9a, 0x84, 0x7f, 0xec, 0x47, 0xb1, 0x62, 0x55, 0xfb, 0x6d, 0xf4, 0xb5, 0x7e, + 0x97, 0x5c, 0x24, 0x3d, 0x90, 0xa8, 0x1c, 0x3a, 0x3b, 0x02, 0x37, 0x45, 0x88, 0x61, 0x80, 0xfa, + 0xfc, 0xfa, 0xa0, 0x9d, 0x3e, 0x50, 0xb0, 0x5f, 0xc0, 0xe2, 0xd8, 0x01, 0x3c, 0x5f, 0x01, 0x36, + 0x86, 0x40, 0x45, 0x73, 0xfc, 0x1a, 0x5c, 0x1e, 0xc3, 0x3e, 0xf3, 0x3d, 0x8f, 0xda, 0x20, 0x93, + 0x2f, 0x92, 0xe1, 0x6c, 0xd4, 0xa1, 0xda, 0xd1, 0x53, 0x68, 0xef, 0xc1, 0x22, 0xcd, 0xe9, 0x33, + 0xa1, 0xdc, 0xdd, 0x30, 0x38, 0xfd, 0x85, 0x6f, 0x49, 0xd8, 0xdf, 0x85, 0x32, 0xb5, 0x23, 0xd1, + 0x78, 0x0e, 0x23, 0xd9, 0x27, 0x59, 0x65, 0x87, 0x9e, 0x51, 0xba, 0x92, 0xc6, 0x8d, 0x15, 0x94, + 0xb4, 0xff, 0xb4, 0x0e, 0xd5, 0xf5, 0x4e, 0x47, 0x0e, 0x43, 0x35, 0xf5, 0xe5, 0x59, 0x1d, 0xaf, + 0x07, 0x50, 0x71, 0x8f, 0x5d, 0xe5, 0x46, 0x66, 0xcf, 0x4f, 0x46, 0x77, 0x23, 0x6b, 0x6d, 0x9d, + 0x88, 0x1c, 0x43, 0x8c, 0x6c, 0x1d, 0x19, 0x1e, 0xfa, 0x5d, 0xb3, 0xcd, 0xcf, 0x62, 0xdb, 0x24, + 0x22, 0xc7, 0x10, 0x23, 0x9b, 0x71, 0x53, 0xe5, 0x73, 0xd9, 0xf4, 0x5e, 0x4d, 0xbd, 0xd2, 0x1d, + 0x28, 0xf9, 0xe1, 0xa1, 0x34, 0xf7, 0x63, 0xae, 0x9f, 0xc1, 0xb4, 0x13, 0x1e, 0x4a, 0x87, 0x08, + 0x2d, 0x01, 0x15, 0xad, 0x30, 0xff, 0x01, 0x94, 0xe9, 0xd4, 0xc1, 0xf4, 0x79, 0xe7, 0xba, 0xd0, + 0xa0, 0x39, 0xf8, 0xd5, 0xa4, 0x89, 0x4d, 0xf3, 0x85, 0x78, 0x02, 0x37, 0x6a, 0xc9, 0x94, 0x59, + 0xff, 0x99, 0x87, 0x8a, 0x1e, 0x21, 0xbf, 0x09, 0x4b, 0x22, 0xc4, 0xad, 0x99, 0x38, 0x22, 0xb3, + 0x27, 0x27, 0xb0, 0x98, 0x16, 0x19, 0x8c, 0x68, 0x0f, 0xbb, 0xa6, 0x82, 0xcb, 0xa2, 0xf8, 0x3b, + 0x70, 0x4d, 0x83, 0x7b, 0x91, 0x88, 0x44, 0x20, 0xdc, 0x58, 0x6c, 0xf6, 0xdc, 0x30, 0x14, 0x81, + 0x09, 0x4b, 0x67, 0xbd, 0xe6, 0x36, 0x2c, 0xe8, 0x57, 0xad, 0x81, 0xdb, 0x11, 0xb1, 0x69, 0xca, + 0x8f, 0xe1, 0xf8, 0xf7, 0xa0, 0x4c, 0xb7, 0x94, 0x9a, 0xde, 0xf9, 0xc6, 0xa7, 0xa9, 0x2c, 0x99, + 0xfa, 0xcd, 0x75, 0x00, 0xbd, 0x1a, 0x98, 0xcf, 0x1b, 0x67, 0xf2, 0xcd, 0x73, 0x97, 0x8f, 0x2a, + 0x93, 0x0c, 0x13, 0xea, 0xe7, 0x89, 0x40, 0xa0, 0x7f, 0x40, 0x9f, 0x49, 0x83, 0x2f, 0x3a, 0x63, + 0x38, 0xeb, 0xb3, 0x22, 0x94, 0x70, 0x21, 0x91, 0xb8, 0x27, 0xfb, 0x22, 0x6d, 0x16, 0x69, 0xa3, + 0x1d, 0xc3, 0x61, 0x60, 0x76, 0xf5, 0x39, 0x5c, 0x4a, 0xa6, 0x7b, 0x36, 0x93, 0x68, 0xa4, 0x1c, + 0x44, 0xf2, 0xd0, 0x0f, 0x46, 0x94, 0x26, 0x84, 0x4f, 0xa0, 0xf9, 0xf7, 0xe1, 0x6a, 0xdf, 0x8d, + 0x8e, 0x84, 0x22, 0xef, 0xf3, 0x42, 0x46, 0x47, 0x31, 0xce, 0xdc, 0x8e, 0x67, 0xba, 0x0c, 0x67, + 0xbc, 0x45, 0x77, 0xec, 0x89, 0x63, 0x9f, 0x28, 0x6b, 0x44, 0x99, 0xc2, 0x68, 0x1c, 0xae, 0x9e, + 0x9a, 0x96, 0x91, 0xa5, 0xeb, 0x9b, 0x09, 0x2c, 0x46, 0x7f, 0x7d, 0x26, 0x1f, 0xef, 0x78, 0xd4, + 0xf8, 0xa8, 0x3b, 0x23, 0x04, 0xbf, 0x01, 0xd0, 0x75, 0x95, 0x78, 0xe9, 0x9e, 0x3e, 0x8f, 0x82, + 0xa6, 0xd0, 0xed, 0xc4, 0x11, 0x06, 0x8b, 0x96, 0x40, 0x76, 0xdc, 0xa0, 0xa5, 0x64, 0xe4, 0x76, + 0xc5, 0x9e, 0xab, 0x7a, 0xcd, 0xae, 0x2e, 0x5a, 0x26, 0xf1, 0xa8, 0x2d, 0xd6, 0xe6, 0x1f, 0xc9, + 0x50, 0x34, 0x7b, 0x5a, 0xdb, 0x04, 0xb6, 0x77, 0x01, 0x46, 0x0b, 0x88, 0x5e, 0x7b, 0x9d, 0x5a, + 0x96, 0x2c, 0x87, 0x99, 0xde, 0x9e, 0x08, 0x3d, 0x3f, 0xec, 0x6e, 0x99, 0x35, 0x63, 0x79, 0x44, + 0xb6, 0x94, 0x1b, 0x29, 0xe1, 0xa5, 0x48, 0xca, 0xc6, 0x09, 0x12, 0x1e, 0x2b, 0xda, 0xff, 0x97, + 0x87, 0x46, 0xe6, 0xc0, 0xee, 0x97, 0x78, 0xc8, 0x88, 0x31, 0x10, 0xf7, 0x2a, 0x4e, 0x88, 0x5e, + 0xcf, 0x14, 0xc6, 0xe9, 0x32, 0xe7, 0x89, 0xf8, 0x56, 0x57, 0x6f, 0x19, 0xcc, 0xd7, 0x3a, 0x60, + 0xb4, 0xef, 0x9a, 0x7a, 0xb6, 0x01, 0xd5, 0xe7, 0xe1, 0x51, 0x28, 0x5f, 0x86, 0x3a, 0x16, 0xd2, + 0xa9, 0xf1, 0x58, 0x9f, 0x3c, 0x39, 0xd8, 0x2d, 0xda, 0x7f, 0x56, 0x9a, 0xb8, 0x60, 0xf1, 0x08, + 0x2a, 0x3a, 0xa7, 0xa3, 0x74, 0x63, 0xfa, 0x44, 0x3c, 0x4b, 0x6c, 0x7a, 0xb2, 0x19, 0x94, 0x63, + 0x98, 0x31, 0xd9, 0x4a, 0x6f, 0x11, 0x15, 0x66, 0xf6, 0x8e, 0xc7, 0x04, 0x25, 0x2e, 0x68, 0xec, + 0x22, 0x5d, 0x2a, 0xc1, 0xfa, 0xa3, 0x3c, 0xac, 0xcc, 0x22, 0xc1, 0xdc, 0xa7, 0x3d, 0x76, 0xcf, + 0x21, 0x01, 0x79, 0x6b, 0xe2, 0xfa, 0x5e, 0x81, 0x46, 0x73, 0xe7, 0x82, 0x4a, 0x8c, 0x5f, 0xe6, + 0xb3, 0x3f, 0xcf, 0xc3, 0xf2, 0xd4, 0x98, 0x33, 0xe9, 0x04, 0x40, 0x45, 0x5b, 0x96, 0x3e, 0x96, + 0x4f, 0x0f, 0x4a, 0x75, 0xc3, 0x8d, 0xfc, 0x79, 0xac, 0x4f, 0x9e, 0xb6, 0xf4, 0xe5, 0x4f, 0x56, + 0xc2, 0x3c, 0x00, 0x57, 0x0d, 0xfd, 0x64, 0x57, 0xb0, 0x32, 0xd6, 0x39, 0x3a, 0xa1, 0x31, 0x98, + 0x0a, 0xd5, 0x50, 0xa2, 0x3f, 0x08, 0xb0, 0xd6, 0xaa, 0xd2, 0x71, 0xff, 0x70, 0x10, 0xf8, 0x1d, + 0x04, 0x6b, 0xb6, 0x03, 0x97, 0x67, 0xe8, 0x4d, 0x9a, 0x1c, 0x18, 0xad, 0x96, 0x00, 0xb6, 0x0e, + 0x12, 0x5d, 0x58, 0x1e, 0xcb, 0xce, 0xad, 0x83, 0x4d, 0x2a, 0x3c, 0xcd, 0x61, 0x9a, 0xde, 0x13, + 0x07, 0x58, 0x9d, 0xc4, 0xac, 0x68, 0x3f, 0x84, 0x2b, 0xfb, 0xbd, 0x48, 0xb8, 0xde, 0x96, 0x10, + 0x83, 0x00, 0x8d, 0xcd, 0x3d, 0x0d, 0xa4, 0xeb, 0xcd, 0x68, 0xf9, 0xad, 0x40, 0xd9, 0xf5, 0xbc, + 0x48, 0xcf, 0x6f, 0xdd, 0xd1, 0x80, 0xfd, 0x31, 0x5c, 0xd5, 0x02, 0xf4, 0x57, 0x3e, 0x1c, 0x8a, + 0xa1, 0x78, 0x14, 0xaa, 0xe8, 0x54, 0xb7, 0x74, 0x93, 0x56, 0xb9, 0xa6, 0x31, 0xe2, 0xa6, 0xf0, + 0xe4, 0x07, 0xe8, 0x29, 0xf5, 0xb0, 0x29, 0x6c, 0x7f, 0x9c, 0x1c, 0x04, 0x5a, 0x07, 0xb0, 0xa8, + 0x67, 0x2a, 0x51, 0xf2, 0x11, 0x2c, 0xc5, 0xe9, 0x55, 0xde, 0x4c, 0x40, 0x98, 0x8c, 0xe7, 0xad, + 0x31, 0x22, 0x67, 0x82, 0xc9, 0xfe, 0x93, 0x32, 0xc0, 0x6e, 0x7a, 0x1d, 0x76, 0x86, 0x5f, 0x98, + 0x95, 0xb1, 0x4c, 0x1d, 0x45, 0x14, 0x2f, 0x7c, 0x14, 0xf1, 0x4e, 0x9a, 0x14, 0xeb, 0x76, 0xd7, + 0xe4, 0x7d, 0xc3, 0x91, 0x4e, 0x13, 0xa9, 0xf0, 0xf8, 0x11, 0x76, 0x79, 0xf2, 0x08, 0x7b, 0x75, + 0xfa, 0xbe, 0xcb, 0x84, 0xc3, 0x1a, 0x95, 0x98, 0xd5, 0xb1, 0x12, 0xd3, 0x82, 0x1a, 0xce, 0xba, + 0x0c, 0x83, 0xd3, 0xa4, 0xe3, 0x9d, 0xc0, 0xfc, 0x1e, 0x94, 0x15, 0x5d, 0x20, 0xae, 0xd1, 0xfe, + 0x7a, 0xc5, 0x1c, 0x6b, 0x5a, 0xf4, 0x7e, 0x7e, 0x6c, 0x2e, 0xa9, 0xe8, 0x70, 0x53, 0x73, 0x32, + 0x18, 0xbe, 0x06, 0xdc, 0x0f, 0x63, 0xe5, 0x06, 0x81, 0xf0, 0x36, 0x4e, 0xb7, 0xc4, 0xa1, 0x3b, + 0x0c, 0x14, 0x85, 0xb8, 0x9a, 0x33, 0xe3, 0x8d, 0xfd, 0xd5, 0xe8, 0x72, 0x56, 0x1d, 0xca, 0x6d, + 0x37, 0xf6, 0x3b, 0xfa, 0x18, 0xd8, 0xc4, 0x4f, 0x5d, 0x08, 0x28, 0xe9, 0x49, 0x56, 0xc0, 0x94, + 0x3f, 0x16, 0x98, 0xdc, 0x2f, 0x01, 0x8c, 0xae, 0x3b, 0xb3, 0x12, 0x6e, 0xb3, 0x64, 0x25, 0xf4, + 0x29, 0x30, 0xb1, 0x52, 0x1f, 0xc2, 0x4b, 0xef, 0xd7, 0x54, 0xf1, 0x0b, 0xe4, 0xc6, 0x59, 0x0d, + 0x69, 0x42, 0xa9, 0x84, 0xee, 0xc2, 0x50, 0xac, 0x65, 0x80, 0x62, 0x92, 0xdb, 0x9b, 0xac, 0x81, + 0x59, 0x79, 0x22, 0x54, 0xb7, 0x4e, 0x62, 0xaa, 0x47, 0x16, 0x70, 0x13, 0x8e, 0xbf, 0x60, 0x8b, + 0xa8, 0xd1, 0x68, 0x13, 0xb0, 0x25, 0x14, 0x85, 0x2e, 0xb0, 0xed, 0xc6, 0x82, 0xad, 0xd8, 0x7f, + 0x3e, 0x1a, 0xe5, 0x9b, 0x69, 0xf2, 0x3c, 0x8f, 0x7d, 0x9c, 0x95, 0x5e, 0x3f, 0x82, 0xe5, 0x48, + 0x7c, 0x3a, 0xf4, 0xc7, 0xee, 0x57, 0x16, 0xcf, 0x3f, 0x41, 0x9c, 0xe6, 0xb0, 0x8f, 0x61, 0x39, + 0x01, 0x5e, 0xf8, 0xaa, 0x47, 0x35, 0x2d, 0xbf, 0x97, 0xb9, 0x00, 0x9a, 0x37, 0xd9, 0xdc, 0x19, + 0x22, 0x47, 0x17, 0x3e, 0xd3, 0xbe, 0x62, 0x61, 0x8e, 0xbe, 0xa2, 0xfd, 0x1f, 0x95, 0x4c, 0x59, + 0xab, 0xcb, 0x09, 0x2f, 0x2d, 0x27, 0xa6, 0x3d, 0xd5, 0xa8, 0x55, 0x58, 0xb8, 0x48, 0xab, 0x70, + 0xd6, 0x79, 0xdb, 0x0f, 0x31, 0x57, 0x24, 0xd3, 0x3b, 0x98, 0xa3, 0x0d, 0x3a, 0x46, 0xcb, 0x37, + 0xe8, 0xa8, 0xc1, 0x6d, 0xe9, 0xc3, 0xe0, 0xf2, 0xcc, 0xeb, 0xd8, 0xd9, 0x33, 0x05, 0x43, 0xe9, + 0x64, 0xb8, 0x32, 0x1b, 0xb5, 0x32, 0x6b, 0xa3, 0x62, 0x65, 0x67, 0xb6, 0x70, 0x0a, 0xeb, 0xae, + 0xb1, 0x7e, 0x4e, 0xc4, 0xd3, 0x3d, 0xea, 0x9a, 0x33, 0x85, 0x47, 0xa7, 0xde, 0x1f, 0x06, 0xca, + 0x37, 0x8d, 0x51, 0x0d, 0x4c, 0xfe, 0x63, 0xa0, 0x3e, 0xfd, 0x8f, 0x81, 0xf7, 0x00, 0x62, 0x81, + 0xe6, 0xbb, 0xe5, 0x77, 0x94, 0x39, 0x32, 0xbe, 0x71, 0xd6, 0xd8, 0x4c, 0x3b, 0x37, 0xc3, 0x81, + 0xfa, 0xf7, 0xdd, 0x93, 0x4d, 0xcc, 0x3a, 0xcd, 0xd9, 0x56, 0x0a, 0x4f, 0xba, 0xaf, 0xa5, 0x69, + 0xf7, 0x75, 0x0f, 0xca, 0x71, 0x47, 0x0e, 0x04, 0x5d, 0x79, 0x3e, 0x7b, 0x7d, 0xd7, 0x5a, 0x48, + 0xe4, 0x68, 0x5a, 0x6a, 0x9e, 0x60, 0x8c, 0x92, 0x11, 0x5d, 0x76, 0xae, 0x3b, 0x09, 0x68, 0x79, + 0x50, 0x31, 0xcd, 0xce, 0x19, 0xa5, 0x2a, 0xf5, 0x49, 0x0a, 0x99, 0xcb, 0x4e, 0xe9, 0xa5, 0xa2, + 0x62, 0xf6, 0x52, 0xd1, 0x2a, 0x34, 0xa2, 0x4c, 0x33, 0xdf, 0xdc, 0x24, 0xcb, 0xa0, 0xec, 0x8f, + 0xa0, 0x4c, 0xfa, 0x60, 0xc0, 0xd6, 0x53, 0xa9, 0x73, 0x36, 0x54, 0x9c, 0xe5, 0xf9, 0x0a, 0xb0, + 0x58, 0xa8, 0xdd, 0xc3, 0xfd, 0x9e, 0x68, 0xb9, 0x7d, 0x41, 0x9e, 0xaa, 0xc0, 0x9b, 0xb0, 0xa2, + 0x69, 0xe3, 0xf1, 0x37, 0x94, 0x59, 0x04, 0x7e, 0x3b, 0x72, 0xa3, 0x53, 0x56, 0xb2, 0xdf, 0xa3, + 0xa3, 0xa7, 0xc4, 0x68, 0x1a, 0xe9, 0x3f, 0x53, 0xb4, 0x6f, 0xf4, 0x44, 0x84, 0xce, 0x56, 0x1f, + 0x0c, 0x9a, 0x5c, 0x5f, 0x5f, 0x67, 0xa0, 0x84, 0x9c, 0x15, 0xed, 0x17, 0x98, 0x1a, 0x8e, 0x42, + 0xd3, 0x2f, 0x6d, 0x4f, 0xd9, 0x1b, 0x99, 0xd4, 0x68, 0xfc, 0xfe, 0x42, 0x7e, 0xde, 0xfb, 0x0b, + 0xf6, 0x13, 0xb8, 0xe4, 0x8c, 0x3b, 0x56, 0xfe, 0x0e, 0x54, 0xe5, 0x20, 0x2b, 0xe7, 0x55, 0xb6, + 0x97, 0x90, 0xdb, 0x7f, 0x93, 0x87, 0x85, 0x9d, 0x50, 0x89, 0x28, 0x74, 0x83, 0xc7, 0x81, 0xdb, + 0xe5, 0x6f, 0x27, 0x9e, 0x68, 0x76, 0x2d, 0x99, 0xa5, 0x1d, 0x77, 0x4a, 0x5d, 0xd3, 0xd4, 0xe3, + 0x57, 0x60, 0x59, 0x78, 0xbe, 0x92, 0x91, 0x4e, 0x08, 0x93, 0x6b, 0x24, 0x2b, 0xc0, 0x34, 0xba, + 0x45, 0x66, 0xbf, 0xaf, 0x97, 0xb9, 0x09, 0x2b, 0x63, 0xd8, 0x24, 0xdb, 0x2b, 0x60, 0xfc, 0x18, + 0x85, 0x84, 0x2d, 0x19, 0xaa, 0x9d, 0xd0, 0x13, 0x27, 0xac, 0x68, 0xff, 0x7b, 0x9a, 0x9e, 0x1c, + 0x98, 0xfb, 0x25, 0x91, 0x94, 0x6a, 0xd4, 0xcd, 0xd5, 0x50, 0xe6, 0xdf, 0x4b, 0x85, 0x39, 0xfe, + 0xbd, 0xf4, 0xde, 0xe8, 0xdf, 0x4b, 0x3a, 0x0e, 0xbc, 0x3e, 0x33, 0xb8, 0xd0, 0xb1, 0xb8, 0xc9, + 0x60, 0x5b, 0x22, 0xf3, 0x57, 0xa6, 0xb7, 0x4c, 0xd9, 0x52, 0x9a, 0x27, 0xe1, 0xd2, 0xe7, 0x82, + 0x0f, 0x26, 0x6f, 0xcd, 0xce, 0x77, 0x7d, 0x65, 0x2a, 0xd1, 0x82, 0x0b, 0x27, 0x5a, 0x0f, 0x27, + 0x2a, 0x84, 0xda, 0xcc, 0x06, 0xce, 0x39, 0x7f, 0xed, 0x79, 0x08, 0xd5, 0x9e, 0x1f, 0x2b, 0x19, + 0x9d, 0x52, 0x0e, 0x33, 0x7d, 0x3d, 0x3e, 0x33, 0x5b, 0xdb, 0x9a, 0x90, 0xee, 0x12, 0x24, 0x5c, + 0x56, 0x17, 0x60, 0x34, 0x8b, 0x53, 0x6e, 0xe6, 0x6b, 0xfc, 0x95, 0xec, 0x2a, 0x54, 0xe2, 0x61, + 0x7b, 0xd4, 0x9e, 0x37, 0x90, 0x75, 0x02, 0xd6, 0x54, 0x88, 0xde, 0x13, 0x91, 0xd6, 0x0f, 0xdd, + 0x6e, 0xd2, 0xc6, 0x37, 0x9f, 0x4f, 0x61, 0xfe, 0x5e, 0x76, 0x79, 0xb4, 0x09, 0xad, 0x9e, 0x31, + 0xc7, 0xa9, 0xe4, 0xcc, 0x3a, 0x59, 0x0f, 0xa0, 0x91, 0x19, 0x3a, 0xba, 0xce, 0x61, 0xe8, 0xc9, + 0xa4, 0x4b, 0x88, 0xcf, 0xfa, 0x4a, 0xbf, 0x97, 0xf4, 0x09, 0xe9, 0xf9, 0xf6, 0xe7, 0x05, 0x58, + 0x1a, 0x37, 0x17, 0xea, 0x97, 0x6a, 0x2f, 0xb5, 0x1b, 0x78, 0x99, 0xc2, 0x96, 0xf1, 0x4b, 0xd0, + 0xd8, 0xd3, 0x89, 0x1e, 0x21, 0x96, 0xf1, 0xd5, 0xb6, 0xec, 0x0b, 0xb6, 0x9a, 0xbd, 0x0c, 0xfd, + 0x26, 0xba, 0x58, 0xdd, 0x43, 0x66, 0x03, 0x5e, 0x37, 0xd7, 0xc7, 0x3e, 0x2b, 0xf0, 0xc5, 0x4c, + 0x79, 0xf5, 0xb3, 0x02, 0x5f, 0x81, 0x4b, 0x1b, 0xc3, 0xd0, 0x0b, 0x84, 0x97, 0x62, 0xff, 0x2a, + 0x8b, 0x4d, 0x0b, 0xa9, 0xcf, 0xb0, 0x76, 0xab, 0xb7, 0x86, 0x6d, 0x53, 0x44, 0xfd, 0x5e, 0x89, + 0x5f, 0x85, 0x65, 0x43, 0x35, 0xca, 0xc2, 0xd8, 0xef, 0x97, 0xf8, 0x65, 0x58, 0x5a, 0xd7, 0x73, + 0x66, 0x14, 0x65, 0x7f, 0x50, 0x42, 0x15, 0xe8, 0xf8, 0xec, 0x0f, 0x49, 0x4e, 0xda, 0xae, 0x61, + 0x7f, 0x5c, 0xe2, 0x1c, 0x16, 0x9f, 0xf9, 0x71, 0xec, 0x87, 0x5d, 0x23, 0xfb, 0xa7, 0xa5, 0xdb, + 0x7f, 0x9b, 0x87, 0xa5, 0x71, 0x7f, 0x8a, 0xf9, 0x61, 0x20, 0xc3, 0xae, 0xd2, 0x77, 0xb4, 0x17, + 0xa1, 0x1e, 0xf7, 0x64, 0xa4, 0x08, 0xa4, 0x8e, 0x76, 0x48, 0x27, 0x5f, 0xba, 0xf8, 0xd4, 0xad, + 0x2e, 0x7d, 0x77, 0x40, 0xb9, 0x5d, 0xd6, 0xc0, 0x59, 0xf2, 0xf0, 0xfb, 0xa5, 0x34, 0xd7, 0xa5, + 0x13, 0xb8, 0xe4, 0x84, 0x83, 0x55, 0x90, 0x74, 0x18, 0x05, 0x3a, 0xe7, 0x15, 0x7d, 0xd7, 0x0f, + 0xf4, 0x65, 0xcc, 0x41, 0x0f, 0xeb, 0xca, 0xba, 0xc6, 0xca, 0x4f, 0x7c, 0x7d, 0xed, 0xd1, 0x44, + 0x2f, 0x0f, 0xf5, 0x48, 0xd7, 0x9f, 0x89, 0x8d, 0xdb, 0xff, 0xfc, 0xe5, 0x8d, 0xfc, 0x17, 0x5f, + 0xde, 0xc8, 0xff, 0xd7, 0x97, 0x37, 0xf2, 0x9f, 0x7f, 0x75, 0x23, 0xf7, 0xc5, 0x57, 0x37, 0x72, + 0x3f, 0xff, 0xea, 0x46, 0xee, 0x23, 0x36, 0xf9, 0x3f, 0xce, 0x76, 0x85, 0x2c, 0xfb, 0xde, 0xff, + 0x07, 0x00, 0x00, 0xff, 0xff, 0x5d, 0x0a, 0xe7, 0xf2, 0xe2, 0x39, 0x00, 0x00, } func (m *SmartBlockSnapshotBase) Marshal() (dAtA []byte, err error) { diff --git a/pkg/lib/pb/model/protos/models.proto b/pkg/lib/pb/model/protos/models.proto index 2710ab332..ce2d36b48 100644 --- a/pkg/lib/pb/model/protos/models.proto +++ b/pkg/lib/pb/model/protos/models.proto @@ -790,6 +790,7 @@ message InternalFlag { editorDeleteEmpty = 0; editorSelectType = 1; editorSelectTemplate = 2; + collectionDontIndex = 3; } }