diff --git a/core/block/collection/service.go b/core/block/collection/service.go index eeb7967c3..d42288887 100644 --- a/core/block/collection/service.go +++ b/core/block/collection/service.go @@ -2,6 +2,7 @@ package collection import ( "fmt" + "strings" "sync" "github.com/anytypeio/any-sync/app" @@ -18,6 +19,7 @@ import ( "github.com/anytypeio/go-anytype-middleware/pkg/lib/bundle" coresb "github.com/anytypeio/go-anytype-middleware/pkg/lib/core/smartblock" "github.com/anytypeio/go-anytype-middleware/pkg/lib/database" + "github.com/anytypeio/go-anytype-middleware/pkg/lib/localstore/addr" "github.com/anytypeio/go-anytype-middleware/pkg/lib/localstore/objectstore" "github.com/anytypeio/go-anytype-middleware/pkg/lib/logging" "github.com/anytypeio/go-anytype-middleware/pkg/lib/pb/model" @@ -223,9 +225,9 @@ func (s *Service) ObjectToCollection(id string) (string, error) { // TODO To be rewritten to layout change var ( - details *types.Struct - dvBlock *model.Block - typesFromSet []string + details *types.Struct + dvBlock *model.Block + typesAndRelsFromSet []string ) if err := block.Do(s.picker, id, func(sb smartblock.SmartBlock) error { details = pbtypes.CopyStruct(sb.Details()) @@ -234,7 +236,7 @@ func (s *Service) ObjectToCollection(id string) (string, error) { b := st.Pick(template.DataviewBlockId) if b != nil { - typesFromSet = pbtypes.GetStringList(details, bundle.RelationKeySetOf.String()) + typesAndRelsFromSet = pbtypes.GetStringList(details, bundle.RelationKeySetOf.String()) delete(details.Fields, bundle.RelationKeySetOf.String()) pbtypes.UpdateStringList(details, bundle.RelationKeyFeaturedRelations.String(), func(fr []string) []string { return slice.Remove(fr, bundle.RelationKeySetOf.String()) @@ -257,6 +259,7 @@ func (s *Service) ObjectToCollection(id string) (string, error) { } if dvBlock != nil { + filters := s.generateFilters(typesAndRelsFromSet) err = block.DoState(s.picker, newID, func(st *state.State, sb smartblock.SmartBlock) error { dvBlock.Id = template.DataviewBlockId dvBlock.GetDataview().IsCollection = true @@ -264,13 +267,7 @@ func (s *Service) ObjectToCollection(id string) (string, error) { st.Set(b) recs, _, qErr := s.objectStore.Query(nil, database.Query{ - Filters: []*model.BlockContentDataviewFilter{ - { - RelationKey: bundle.RelationKeyType.String(), - Condition: model.BlockContentDataviewFilter_In, - Value: pbtypes.StringList(typesFromSet), - }, - }, + Filters: filters, }) if qErr != nil { return fmt.Errorf("can't get records for collection: %w", err) @@ -307,3 +304,33 @@ func (s *Service) ObjectToCollection(id string) (string, error) { return newID, nil } + +func (s *Service) generateFilters(typesAndRels []string) []*model.BlockContentDataviewFilter { + var ( + types, rels []string + filters []*model.BlockContentDataviewFilter + ) + for _, id := range typesAndRels { + if strings.HasPrefix(id, addr.ObjectTypeKeyToIdPrefix) { + types = append(types, id) + } else if strings.HasPrefix(id, addr.RelationKeyToIdPrefix) { + rels = append(rels, strings.TrimPrefix(id, addr.RelationKeyToIdPrefix)) + } + } + if len(types) != 0 { + filters = append(filters, &model.BlockContentDataviewFilter{ + RelationKey: bundle.RelationKeyType.String(), + Condition: model.BlockContentDataviewFilter_In, + Value: pbtypes.StringList(types), + }) + } + if len(rels) != 0 { + for _, rel := range rels { + filters = append(filters, &model.BlockContentDataviewFilter{ + RelationKey: rel, + Condition: model.BlockContentDataviewFilter_Exists, + }) + } + } + return filters +} diff --git a/docs/proto.md b/docs/proto.md index 999cddab0..64681f055 100644 --- a/docs/proto.md +++ b/docs/proto.md @@ -3,1398 +3,1398 @@ ## 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.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.AddWithObjectId](#anytype.Rpc.Object.AddWithObjectId) - - [Rpc.Object.AddWithObjectId.Request](#anytype.Rpc.Object.AddWithObjectId.Request) - - [Rpc.Object.AddWithObjectId.Response](#anytype.Rpc.Object.AddWithObjectId.Response) - - [Rpc.Object.AddWithObjectId.Response.Error](#anytype.Rpc.Object.AddWithObjectId.Response.Error) - - [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.AddWithObjectId](#anytype-Rpc-Object-AddWithObjectId) + - [Rpc.Object.AddWithObjectId.Request](#anytype-Rpc-Object-AddWithObjectId-Request) + - [Rpc.Object.AddWithObjectId.Response](#anytype-Rpc-Object-AddWithObjectId-Response) + - [Rpc.Object.AddWithObjectId.Response.Error](#anytype-Rpc-Object-AddWithObjectId-Response-Error) + - [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.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.AddWithObjectId.Response.Error.Code](#anytype.Rpc.Object.AddWithObjectId.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.AddWithObjectId.Response.Error.Code](#anytype-Rpc-Object-AddWithObjectId-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.Restriction](#anytype.Event.Object.Restriction) - - [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.Restriction](#anytype-Event-Object-Restriction) + - [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) - +

Top

## pb/protos/service/service.proto @@ -1407,216 +1407,216 @@ - + ### 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) | | -| ObjectAddWithObjectId | [Rpc.Object.AddWithObjectId.Request](#anytype.Rpc.Object.AddWithObjectId.Request) | [Rpc.Object.AddWithObjectId.Response](#anytype.Rpc.Object.AddWithObjectId.Response) | | -| ObjectShareByLink | [Rpc.Object.ShareByLink.Request](#anytype.Rpc.Object.ShareByLink.Request) | [Rpc.Object.ShareByLink.Response](#anytype.Rpc.Object.ShareByLink.Response) | | -| ObjectOpenBreadcrumbs | [Rpc.Object.OpenBreadcrumbs.Request](#anytype.Rpc.Object.OpenBreadcrumbs.Request) | [Rpc.Object.OpenBreadcrumbs.Response](#anytype.Rpc.Object.OpenBreadcrumbs.Response) | | -| ObjectSetBreadcrumbs | [Rpc.Object.SetBreadcrumbs.Request](#anytype.Rpc.Object.SetBreadcrumbs.Request) | [Rpc.Object.SetBreadcrumbs.Response](#anytype.Rpc.Object.SetBreadcrumbs.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 | +| 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) | | +| ObjectAddWithObjectId | [Rpc.Object.AddWithObjectId.Request](#anytype-Rpc-Object-AddWithObjectId-Request) | [Rpc.Object.AddWithObjectId.Response](#anytype-Rpc-Object-AddWithObjectId-Response) | | +| ObjectShareByLink | [Rpc.Object.ShareByLink.Request](#anytype-Rpc-Object-ShareByLink-Request) | [Rpc.Object.ShareByLink.Response](#anytype-Rpc-Object-ShareByLink-Response) | | +| ObjectOpenBreadcrumbs | [Rpc.Object.OpenBreadcrumbs.Request](#anytype-Rpc-Object-OpenBreadcrumbs-Request) | [Rpc.Object.OpenBreadcrumbs.Response](#anytype-Rpc-Object-OpenBreadcrumbs-Response) | | +| ObjectSetBreadcrumbs | [Rpc.Object.SetBreadcrumbs.Request](#anytype-Rpc-Object-SetBreadcrumbs-Request) | [Rpc.Object.SetBreadcrumbs.Response](#anytype-Rpc-Object-SetBreadcrumbs-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 | - +

Top

## pb/protos/changes.proto - + ### Change the element of change tree used to store and internal apply smartBlock history @@ -1627,9 +1627,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 +1638,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockCreate @@ -1647,15 +1647,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 +1664,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 +1672,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockMove @@ -1681,7 +1681,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 +1689,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockRemove @@ -1704,7 +1704,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockUpdate @@ -1712,14 +1712,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 +1727,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 +1759,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 +1781,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.FileKeys @@ -1790,14 +1790,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 +1813,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.ObjectTypeAdd @@ -1828,7 +1828,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.ObjectTypeRemove @@ -1843,7 +1843,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.RelationAdd @@ -1851,14 +1851,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 +1873,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.Snapshot @@ -1881,16 +1881,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 +1906,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreKeySet @@ -1915,14 +1915,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 +1937,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate @@ -1946,16 +1946,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 +1971,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate.Move @@ -1987,7 +1987,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate.Remove @@ -2002,7 +2002,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change._RelationAdd @@ -2010,14 +2010,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 +2032,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change._RelationUpdate @@ -2041,19 +2041,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 +2061,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 +2092,14 @@ the element of change tree used to store and internal apply smartBlock history - +

Top

## pb/protos/commands.proto - + ### Empty @@ -2109,7 +2109,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 +2122,7 @@ Response – message from a middleware. - + ### Rpc.Account @@ -2132,7 +2132,7 @@ Response – message from a middleware. - + ### Rpc.Account.Config @@ -2144,14 +2144,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 +2161,7 @@ Response – message from a middleware. - + ### Rpc.Account.ConfigUpdate.Request @@ -2177,7 +2177,7 @@ Response – message from a middleware. - + ### Rpc.Account.ConfigUpdate.Response @@ -2185,14 +2185,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 +2200,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 +2208,7 @@ Response – message from a middleware. - + ### Rpc.Account.Create @@ -2218,7 +2218,7 @@ Response – message from a middleware. - + ### Rpc.Account.Create.Request Front end to middleware request-to-create-an account @@ -2237,7 +2237,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 +2245,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 +2262,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 +2270,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete @@ -2280,7 +2280,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete.Request @@ -2295,7 +2295,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete.Response @@ -2303,15 +2303,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 +2319,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 +2327,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig @@ -2337,7 +2337,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig.Get @@ -2347,7 +2347,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig.Get.Request @@ -2357,7 +2357,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Move @@ -2367,7 +2367,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 +2382,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Move.Response @@ -2390,14 +2390,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 +2405,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 +2413,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Recover @@ -2423,7 +2423,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 +2434,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 +2442,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 +2457,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 +2465,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport @@ -2475,7 +2475,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport.Request @@ -2491,7 +2491,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport.Response @@ -2500,14 +2500,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 @@ -2515,7 +2515,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) | | | @@ -2523,7 +2523,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.Select @@ -2533,7 +2533,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 @@ -2550,7 +2550,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 @@ -2558,16 +2558,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 @@ -2575,7 +2575,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) | | | @@ -2583,7 +2583,7 @@ Middleware-to-front-end response for an account select request, that can contain - + ### Rpc.Account.Stop @@ -2593,7 +2593,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 @@ -2608,7 +2608,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 @@ -2616,14 +2616,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 @@ -2631,7 +2631,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) | | | @@ -2639,7 +2639,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App @@ -2649,7 +2649,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion @@ -2659,7 +2659,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Request @@ -2669,7 +2669,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Response @@ -2677,7 +2677,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 | @@ -2686,7 +2686,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Response.Error @@ -2694,7 +2694,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) | | | @@ -2702,7 +2702,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.SetDeviceState @@ -2712,7 +2712,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.SetDeviceState.Request @@ -2720,14 +2720,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 @@ -2735,14 +2735,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 @@ -2750,7 +2750,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) | | | @@ -2758,7 +2758,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown @@ -2768,7 +2768,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown.Request @@ -2778,7 +2778,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown.Response @@ -2786,14 +2786,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 @@ -2801,7 +2801,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) | | | @@ -2809,7 +2809,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.Block Block commands @@ -2819,7 +2819,7 @@ Block commands - + ### Rpc.Block.Copy @@ -2829,7 +2829,7 @@ Block commands - + ### Rpc.Block.Copy.Request @@ -2838,15 +2838,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 @@ -2854,17 +2854,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 @@ -2872,7 +2872,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) | | | @@ -2880,7 +2880,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. @@ -2902,7 +2902,7 @@ Create a Smart/Internal block. Request can contain a block with a content, or it - + ### Rpc.Block.Create.Request common simple block command @@ -2912,15 +2912,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 @@ -2928,16 +2928,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 @@ -2945,7 +2945,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) | | | @@ -2953,7 +2953,7 @@ common simple block command - + ### Rpc.Block.CreateWidget @@ -2963,7 +2963,7 @@ common simple block command - + ### Rpc.Block.CreateWidget.Request @@ -2973,16 +2973,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 @@ -2990,16 +2990,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 @@ -3007,7 +3007,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) | | | @@ -3015,7 +3015,7 @@ common simple block command - + ### Rpc.Block.Cut @@ -3025,7 +3025,7 @@ common simple block command - + ### Rpc.Block.Cut.Request @@ -3034,15 +3034,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 @@ -3050,18 +3050,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 @@ -3069,7 +3069,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) | | | @@ -3077,7 +3077,7 @@ common simple block command - + ### Rpc.Block.Download @@ -3087,7 +3087,7 @@ common simple block command - + ### Rpc.Block.Download.Request @@ -3103,7 +3103,7 @@ common simple block command - + ### Rpc.Block.Download.Response @@ -3111,15 +3111,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 @@ -3127,7 +3127,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) | | | @@ -3135,7 +3135,7 @@ common simple block command - + ### Rpc.Block.Export @@ -3145,7 +3145,7 @@ common simple block command - + ### Rpc.Block.Export.Request @@ -3154,14 +3154,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 @@ -3169,16 +3169,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 @@ -3186,7 +3186,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) | | | @@ -3194,7 +3194,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects @@ -3204,7 +3204,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects.Request @@ -3221,7 +3221,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects.Response @@ -3229,16 +3229,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 @@ -3246,7 +3246,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) | | | @@ -3254,7 +3254,7 @@ common simple block command - + ### Rpc.Block.ListDelete Remove blocks from the childrenIds of its parents @@ -3264,7 +3264,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDelete.Request @@ -3280,7 +3280,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDelete.Response @@ -3288,15 +3288,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 @@ -3304,7 +3304,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) | | | @@ -3312,7 +3312,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDuplicate Makes blocks copy by given ids and paste it to shown place @@ -3322,7 +3322,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListDuplicate.Request @@ -3333,7 +3333,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) | | | @@ -3341,7 +3341,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListDuplicate.Response @@ -3349,16 +3349,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 @@ -3366,7 +3366,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) | | | @@ -3374,7 +3374,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToExistingObject @@ -3384,7 +3384,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToExistingObject.Request @@ -3396,14 +3396,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 @@ -3411,15 +3411,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 @@ -3427,7 +3427,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) | | | @@ -3435,7 +3435,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToNewObject @@ -3445,7 +3445,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToNewObject.Request @@ -3455,16 +3455,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 @@ -3472,16 +3472,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 @@ -3489,7 +3489,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) | | | @@ -3497,7 +3497,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetAlign @@ -3507,7 +3507,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetAlign.Request @@ -3517,14 +3517,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 @@ -3532,15 +3532,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 @@ -3548,7 +3548,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) | | | @@ -3556,7 +3556,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor @@ -3566,7 +3566,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor.Request @@ -3583,7 +3583,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor.Response @@ -3591,15 +3591,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 @@ -3607,7 +3607,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) | | | @@ -3615,7 +3615,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetFields @@ -3625,7 +3625,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetFields.Request @@ -3634,14 +3634,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 @@ -3650,14 +3650,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 @@ -3665,15 +3665,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 @@ -3681,7 +3681,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) | | | @@ -3689,7 +3689,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetVerticalAlign @@ -3699,7 +3699,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetVerticalAlign.Request @@ -3709,14 +3709,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 @@ -3724,15 +3724,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 @@ -3740,7 +3740,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) | | | @@ -3748,7 +3748,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListTurnInto @@ -3758,7 +3758,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListTurnInto.Request @@ -3768,14 +3768,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 @@ -3783,15 +3783,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 @@ -3799,7 +3799,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) | | | @@ -3807,7 +3807,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListUpdate @@ -3817,7 +3817,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListUpdate.Request @@ -3827,19 +3827,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 @@ -3847,16 +3847,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 @@ -3866,7 +3866,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Merge.Request @@ -3883,7 +3883,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Merge.Response @@ -3891,15 +3891,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 @@ -3907,7 +3907,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) | | | @@ -3915,7 +3915,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste @@ -3925,7 +3925,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste.Request @@ -3935,20 +3935,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 @@ -3965,7 +3965,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste.Response @@ -3973,18 +3973,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 @@ -3992,7 +3992,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) | | | @@ -4000,7 +4000,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Replace @@ -4010,7 +4010,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Replace.Request @@ -4020,14 +4020,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 @@ -4035,16 +4035,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 @@ -4052,7 +4052,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) | | | @@ -4060,7 +4060,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.SetFields @@ -4070,7 +4070,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.SetFields.Request @@ -4080,14 +4080,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 @@ -4095,15 +4095,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 @@ -4111,7 +4111,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) | | | @@ -4119,7 +4119,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Split @@ -4129,7 +4129,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Split.Request @@ -4139,16 +4139,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 @@ -4156,16 +4156,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 @@ -4173,7 +4173,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) | | | @@ -4181,7 +4181,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload @@ -4191,7 +4191,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload.Request @@ -4209,7 +4209,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload.Response @@ -4217,15 +4217,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 @@ -4233,7 +4233,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) | | | @@ -4241,7 +4241,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark @@ -4251,7 +4251,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch @@ -4261,7 +4261,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch.Request @@ -4271,7 +4271,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) | | | @@ -4279,7 +4279,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch.Response @@ -4287,16 +4287,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 @@ -4304,7 +4304,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) | | | @@ -4312,7 +4312,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch @@ -4322,7 +4322,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch.Request @@ -4339,7 +4339,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch.Response @@ -4347,15 +4347,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 @@ -4363,7 +4363,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) | | | @@ -4371,7 +4371,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview @@ -4381,7 +4381,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark @@ -4391,7 +4391,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Request @@ -4408,7 +4408,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Response @@ -4416,7 +4416,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) | | | @@ -4424,7 +4424,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Response.Error @@ -4432,7 +4432,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) | | | @@ -4440,7 +4440,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject @@ -4450,7 +4450,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject.Request @@ -4467,7 +4467,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject.Response @@ -4475,18 +4475,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 @@ -4494,7 +4494,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) | | | @@ -4502,7 +4502,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter @@ -4512,7 +4512,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Add @@ -4522,7 +4522,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Add.Request @@ -4533,14 +4533,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 @@ -4548,15 +4548,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 @@ -4564,7 +4564,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) | | | @@ -4572,7 +4572,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove @@ -4582,7 +4582,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove.Request @@ -4600,7 +4600,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove.Response @@ -4608,15 +4608,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 @@ -4624,7 +4624,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) | | | @@ -4632,7 +4632,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Replace @@ -4642,7 +4642,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Replace.Request @@ -4654,14 +4654,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 @@ -4669,15 +4669,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 @@ -4685,7 +4685,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) | | | @@ -4693,7 +4693,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort @@ -4703,7 +4703,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort.Request @@ -4721,7 +4721,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort.Response @@ -4729,15 +4729,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 @@ -4745,7 +4745,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) | | | @@ -4753,7 +4753,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder @@ -4763,7 +4763,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder.Update @@ -4773,7 +4773,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder.Update.Request @@ -4783,14 +4783,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 @@ -4798,15 +4798,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 @@ -4814,7 +4814,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) | | | @@ -4822,7 +4822,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder @@ -4832,7 +4832,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move @@ -4842,7 +4842,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move.Request @@ -4862,7 +4862,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move.Response @@ -4870,15 +4870,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 @@ -4886,7 +4886,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) | | | @@ -4894,7 +4894,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Update @@ -4904,7 +4904,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Update.Request @@ -4914,14 +4914,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 @@ -4929,15 +4929,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 @@ -4945,7 +4945,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) | | | @@ -4953,7 +4953,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation @@ -4963,7 +4963,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add @@ -4973,7 +4973,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add.Request @@ -4990,7 +4990,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add.Response @@ -4998,15 +4998,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 @@ -5014,7 +5014,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) | | | @@ -5022,7 +5022,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete @@ -5032,7 +5032,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete.Request @@ -5049,7 +5049,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete.Response @@ -5057,15 +5057,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 @@ -5073,7 +5073,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) | | | @@ -5081,7 +5081,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable @@ -5091,7 +5091,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable.Request @@ -5107,7 +5107,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable.Response @@ -5115,15 +5115,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 @@ -5131,7 +5131,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) | | | @@ -5139,7 +5139,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource @@ -5149,7 +5149,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource.Request @@ -5166,7 +5166,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource.Response @@ -5174,15 +5174,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 @@ -5190,7 +5190,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) | | | @@ -5198,7 +5198,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort @@ -5208,7 +5208,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Add @@ -5218,7 +5218,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Add.Request @@ -5229,14 +5229,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 @@ -5244,15 +5244,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 @@ -5260,7 +5260,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) | | | @@ -5268,7 +5268,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove @@ -5278,7 +5278,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove.Request @@ -5296,7 +5296,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove.Response @@ -5304,15 +5304,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 @@ -5320,7 +5320,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) | | | @@ -5328,7 +5328,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Replace @@ -5338,7 +5338,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Replace.Request @@ -5350,14 +5350,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 @@ -5365,15 +5365,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 @@ -5381,7 +5381,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) | | | @@ -5389,7 +5389,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort @@ -5399,7 +5399,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort.Request @@ -5417,7 +5417,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort.Response @@ -5425,15 +5425,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 @@ -5441,7 +5441,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) | | | @@ -5449,7 +5449,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View @@ -5459,7 +5459,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create @@ -5469,7 +5469,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Request @@ -5479,7 +5479,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 | | @@ -5487,7 +5487,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Response @@ -5495,8 +5495,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) | | | @@ -5504,7 +5504,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Response.Error @@ -5512,7 +5512,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) | | | @@ -5520,7 +5520,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete @@ -5530,7 +5530,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete.Request @@ -5547,7 +5547,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete.Response @@ -5555,15 +5555,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 @@ -5571,7 +5571,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) | | | @@ -5579,7 +5579,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) @@ -5589,7 +5589,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetActive.Request @@ -5608,7 +5608,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetActive.Response @@ -5616,15 +5616,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 @@ -5632,7 +5632,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) | | | @@ -5640,7 +5640,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition @@ -5650,7 +5650,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition.Request @@ -5668,7 +5668,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition.Response @@ -5676,15 +5676,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 @@ -5692,7 +5692,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) | | | @@ -5700,7 +5700,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.Update @@ -5710,7 +5710,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.Update.Request @@ -5721,14 +5721,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 @@ -5736,15 +5736,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 @@ -5752,7 +5752,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) | | | @@ -5760,7 +5760,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation @@ -5770,7 +5770,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Add @@ -5780,7 +5780,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Add.Request @@ -5791,14 +5791,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 @@ -5806,15 +5806,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 @@ -5822,7 +5822,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) | | | @@ -5830,7 +5830,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove @@ -5840,7 +5840,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove.Request @@ -5858,7 +5858,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove.Response @@ -5866,15 +5866,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 @@ -5882,7 +5882,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) | | | @@ -5890,7 +5890,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Replace @@ -5900,7 +5900,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Replace.Request @@ -5912,14 +5912,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 @@ -5927,15 +5927,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 @@ -5943,7 +5943,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) | | | @@ -5951,7 +5951,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort @@ -5961,7 +5961,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort.Request @@ -5979,7 +5979,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort.Response @@ -5987,15 +5987,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 @@ -6003,7 +6003,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) | | | @@ -6011,7 +6011,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv @@ -6021,7 +6021,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv.ListSetStyle @@ -6031,7 +6031,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv.ListSetStyle.Request @@ -6041,14 +6041,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 @@ -6056,15 +6056,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 @@ -6072,7 +6072,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) | | | @@ -6080,7 +6080,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile @@ -6090,7 +6090,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.CreateAndUpload @@ -6100,7 +6100,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.CreateAndUpload.Request @@ -6110,17 +6110,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 @@ -6128,16 +6128,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 @@ -6145,7 +6145,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) | | | @@ -6153,7 +6153,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.ListSetStyle @@ -6163,7 +6163,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.ListSetStyle.Request @@ -6173,14 +6173,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 @@ -6188,15 +6188,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 @@ -6204,7 +6204,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) | | | @@ -6212,7 +6212,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName @@ -6222,7 +6222,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName.Request @@ -6239,7 +6239,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName.Response @@ -6247,15 +6247,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 @@ -6263,7 +6263,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) | | | @@ -6271,7 +6271,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage @@ -6281,7 +6281,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName @@ -6291,7 +6291,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName.Request @@ -6308,7 +6308,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName.Response @@ -6316,14 +6316,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 @@ -6331,7 +6331,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) | | | @@ -6339,7 +6339,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth @@ -6349,7 +6349,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth.Request @@ -6366,7 +6366,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth.Response @@ -6374,14 +6374,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 @@ -6389,7 +6389,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) | | | @@ -6397,7 +6397,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex @@ -6407,7 +6407,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText @@ -6417,7 +6417,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText.Request @@ -6434,7 +6434,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText.Response @@ -6442,15 +6442,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 @@ -6458,7 +6458,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) | | | @@ -6466,7 +6466,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink @@ -6476,7 +6476,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink.CreateWithObject @@ -6486,7 +6486,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink.CreateWithObject.Request @@ -6495,21 +6495,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 @@ -6517,17 +6517,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 @@ -6535,7 +6535,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) | | | @@ -6543,7 +6543,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance @@ -6553,7 +6553,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance.Request @@ -6563,9 +6563,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 | | @@ -6573,7 +6573,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance.Response @@ -6581,15 +6581,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 @@ -6597,7 +6597,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) | | | @@ -6605,7 +6605,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation @@ -6615,7 +6615,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add @@ -6625,7 +6625,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add.Request @@ -6642,7 +6642,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add.Response @@ -6650,15 +6650,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 @@ -6666,7 +6666,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) | | | @@ -6674,7 +6674,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey @@ -6684,7 +6684,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey.Request @@ -6701,7 +6701,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey.Response @@ -6709,15 +6709,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 @@ -6725,7 +6725,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) | | | @@ -6733,7 +6733,7 @@ id of the closest simple block | - + ### Rpc.BlockTable @@ -6743,7 +6743,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnCreate @@ -6753,7 +6753,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnCreate.Request @@ -6763,14 +6763,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 @@ -6778,15 +6778,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 @@ -6794,7 +6794,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) | | | @@ -6802,7 +6802,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete @@ -6812,7 +6812,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete.Request @@ -6828,7 +6828,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete.Response @@ -6836,15 +6836,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 @@ -6852,7 +6852,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) | | | @@ -6860,7 +6860,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDuplicate @@ -6870,7 +6870,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDuplicate.Request @@ -6881,14 +6881,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 @@ -6896,16 +6896,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 @@ -6913,7 +6913,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) | | | @@ -6921,7 +6921,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill @@ -6931,7 +6931,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill.Request @@ -6947,7 +6947,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill.Response @@ -6955,15 +6955,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 @@ -6971,7 +6971,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) | | | @@ -6979,7 +6979,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnMove @@ -6989,7 +6989,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnMove.Request @@ -7000,14 +7000,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 @@ -7015,15 +7015,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 @@ -7031,7 +7031,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) | | | @@ -7039,7 +7039,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create @@ -7049,7 +7049,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create.Request @@ -7059,7 +7059,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) | | | @@ -7069,7 +7069,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create.Response @@ -7077,16 +7077,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 @@ -7094,7 +7094,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) | | | @@ -7102,7 +7102,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand @@ -7112,7 +7112,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand.Request @@ -7130,7 +7130,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand.Response @@ -7138,15 +7138,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 @@ -7154,7 +7154,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) | | | @@ -7162,7 +7162,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowCreate @@ -7172,7 +7172,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowCreate.Request @@ -7182,14 +7182,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 @@ -7197,15 +7197,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 @@ -7213,7 +7213,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) | | | @@ -7221,7 +7221,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete @@ -7231,7 +7231,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete.Request @@ -7247,7 +7247,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete.Response @@ -7255,15 +7255,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 @@ -7271,7 +7271,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) | | | @@ -7279,7 +7279,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDuplicate @@ -7289,7 +7289,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDuplicate.Request @@ -7300,14 +7300,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 @@ -7315,15 +7315,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 @@ -7331,7 +7331,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) | | | @@ -7339,7 +7339,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean @@ -7349,7 +7349,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean.Request @@ -7365,7 +7365,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean.Response @@ -7373,15 +7373,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 @@ -7389,7 +7389,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) | | | @@ -7397,7 +7397,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill @@ -7407,7 +7407,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill.Request @@ -7423,7 +7423,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill.Response @@ -7431,15 +7431,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 @@ -7447,7 +7447,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) | | | @@ -7455,7 +7455,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader @@ -7465,7 +7465,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader.Request @@ -7482,7 +7482,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader.Response @@ -7490,15 +7490,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 @@ -7506,7 +7506,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) | | | @@ -7514,7 +7514,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Sort @@ -7524,7 +7524,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Sort.Request @@ -7534,14 +7534,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 @@ -7549,15 +7549,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 @@ -7565,7 +7565,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) | | | @@ -7573,7 +7573,7 @@ id of the closest simple block | - + ### Rpc.BlockText @@ -7583,7 +7583,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent @@ -7593,7 +7593,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent.Request @@ -7609,7 +7609,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent.Response @@ -7617,15 +7617,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 @@ -7633,7 +7633,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) | | | @@ -7641,7 +7641,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle @@ -7651,7 +7651,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle.Request @@ -7667,7 +7667,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle.Response @@ -7675,15 +7675,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 @@ -7691,7 +7691,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) | | | @@ -7699,7 +7699,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor @@ -7709,7 +7709,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor.Request @@ -7726,7 +7726,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor.Response @@ -7734,15 +7734,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 @@ -7750,7 +7750,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) | | | @@ -7758,7 +7758,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetMark @@ -7768,7 +7768,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetMark.Request @@ -7778,14 +7778,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 @@ -7793,15 +7793,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 @@ -7809,7 +7809,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) | | | @@ -7817,7 +7817,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetStyle @@ -7827,7 +7827,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetStyle.Request @@ -7837,14 +7837,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 @@ -7852,15 +7852,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 @@ -7868,7 +7868,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) | | | @@ -7876,7 +7876,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked @@ -7886,7 +7886,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked.Request @@ -7903,7 +7903,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked.Response @@ -7911,15 +7911,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 @@ -7927,7 +7927,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) | | | @@ -7935,7 +7935,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor @@ -7945,7 +7945,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor.Request @@ -7962,7 +7962,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor.Response @@ -7970,15 +7970,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 @@ -7986,7 +7986,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) | | | @@ -7994,7 +7994,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon @@ -8004,7 +8004,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon.Request @@ -8022,7 +8022,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon.Response @@ -8030,15 +8030,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 @@ -8046,7 +8046,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) | | | @@ -8054,7 +8054,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetMarks @@ -8064,7 +8064,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetMarks.Get Get marks list in the selected range in text block. @@ -8074,7 +8074,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetMarks.Get.Request @@ -8084,14 +8084,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 @@ -8099,15 +8099,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 @@ -8115,7 +8115,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) | | | @@ -8123,7 +8123,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetStyle @@ -8133,7 +8133,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetStyle.Request @@ -8143,14 +8143,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 @@ -8158,15 +8158,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 @@ -8174,7 +8174,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) | | | @@ -8182,7 +8182,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetText @@ -8192,7 +8192,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetText.Request @@ -8203,14 +8203,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 @@ -8218,15 +8218,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 @@ -8234,7 +8234,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) | | | @@ -8242,7 +8242,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo @@ -8252,7 +8252,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName @@ -8262,7 +8262,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName.Request @@ -8279,7 +8279,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName.Response @@ -8287,14 +8287,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 @@ -8302,7 +8302,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) | | | @@ -8310,7 +8310,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth @@ -8320,7 +8320,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth.Request @@ -8337,7 +8337,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth.Response @@ -8345,14 +8345,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 @@ -8360,7 +8360,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) | | | @@ -8368,7 +8368,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug @@ -8378,7 +8378,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore @@ -8388,7 +8388,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore.Request @@ -8404,7 +8404,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore.Response @@ -8412,16 +8412,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 @@ -8429,7 +8429,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) | | | @@ -8437,7 +8437,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping @@ -8447,7 +8447,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Request @@ -8463,7 +8463,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Response @@ -8471,7 +8471,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) | | | @@ -8479,7 +8479,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Response.Error @@ -8487,7 +8487,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) | | | @@ -8495,7 +8495,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary @@ -8505,7 +8505,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary.Request @@ -8515,7 +8515,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary.Response @@ -8523,16 +8523,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 @@ -8540,7 +8540,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) | | | @@ -8548,7 +8548,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree @@ -8558,7 +8558,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Request @@ -8576,7 +8576,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Response @@ -8584,7 +8584,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) | | | @@ -8592,7 +8592,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Response.Error @@ -8600,7 +8600,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) | | | @@ -8608,7 +8608,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads @@ -8618,7 +8618,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads.Request @@ -8633,7 +8633,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads.Response @@ -8641,16 +8641,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 @@ -8658,7 +8658,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) | | | @@ -8666,7 +8666,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeInfo @@ -8682,7 +8682,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File @@ -8692,7 +8692,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download @@ -8702,7 +8702,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Request @@ -8718,7 +8718,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Response @@ -8726,7 +8726,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) | | | @@ -8734,7 +8734,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Response.Error @@ -8742,7 +8742,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) | | | @@ -8750,7 +8750,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop @@ -8760,7 +8760,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop.Request @@ -8770,7 +8770,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 | | @@ -8778,7 +8778,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop.Response @@ -8786,15 +8786,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 @@ -8802,7 +8802,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) | | | @@ -8810,7 +8810,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload @@ -8820,7 +8820,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Request @@ -8836,7 +8836,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Response @@ -8844,7 +8844,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) | | | @@ -8853,7 +8853,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Response.Error @@ -8861,7 +8861,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) | | | @@ -8869,7 +8869,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload @@ -8879,7 +8879,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Request @@ -8895,7 +8895,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Response @@ -8903,7 +8903,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) | | | @@ -8911,7 +8911,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Response.Error @@ -8919,7 +8919,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) | | | @@ -8927,7 +8927,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload @@ -8937,7 +8937,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload.Request @@ -8947,16 +8947,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 @@ -8964,7 +8964,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) | | | @@ -8972,7 +8972,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload.Response.Error @@ -8980,7 +8980,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) | | | @@ -8988,7 +8988,7 @@ Get marks list in the selected range in text block. - + ### Rpc.GenericErrorResponse @@ -8996,14 +8996,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 @@ -9011,7 +9011,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) | | | @@ -9019,7 +9019,7 @@ Get marks list in the selected range in text block. - + ### Rpc.History @@ -9029,7 +9029,7 @@ Get marks list in the selected range in text block. - + ### Rpc.History.GetVersions returns list of versions (changes) @@ -9039,7 +9039,7 @@ returns list of versions (changes) - + ### Rpc.History.GetVersions.Request @@ -9056,7 +9056,7 @@ returns list of versions (changes) - + ### Rpc.History.GetVersions.Response @@ -9064,15 +9064,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 @@ -9080,7 +9080,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) | | | @@ -9088,7 +9088,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion @@ -9098,7 +9098,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion.Request @@ -9114,7 +9114,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion.Response @@ -9122,14 +9122,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 @@ -9137,7 +9137,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) | | | @@ -9145,7 +9145,7 @@ returns list of versions (changes) - + ### Rpc.History.ShowVersion returns blockShow event for given version @@ -9155,7 +9155,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Request @@ -9172,7 +9172,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Response @@ -9180,9 +9180,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) | | | @@ -9190,7 +9190,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Response.Error @@ -9198,7 +9198,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) | | | @@ -9206,7 +9206,7 @@ returns blockShow event for given version - + ### Rpc.History.Version @@ -9226,7 +9226,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview @@ -9236,7 +9236,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview.Request @@ -9251,7 +9251,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview.Response @@ -9259,15 +9259,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 @@ -9275,7 +9275,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) | | | @@ -9283,7 +9283,7 @@ returns blockShow event for given version - + ### Rpc.Log @@ -9293,7 +9293,7 @@ returns blockShow event for given version - + ### Rpc.Log.Send @@ -9303,7 +9303,7 @@ returns blockShow event for given version - + ### Rpc.Log.Send.Request @@ -9312,14 +9312,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 @@ -9327,14 +9327,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 @@ -9342,7 +9342,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) | | | @@ -9350,7 +9350,7 @@ returns blockShow event for given version - + ### Rpc.Metrics @@ -9360,7 +9360,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters @@ -9370,7 +9370,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters.Request @@ -9385,7 +9385,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters.Response @@ -9393,14 +9393,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 @@ -9408,7 +9408,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) | | | @@ -9416,7 +9416,7 @@ returns blockShow event for given version - + ### Rpc.Navigation @@ -9426,7 +9426,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 @@ -9436,7 +9436,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.GetObjectInfoWithLinks.Request @@ -9445,14 +9445,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 @@ -9460,15 +9460,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 @@ -9476,7 +9476,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) | | | @@ -9484,7 +9484,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects @@ -9494,7 +9494,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects.Request @@ -9502,7 +9502,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) | | | @@ -9512,7 +9512,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects.Response @@ -9520,15 +9520,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 @@ -9536,7 +9536,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) | | | @@ -9544,7 +9544,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object @@ -9554,7 +9554,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.AddWithObjectId @@ -9564,7 +9564,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.AddWithObjectId.Request @@ -9580,7 +9580,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.AddWithObjectId.Response @@ -9588,14 +9588,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.AddWithObjectId.Response.Error](#anytype.Rpc.Object.AddWithObjectId.Response.Error) | | | +| error | [Rpc.Object.AddWithObjectId.Response.Error](#anytype-Rpc-Object-AddWithObjectId-Response-Error) | | | - + ### Rpc.Object.AddWithObjectId.Response.Error @@ -9603,7 +9603,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.AddWithObjectId.Response.Error.Code](#anytype.Rpc.Object.AddWithObjectId.Response.Error.Code) | | | +| code | [Rpc.Object.AddWithObjectId.Response.Error.Code](#anytype-Rpc-Object-AddWithObjectId-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9611,7 +9611,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate @@ -9621,7 +9621,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate.Request @@ -9637,7 +9637,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate.Response @@ -9645,14 +9645,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 @@ -9660,7 +9660,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) | | | @@ -9668,7 +9668,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch @@ -9678,7 +9678,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch.Request @@ -9694,7 +9694,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch.Response @@ -9702,14 +9702,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 @@ -9717,7 +9717,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) | | | @@ -9725,7 +9725,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close @@ -9735,7 +9735,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close.Request @@ -9751,7 +9751,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close.Response @@ -9759,14 +9759,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 @@ -9774,7 +9774,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) | | | @@ -9782,7 +9782,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create @@ -9792,7 +9792,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create.Request @@ -9800,8 +9800,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) | | | @@ -9809,7 +9809,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create.Response @@ -9817,17 +9817,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 @@ -9835,7 +9835,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) | | | @@ -9843,7 +9843,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateBookmark @@ -9853,7 +9853,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateBookmark.Request @@ -9861,14 +9861,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 @@ -9876,16 +9876,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 @@ -9893,7 +9893,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) | | | @@ -9901,7 +9901,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType @@ -9911,7 +9911,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType.Request @@ -9919,15 +9919,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 @@ -9935,8 +9935,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) | | | @@ -9944,7 +9944,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType.Response.Error @@ -9952,7 +9952,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) | | | @@ -9960,7 +9960,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelation @@ -9970,7 +9970,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelation.Request @@ -9978,14 +9978,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 @@ -9993,17 +9993,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 @@ -10011,7 +10011,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) | | | @@ -10019,7 +10019,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelationOption @@ -10029,7 +10029,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelationOption.Request @@ -10037,14 +10037,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 @@ -10052,16 +10052,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 @@ -10069,7 +10069,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) | | | @@ -10077,7 +10077,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateSet @@ -10087,7 +10087,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateSet.Request @@ -10096,16 +10096,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 @@ -10113,17 +10113,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 @@ -10131,7 +10131,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) | | | @@ -10139,7 +10139,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate @@ -10149,7 +10149,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Request @@ -10164,7 +10164,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Response @@ -10172,7 +10172,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 | @@ -10180,7 +10180,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Response.Error @@ -10188,7 +10188,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) | | | @@ -10196,7 +10196,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph @@ -10206,7 +10206,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Edge @@ -10217,7 +10217,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) | | | @@ -10228,7 +10228,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Request @@ -10236,7 +10236,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 | | @@ -10246,7 +10246,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Response @@ -10254,16 +10254,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 @@ -10271,7 +10271,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) | | | @@ -10279,7 +10279,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe @@ -10289,7 +10289,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe.Request @@ -10299,7 +10299,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) | | | @@ -10308,7 +10308,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe.Response @@ -10316,8 +10316,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) | | | @@ -10325,7 +10325,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.GroupsSubscribe.Response.Error @@ -10333,7 +10333,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) | | | @@ -10341,7 +10341,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import @@ -10351,7 +10351,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion @@ -10361,7 +10361,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion.ValidateToken @@ -10371,7 +10371,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion.ValidateToken.Request @@ -10386,7 +10386,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Notion.ValidateToken.Response @@ -10394,14 +10394,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 @@ -10409,7 +10409,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) | | | @@ -10417,7 +10417,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request @@ -10425,17 +10425,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) | | | @@ -10443,7 +10443,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.BookmarksParams @@ -10458,7 +10458,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.CsvParams @@ -10467,7 +10467,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) | | | @@ -10477,7 +10477,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.HtmlParams @@ -10492,7 +10492,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.MarkdownParams @@ -10507,7 +10507,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.NotionParams @@ -10522,7 +10522,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.PbParams @@ -10538,7 +10538,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Request.Snapshot @@ -10547,14 +10547,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 @@ -10569,7 +10569,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Import.Response @@ -10577,14 +10577,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 @@ -10592,7 +10592,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) | | | @@ -10600,7 +10600,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ImportList @@ -10610,7 +10610,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ImportList.ImportResponse @@ -10618,14 +10618,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 @@ -10635,7 +10635,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ImportList.Response @@ -10643,15 +10643,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 @@ -10659,7 +10659,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) | | | @@ -10667,7 +10667,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ListDelete @@ -10677,7 +10677,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 @@ -10692,7 +10692,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDelete.Response @@ -10700,15 +10700,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 @@ -10716,7 +10716,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) | | | @@ -10724,7 +10724,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate @@ -10734,7 +10734,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Request @@ -10749,7 +10749,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Response @@ -10757,7 +10757,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 | | @@ -10765,7 +10765,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Response.Error @@ -10773,7 +10773,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) | | | @@ -10781,7 +10781,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport @@ -10791,7 +10791,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport.Request @@ -10801,7 +10801,7 @@ 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 | @@ -10814,7 +10814,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport.Response @@ -10822,17 +10822,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 @@ -10840,7 +10840,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) | | | @@ -10848,7 +10848,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived @@ -10858,7 +10858,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived.Request @@ -10874,7 +10874,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived.Response @@ -10882,14 +10882,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 @@ -10897,7 +10897,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) | | | @@ -10905,7 +10905,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite @@ -10915,7 +10915,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite.Request @@ -10931,7 +10931,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite.Response @@ -10939,14 +10939,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 @@ -10954,7 +10954,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) | | | @@ -10962,7 +10962,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open @@ -10972,7 +10972,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open.Request @@ -10990,7 +10990,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open.Response @@ -10998,15 +10998,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 @@ -11014,7 +11014,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) | | | @@ -11022,7 +11022,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs @@ -11032,7 +11032,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs.Request @@ -11048,7 +11048,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs.Response @@ -11056,17 +11056,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 @@ -11074,7 +11074,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) | | | @@ -11082,7 +11082,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo @@ -11092,7 +11092,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo.Request @@ -11107,7 +11107,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo.Response @@ -11115,16 +11115,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 @@ -11132,7 +11132,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) | | | @@ -11140,7 +11140,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Search @@ -11150,7 +11150,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Search.Request @@ -11158,8 +11158,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) | | | @@ -11173,7 +11173,7 @@ deprecated, to be removed | - + ### Rpc.Object.Search.Response @@ -11181,15 +11181,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 @@ -11197,7 +11197,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) | | | @@ -11205,7 +11205,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchSubscribe @@ -11215,7 +11215,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchSubscribe.Request @@ -11224,8 +11224,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 | @@ -11241,7 +11241,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchSubscribe.Response @@ -11249,18 +11249,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 @@ -11268,7 +11268,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) | | | @@ -11276,7 +11276,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchUnsubscribe @@ -11286,7 +11286,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchUnsubscribe.Request @@ -11301,7 +11301,7 @@ deprecated, to be removed | - + ### Rpc.Object.SearchUnsubscribe.Response @@ -11309,14 +11309,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 @@ -11324,7 +11324,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) | | | @@ -11332,7 +11332,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetBreadcrumbs @@ -11342,7 +11342,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetBreadcrumbs.Request @@ -11358,7 +11358,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetBreadcrumbs.Response @@ -11366,15 +11366,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 @@ -11382,7 +11382,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) | | | @@ -11390,7 +11390,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetDetails @@ -11400,7 +11400,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetDetails.Detail @@ -11409,14 +11409,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 @@ -11425,14 +11425,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 @@ -11440,15 +11440,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 @@ -11456,7 +11456,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) | | | @@ -11464,7 +11464,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetInternalFlags @@ -11474,7 +11474,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetInternalFlags.Request @@ -11483,14 +11483,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 @@ -11498,15 +11498,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 @@ -11514,7 +11514,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) | | | @@ -11522,7 +11522,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsArchived @@ -11532,7 +11532,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsArchived.Request @@ -11548,7 +11548,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsArchived.Response @@ -11556,15 +11556,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 @@ -11572,7 +11572,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) | | | @@ -11580,7 +11580,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsFavorite @@ -11590,7 +11590,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsFavorite.Request @@ -11606,7 +11606,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetIsFavorite.Response @@ -11614,15 +11614,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 @@ -11630,7 +11630,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) | | | @@ -11638,7 +11638,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetLayout @@ -11648,7 +11648,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetLayout.Request @@ -11657,14 +11657,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 @@ -11672,15 +11672,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 @@ -11688,7 +11688,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) | | | @@ -11696,7 +11696,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetObjectType @@ -11706,7 +11706,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetObjectType.Request @@ -11722,7 +11722,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetObjectType.Response @@ -11730,15 +11730,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 @@ -11746,7 +11746,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) | | | @@ -11754,7 +11754,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetSource @@ -11764,7 +11764,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetSource.Request @@ -11780,7 +11780,7 @@ deprecated, to be removed | - + ### Rpc.Object.SetSource.Response @@ -11788,15 +11788,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 @@ -11804,7 +11804,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) | | | @@ -11812,7 +11812,7 @@ deprecated, to be removed | - + ### Rpc.Object.ShareByLink @@ -11822,7 +11822,7 @@ deprecated, to be removed | - + ### Rpc.Object.ShareByLink.Request @@ -11837,7 +11837,7 @@ deprecated, to be removed | - + ### Rpc.Object.ShareByLink.Response @@ -11846,14 +11846,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 @@ -11861,7 +11861,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) | | | @@ -11869,7 +11869,7 @@ deprecated, to be removed | - + ### Rpc.Object.Show @@ -11879,7 +11879,7 @@ deprecated, to be removed | - + ### Rpc.Object.Show.Request @@ -11897,7 +11897,7 @@ deprecated, to be removed | - + ### Rpc.Object.Show.Response @@ -11905,15 +11905,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 @@ -11921,7 +11921,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) | | | @@ -11929,7 +11929,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds @@ -11939,7 +11939,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds.Request @@ -11958,7 +11958,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds.Response @@ -11966,9 +11966,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) | | | @@ -11976,7 +11976,7 @@ deprecated, to be removed | - + ### Rpc.Object.SubscribeIds.Response.Error @@ -11984,7 +11984,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) | | | @@ -11992,7 +11992,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark @@ -12002,7 +12002,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark.Request @@ -12018,7 +12018,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark.Response @@ -12026,7 +12026,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) | | | @@ -12034,7 +12034,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToBookmark.Response.Error @@ -12042,7 +12042,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) | | | @@ -12050,7 +12050,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection @@ -12060,7 +12060,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection.Request @@ -12075,7 +12075,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection.Response @@ -12083,7 +12083,7 @@ 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) | | | | collectionId | [string](#string) | | | @@ -12091,7 +12091,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToCollection.Response.Error @@ -12099,7 +12099,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) | | | @@ -12107,7 +12107,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet @@ -12117,7 +12117,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet.Request @@ -12133,7 +12133,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet.Response @@ -12141,7 +12141,7 @@ 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) | | | | setId | [string](#string) | | | @@ -12149,7 +12149,7 @@ deprecated, to be removed | - + ### Rpc.Object.ToSet.Response.Error @@ -12157,7 +12157,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) | | | @@ -12165,7 +12165,7 @@ deprecated, to be removed | - + ### Rpc.Object.Undo @@ -12175,7 +12175,7 @@ deprecated, to be removed | - + ### Rpc.Object.Undo.Request @@ -12190,7 +12190,7 @@ deprecated, to be removed | - + ### Rpc.Object.Undo.Response @@ -12198,16 +12198,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 @@ -12215,7 +12215,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) | | | @@ -12223,7 +12223,7 @@ deprecated, to be removed | - + ### Rpc.Object.UndoRedoCounter Available undo/redo operations @@ -12239,7 +12239,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard @@ -12249,7 +12249,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Request @@ -12265,7 +12265,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Response @@ -12273,8 +12273,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) | | | @@ -12282,7 +12282,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Response.Error @@ -12290,7 +12290,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) | | | @@ -12298,7 +12298,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection @@ -12308,7 +12308,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add @@ -12318,7 +12318,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add.Request @@ -12335,7 +12335,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add.Response @@ -12343,15 +12343,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 @@ -12359,7 +12359,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) | | | @@ -12367,7 +12367,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove @@ -12377,7 +12377,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove.Request @@ -12393,7 +12393,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove.Response @@ -12401,15 +12401,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 @@ -12417,7 +12417,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) | | | @@ -12425,7 +12425,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort @@ -12435,7 +12435,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort.Request @@ -12451,7 +12451,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort.Response @@ -12459,15 +12459,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 @@ -12475,7 +12475,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) | | | @@ -12483,7 +12483,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation @@ -12493,7 +12493,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add @@ -12503,7 +12503,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add.Request @@ -12519,7 +12519,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add.Response @@ -12527,15 +12527,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 @@ -12543,7 +12543,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) | | | @@ -12551,7 +12551,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured @@ -12561,7 +12561,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured.Request @@ -12577,7 +12577,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured.Response @@ -12585,15 +12585,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 @@ -12601,7 +12601,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) | | | @@ -12609,7 +12609,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete @@ -12619,7 +12619,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete.Request @@ -12635,7 +12635,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete.Response @@ -12643,15 +12643,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 @@ -12659,7 +12659,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) | | | @@ -12667,7 +12667,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable @@ -12677,7 +12677,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable.Request @@ -12692,7 +12692,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable.Response @@ -12700,15 +12700,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 @@ -12716,7 +12716,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) | | | @@ -12724,7 +12724,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured @@ -12734,7 +12734,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured.Request @@ -12750,7 +12750,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured.Response @@ -12758,15 +12758,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 @@ -12774,7 +12774,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) | | | @@ -12782,7 +12782,7 @@ Available undo/redo operations - + ### Rpc.ObjectType @@ -12792,7 +12792,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation @@ -12802,7 +12802,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add @@ -12812,7 +12812,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add.Request @@ -12828,7 +12828,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add.Response @@ -12836,15 +12836,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 @@ -12852,7 +12852,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) | | | @@ -12860,7 +12860,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List @@ -12870,7 +12870,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List.Request @@ -12886,7 +12886,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List.Response @@ -12894,15 +12894,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 @@ -12910,7 +12910,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) | | | @@ -12918,7 +12918,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove @@ -12928,7 +12928,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove.Request @@ -12944,7 +12944,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove.Response @@ -12952,14 +12952,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 @@ -12967,7 +12967,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) | | | @@ -12975,7 +12975,7 @@ Available undo/redo operations - + ### Rpc.Process @@ -12985,7 +12985,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel @@ -12995,7 +12995,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel.Request @@ -13010,7 +13010,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel.Response @@ -13018,14 +13018,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 @@ -13033,7 +13033,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) | | | @@ -13041,7 +13041,7 @@ Available undo/redo operations - + ### Rpc.Relation @@ -13051,7 +13051,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption @@ -13061,7 +13061,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption.Request @@ -13077,7 +13077,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption.Response @@ -13085,14 +13085,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 @@ -13100,7 +13100,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) | | | @@ -13108,7 +13108,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options @@ -13118,7 +13118,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options.Request @@ -13133,7 +13133,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options.Response @@ -13141,15 +13141,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 @@ -13157,7 +13157,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) | | | @@ -13165,7 +13165,7 @@ Available undo/redo operations - + ### Rpc.Template @@ -13175,7 +13175,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone @@ -13185,7 +13185,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Request @@ -13200,7 +13200,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Response @@ -13208,7 +13208,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 | @@ -13216,7 +13216,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Response.Error @@ -13224,7 +13224,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) | | | @@ -13232,7 +13232,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject @@ -13242,7 +13242,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Request @@ -13257,7 +13257,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Response @@ -13265,7 +13265,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 | @@ -13273,7 +13273,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Response.Error @@ -13281,7 +13281,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) | | | @@ -13289,7 +13289,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType @@ -13299,7 +13299,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Request @@ -13314,7 +13314,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Response @@ -13322,7 +13322,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 | @@ -13330,7 +13330,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Response.Error @@ -13338,7 +13338,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) | | | @@ -13346,7 +13346,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll @@ -13356,7 +13356,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll.Request @@ -13371,7 +13371,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll.Response @@ -13379,16 +13379,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 @@ -13396,7 +13396,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) | | | @@ -13404,7 +13404,7 @@ Available undo/redo operations - + ### Rpc.Unsplash @@ -13414,7 +13414,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download @@ -13424,7 +13424,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Request @@ -13439,7 +13439,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Response @@ -13447,7 +13447,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) | | | @@ -13455,7 +13455,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Response.Error @@ -13463,7 +13463,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) | | | @@ -13471,7 +13471,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search @@ -13481,7 +13481,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Request @@ -13497,7 +13497,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Response @@ -13505,15 +13505,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 @@ -13521,7 +13521,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) | | | @@ -13529,7 +13529,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Response.Picture @@ -13547,7 +13547,7 @@ Available undo/redo operations - + ### Rpc.UserData @@ -13557,7 +13557,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump @@ -13567,7 +13567,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump.Request @@ -13582,7 +13582,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump.Response @@ -13590,14 +13590,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 @@ -13605,7 +13605,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) | | | @@ -13613,7 +13613,7 @@ Available undo/redo operations - + ### Rpc.Wallet @@ -13623,7 +13623,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession @@ -13633,7 +13633,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession.Request @@ -13648,7 +13648,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession.Response @@ -13656,14 +13656,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 @@ -13671,7 +13671,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) | | | @@ -13679,7 +13679,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert @@ -13689,7 +13689,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Request @@ -13705,7 +13705,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Response @@ -13713,7 +13713,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) | | | @@ -13722,7 +13722,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Response.Error @@ -13730,7 +13730,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) | | | @@ -13738,7 +13738,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Create @@ -13748,7 +13748,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Create.Request Front-end-to-middleware request to create a new wallet @@ -13763,7 +13763,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 @@ -13771,7 +13771,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) | @@ -13779,7 +13779,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Create.Response.Error @@ -13787,7 +13787,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) | | | @@ -13795,7 +13795,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession @@ -13805,7 +13805,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Request @@ -13820,7 +13820,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Response @@ -13828,7 +13828,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) | | | @@ -13836,7 +13836,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Response.Error @@ -13844,7 +13844,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) | | | @@ -13852,7 +13852,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Recover @@ -13862,7 +13862,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 @@ -13878,7 +13878,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 @@ -13886,14 +13886,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 @@ -13901,7 +13901,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) | | | @@ -13909,7 +13909,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace @@ -13919,7 +13919,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create @@ -13929,7 +13929,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Request @@ -13944,7 +13944,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response @@ -13952,7 +13952,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) | | | @@ -13960,7 +13960,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response.Error @@ -13968,7 +13968,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) | | | @@ -13976,7 +13976,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export @@ -13986,7 +13986,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Request @@ -14002,7 +14002,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Response @@ -14010,16 +14010,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 @@ -14027,7 +14027,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) | | | @@ -14035,7 +14035,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll @@ -14045,7 +14045,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Request @@ -14055,7 +14055,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response @@ -14063,7 +14063,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 | | @@ -14071,7 +14071,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response.Error @@ -14079,7 +14079,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) | | | @@ -14087,7 +14087,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent @@ -14097,7 +14097,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Request @@ -14107,7 +14107,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response @@ -14115,7 +14115,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) | | | @@ -14123,7 +14123,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response.Error @@ -14131,7 +14131,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) | | | @@ -14139,7 +14139,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object @@ -14149,7 +14149,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add @@ -14159,7 +14159,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Request @@ -14174,7 +14174,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Response @@ -14182,16 +14182,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 @@ -14199,7 +14199,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) | | | @@ -14207,7 +14207,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd @@ -14217,7 +14217,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Request @@ -14232,7 +14232,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response @@ -14240,7 +14240,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 | | @@ -14248,7 +14248,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response.Error @@ -14256,7 +14256,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) | | | @@ -14264,7 +14264,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove @@ -14274,7 +14274,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Request @@ -14289,7 +14289,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response @@ -14297,7 +14297,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 | | @@ -14305,7 +14305,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response.Error @@ -14313,7 +14313,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) | | | @@ -14321,7 +14321,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select @@ -14331,7 +14331,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Request @@ -14346,7 +14346,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Response @@ -14354,14 +14354,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 @@ -14369,7 +14369,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) | | | @@ -14377,7 +14377,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted @@ -14387,7 +14387,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Request @@ -14403,7 +14403,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Response @@ -14411,14 +14411,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 @@ -14426,7 +14426,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) | | | @@ -14434,7 +14434,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### StreamRequest @@ -14451,7 +14451,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.ConfigUpdate.Response.Error.Code @@ -14467,7 +14467,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.ConfigUpdate.Timezones @@ -14505,7 +14505,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Create.Response.Error.Code @@ -14528,7 +14528,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Delete.Response.Error.Code @@ -14543,7 +14543,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Move.Response.Error.Code @@ -14562,7 +14562,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Recover.Response.Error.Code @@ -14584,7 +14584,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.RecoverFromLegacyExport.Response.Error.Code @@ -14598,7 +14598,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Select.Response.Error.Code @@ -14619,7 +14619,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Stop.Response.Error.Code @@ -14635,7 +14635,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.GetVersion.Response.Error.Code @@ -14651,7 +14651,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.SetDeviceState.Request.DeviceState @@ -14663,7 +14663,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.SetDeviceState.Response.Error.Code @@ -14677,7 +14677,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.Shutdown.Response.Error.Code @@ -14691,7 +14691,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Copy.Response.Error.Code @@ -14704,7 +14704,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Create.Response.Error.Code @@ -14717,7 +14717,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.CreateWidget.Response.Error.Code @@ -14730,7 +14730,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Cut.Response.Error.Code @@ -14743,7 +14743,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Download.Response.Error.Code @@ -14756,7 +14756,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Export.Response.Error.Code @@ -14769,7 +14769,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListConvertToObjects.Response.Error.Code @@ -14782,7 +14782,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListDelete.Response.Error.Code @@ -14795,7 +14795,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListDuplicate.Response.Error.Code @@ -14808,7 +14808,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListMoveToExistingObject.Response.Error.Code @@ -14821,7 +14821,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListMoveToNewObject.Response.Error.Code @@ -14834,7 +14834,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetAlign.Response.Error.Code @@ -14847,7 +14847,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetBackgroundColor.Response.Error.Code @@ -14860,7 +14860,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetFields.Response.Error.Code @@ -14873,7 +14873,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetVerticalAlign.Response.Error.Code @@ -14886,7 +14886,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListTurnInto.Response.Error.Code @@ -14899,7 +14899,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Merge.Response.Error.Code @@ -14912,7 +14912,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Paste.Response.Error.Code @@ -14925,7 +14925,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Replace.Response.Error.Code @@ -14938,7 +14938,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.SetFields.Response.Error.Code @@ -14951,7 +14951,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Split.Request.Mode @@ -14965,7 +14965,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Split.Response.Error.Code @@ -14978,7 +14978,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Upload.Response.Error.Code @@ -14991,7 +14991,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code @@ -15004,7 +15004,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockBookmark.Fetch.Response.Error.Code @@ -15017,7 +15017,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.CreateBookmark.Response.Error.Code @@ -15030,7 +15030,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code @@ -15043,7 +15043,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Add.Response.Error.Code @@ -15056,7 +15056,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Remove.Response.Error.Code @@ -15069,7 +15069,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Replace.Response.Error.Code @@ -15082,7 +15082,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Sort.Response.Error.Code @@ -15095,7 +15095,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code @@ -15108,7 +15108,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code @@ -15121,7 +15121,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code @@ -15134,7 +15134,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.Add.Response.Error.Code @@ -15147,7 +15147,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.Delete.Response.Error.Code @@ -15160,7 +15160,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code @@ -15174,7 +15174,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.SetSource.Response.Error.Code @@ -15187,7 +15187,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Add.Response.Error.Code @@ -15200,7 +15200,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Remove.Response.Error.Code @@ -15213,7 +15213,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Replace.Response.Error.Code @@ -15226,7 +15226,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Sort.Response.Error.Code @@ -15239,7 +15239,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Create.Response.Error.Code @@ -15252,7 +15252,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Delete.Response.Error.Code @@ -15265,7 +15265,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.SetActive.Response.Error.Code @@ -15278,7 +15278,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.SetPosition.Response.Error.Code @@ -15291,7 +15291,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Update.Response.Error.Code @@ -15304,7 +15304,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code @@ -15317,7 +15317,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code @@ -15330,7 +15330,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code @@ -15343,7 +15343,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code @@ -15356,7 +15356,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDiv.ListSetStyle.Response.Error.Code @@ -15369,7 +15369,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.CreateAndUpload.Response.Error.Code @@ -15382,7 +15382,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.ListSetStyle.Response.Error.Code @@ -15395,7 +15395,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.SetName.Response.Error.Code @@ -15408,7 +15408,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockImage.SetName.Response.Error.Code @@ -15421,7 +15421,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockImage.SetWidth.Response.Error.Code @@ -15434,7 +15434,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLatex.SetText.Response.Error.Code @@ -15447,7 +15447,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLink.CreateWithObject.Response.Error.Code @@ -15460,7 +15460,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLink.ListSetAppearance.Response.Error.Code @@ -15473,7 +15473,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockRelation.Add.Response.Error.Code @@ -15486,7 +15486,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockRelation.SetKey.Response.Error.Code @@ -15499,7 +15499,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnCreate.Response.Error.Code @@ -15512,7 +15512,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnDelete.Response.Error.Code @@ -15525,7 +15525,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnDuplicate.Response.Error.Code @@ -15538,7 +15538,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnListFill.Response.Error.Code @@ -15551,7 +15551,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnMove.Response.Error.Code @@ -15564,7 +15564,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Create.Response.Error.Code @@ -15577,7 +15577,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Expand.Response.Error.Code @@ -15590,7 +15590,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowCreate.Response.Error.Code @@ -15603,7 +15603,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowDelete.Response.Error.Code @@ -15616,7 +15616,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowDuplicate.Response.Error.Code @@ -15629,7 +15629,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowListClean.Response.Error.Code @@ -15642,7 +15642,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowListFill.Response.Error.Code @@ -15655,7 +15655,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowSetHeader.Response.Error.Code @@ -15668,7 +15668,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Sort.Response.Error.Code @@ -15681,7 +15681,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListClearContent.Response.Error.Code @@ -15694,7 +15694,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListClearStyle.Response.Error.Code @@ -15707,7 +15707,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetColor.Response.Error.Code @@ -15720,7 +15720,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetMark.Response.Error.Code @@ -15733,7 +15733,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetStyle.Response.Error.Code @@ -15746,7 +15746,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetChecked.Response.Error.Code @@ -15759,7 +15759,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetColor.Response.Error.Code @@ -15772,7 +15772,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetIcon.Response.Error.Code @@ -15785,7 +15785,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetMarks.Get.Response.Error.Code @@ -15798,7 +15798,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetStyle.Response.Error.Code @@ -15811,7 +15811,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetText.Response.Error.Code @@ -15824,7 +15824,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockVideo.SetName.Response.Error.Code @@ -15837,7 +15837,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockVideo.SetWidth.Response.Error.Code @@ -15850,7 +15850,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.ExportLocalstore.Response.Error.Code @@ -15863,7 +15863,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.Ping.Response.Error.Code @@ -15876,7 +15876,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.SpaceSummary.Response.Error.Code @@ -15889,7 +15889,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.Tree.Response.Error.Code @@ -15902,7 +15902,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.TreeHeads.Response.Error.Code @@ -15915,7 +15915,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Download.Response.Error.Code @@ -15929,7 +15929,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Drop.Response.Error.Code @@ -15942,7 +15942,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.ListOffload.Response.Error.Code @@ -15956,7 +15956,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Offload.Response.Error.Code @@ -15971,7 +15971,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Upload.Response.Error.Code @@ -15984,7 +15984,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.GenericErrorResponse.Error.Code @@ -15997,7 +15997,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.GetVersions.Response.Error.Code @@ -16010,7 +16010,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.SetVersion.Response.Error.Code @@ -16023,7 +16023,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.ShowVersion.Response.Error.Code @@ -16036,7 +16036,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.LinkPreview.Response.Error.Code @@ -16049,7 +16049,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Log.Send.Request.Level @@ -16065,7 +16065,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Log.Send.Response.Error.Code @@ -16080,7 +16080,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Metrics.SetParameters.Response.Error.Code @@ -16093,7 +16093,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.Context @@ -16106,7 +16106,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code @@ -16119,7 +16119,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.ListObjects.Response.Error.Code @@ -16132,7 +16132,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.AddWithObjectId.Response.Error.Code @@ -16145,7 +16145,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ApplyTemplate.Response.Error.Code @@ -16158,7 +16158,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.BookmarkFetch.Response.Error.Code @@ -16171,7 +16171,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Close.Response.Error.Code @@ -16184,7 +16184,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Create.Response.Error.Code @@ -16197,7 +16197,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateBookmark.Response.Error.Code @@ -16210,7 +16210,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateObjectType.Response.Error.Code @@ -16224,7 +16224,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateRelation.Response.Error.Code @@ -16237,7 +16237,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateRelationOption.Response.Error.Code @@ -16250,7 +16250,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateSet.Response.Error.Code @@ -16264,7 +16264,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Duplicate.Response.Error.Code @@ -16277,7 +16277,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Graph.Edge.Type @@ -16289,7 +16289,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Graph.Response.Error.Code @@ -16302,7 +16302,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.GroupsSubscribe.Response.Error.Code @@ -16315,7 +16315,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 @@ -16332,7 +16332,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.CsvParams.Mode @@ -16344,7 +16344,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.Mode @@ -16356,7 +16356,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.Type @@ -16373,7 +16373,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Response.Error.Code @@ -16387,7 +16387,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportList.ImportResponse.Type @@ -16401,7 +16401,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportList.Response.Error.Code @@ -16415,7 +16415,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListDelete.Response.Error.Code @@ -16428,7 +16428,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListDuplicate.Response.Error.Code @@ -16441,7 +16441,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListExport.Format @@ -16457,7 +16457,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListExport.Response.Error.Code @@ -16470,7 +16470,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListSetIsArchived.Response.Error.Code @@ -16483,7 +16483,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListSetIsFavorite.Response.Error.Code @@ -16496,7 +16496,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Open.Response.Error.Code @@ -16511,7 +16511,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.OpenBreadcrumbs.Response.Error.Code @@ -16524,7 +16524,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Redo.Response.Error.Code @@ -16538,7 +16538,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Search.Response.Error.Code @@ -16551,7 +16551,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SearchSubscribe.Response.Error.Code @@ -16564,7 +16564,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SearchUnsubscribe.Response.Error.Code @@ -16577,7 +16577,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetBreadcrumbs.Response.Error.Code @@ -16590,7 +16590,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetDetails.Response.Error.Code @@ -16603,7 +16603,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetInternalFlags.Response.Error.Code @@ -16617,7 +16617,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetIsArchived.Response.Error.Code @@ -16630,7 +16630,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetIsFavorite.Response.Error.Code @@ -16643,7 +16643,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetLayout.Response.Error.Code @@ -16656,7 +16656,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetObjectType.Response.Error.Code @@ -16670,7 +16670,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetSource.Response.Error.Code @@ -16683,7 +16683,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ShareByLink.Response.Error.Code @@ -16696,7 +16696,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Show.Response.Error.Code @@ -16711,7 +16711,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SubscribeIds.Response.Error.Code @@ -16724,7 +16724,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToBookmark.Response.Error.Code @@ -16737,7 +16737,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToCollection.Response.Error.Code @@ -16750,7 +16750,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToSet.Response.Error.Code @@ -16763,7 +16763,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Undo.Response.Error.Code @@ -16777,7 +16777,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.WorkspaceSetDashboard.Response.Error.Code @@ -16790,7 +16790,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Add.Response.Error.Code @@ -16803,7 +16803,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Remove.Response.Error.Code @@ -16816,7 +16816,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Sort.Response.Error.Code @@ -16829,7 +16829,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.Add.Response.Error.Code @@ -16842,7 +16842,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.AddFeatured.Response.Error.Code @@ -16855,7 +16855,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.Delete.Response.Error.Code @@ -16868,7 +16868,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.ListAvailable.Response.Error.Code @@ -16881,7 +16881,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code @@ -16894,7 +16894,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.Add.Response.Error.Code @@ -16909,7 +16909,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.List.Response.Error.Code @@ -16923,7 +16923,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.Remove.Response.Error.Code @@ -16938,7 +16938,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Process.Cancel.Response.Error.Code @@ -16951,7 +16951,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Relation.ListRemoveOption.Response.Error.Code @@ -16965,7 +16965,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Relation.Options.Response.Error.Code @@ -16978,7 +16978,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.Clone.Response.Error.Code @@ -16991,7 +16991,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.CreateFromObject.Response.Error.Code @@ -17004,7 +17004,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.CreateFromObjectType.Response.Error.Code @@ -17017,7 +17017,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.ExportAll.Response.Error.Code @@ -17030,7 +17030,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Unsplash.Download.Response.Error.Code @@ -17044,7 +17044,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Unsplash.Search.Response.Error.Code @@ -17058,7 +17058,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.UserData.Dump.Response.Error.Code @@ -17071,7 +17071,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.CloseSession.Response.Error.Code @@ -17084,7 +17084,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Convert.Response.Error.Code @@ -17097,7 +17097,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Create.Response.Error.Code @@ -17111,7 +17111,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.CreateSession.Response.Error.Code @@ -17124,7 +17124,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Recover.Response.Error.Code @@ -17138,7 +17138,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response.Error.Code @@ -17151,7 +17151,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Response.Error.Code @@ -17164,7 +17164,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response.Error.Code @@ -17177,7 +17177,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response.Error.Code @@ -17190,7 +17190,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Response.Error.Code @@ -17203,7 +17203,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response.Error.Code @@ -17216,7 +17216,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response.Error.Code @@ -17229,7 +17229,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Response.Error.Code @@ -17242,7 +17242,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Response.Error.Code @@ -17257,7 +17257,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 | @@ -17270,14 +17270,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - +

Top

## pb/protos/events.proto - + ### Event Event – type of message, that could be sent from a middleware to the corresponding front-end. @@ -17285,9 +17285,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) | | | @@ -17295,7 +17295,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account @@ -17305,7 +17305,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account.Config @@ -17315,7 +17315,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account.Config.Update @@ -17323,15 +17323,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 @@ -17340,14 +17340,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 @@ -17356,14 +17356,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 @@ -17371,15 +17371,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 @@ -17389,7 +17389,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. @@ -17406,14 +17406,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 @@ -17423,7 +17423,7 @@ B. Partial block load - + ### Event.Block.Dataview.GroupOrderUpdate @@ -17432,14 +17432,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 @@ -17455,7 +17455,7 @@ B. Partial block load - + ### Event.Block.Dataview.ObjectOrderUpdate @@ -17466,14 +17466,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 @@ -17489,7 +17489,7 @@ B. Partial block load - + ### Event.Block.Dataview.OldRelationSet sent when the dataview relation has been changed or added @@ -17499,14 +17499,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 @@ -17522,7 +17522,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 @@ -17531,14 +17531,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 @@ -17546,7 +17546,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) | | | @@ -17555,7 +17555,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.SourceSet @@ -17571,7 +17571,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.TargetObjectIdSet @@ -17587,7 +17587,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewDelete @@ -17603,7 +17603,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewOrder @@ -17619,7 +17619,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewSet sent when the view have been changed or added @@ -17629,14 +17629,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 @@ -17646,17 +17646,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 @@ -17664,11 +17664,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 | @@ -17679,7 +17679,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter @@ -17687,17 +17687,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 @@ -17706,14 +17706,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 @@ -17729,7 +17729,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter.Remove @@ -17744,7 +17744,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter.Update @@ -17753,14 +17753,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 @@ -17768,17 +17768,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 @@ -17787,14 +17787,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 @@ -17810,7 +17810,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Relation.Remove @@ -17825,7 +17825,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Relation.Update @@ -17834,14 +17834,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 @@ -17849,17 +17849,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 @@ -17868,14 +17868,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 @@ -17891,7 +17891,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Sort.Remove @@ -17906,7 +17906,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Sort.Update @@ -17915,14 +17915,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 @@ -17937,7 +17937,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: @@ -17956,7 +17956,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill @@ -17966,7 +17966,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Align @@ -17975,14 +17975,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 @@ -17998,7 +17998,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark @@ -18007,20 +18007,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 @@ -18035,7 +18035,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.FaviconHash @@ -18050,7 +18050,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.ImageHash @@ -18065,7 +18065,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.TargetObjectId @@ -18080,7 +18080,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.Title @@ -18095,7 +18095,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.Type @@ -18103,14 +18103,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 @@ -18125,7 +18125,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.ChildrenIds @@ -18141,7 +18141,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.DatabaseRecords @@ -18150,14 +18150,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 @@ -18166,14 +18166,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 @@ -18182,14 +18182,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 @@ -18197,14 +18197,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 @@ -18213,14 +18213,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 @@ -18229,20 +18229,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 @@ -18257,7 +18257,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Mime @@ -18272,7 +18272,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Name @@ -18287,7 +18287,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Size @@ -18302,7 +18302,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.State @@ -18310,14 +18310,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 @@ -18325,14 +18325,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 @@ -18340,14 +18340,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 @@ -18362,7 +18362,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Link @@ -18371,16 +18371,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 @@ -18388,14 +18388,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 @@ -18403,14 +18403,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 @@ -18425,7 +18425,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Restrictions @@ -18434,14 +18434,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 @@ -18450,18 +18450,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 @@ -18476,7 +18476,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Text.Color @@ -18491,7 +18491,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Text.Marks @@ -18499,14 +18499,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 @@ -18514,14 +18514,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 @@ -18536,7 +18536,7 @@ Precondition: user A opened a block - + ### Event.Block.MarksInfo @@ -18544,14 +18544,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 @@ -18561,7 +18561,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Align @@ -18570,14 +18570,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 @@ -18593,7 +18593,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark @@ -18602,21 +18602,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 @@ -18631,7 +18631,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.FaviconHash @@ -18646,7 +18646,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.ImageHash @@ -18661,7 +18661,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.State @@ -18669,14 +18669,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 @@ -18691,7 +18691,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.Title @@ -18706,7 +18706,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.Type @@ -18714,14 +18714,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 @@ -18736,7 +18736,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.ChildrenIds @@ -18752,7 +18752,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Div @@ -18761,14 +18761,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 @@ -18776,14 +18776,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 @@ -18792,14 +18792,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 @@ -18808,20 +18808,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 @@ -18836,7 +18836,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Mime @@ -18851,7 +18851,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Name @@ -18866,7 +18866,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Size @@ -18881,7 +18881,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.State @@ -18889,14 +18889,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 @@ -18904,14 +18904,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 @@ -18919,14 +18919,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 @@ -18941,7 +18941,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Latex @@ -18950,14 +18950,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 @@ -18972,7 +18972,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Link @@ -18981,20 +18981,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 @@ -19002,14 +19002,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 @@ -19017,14 +19017,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 @@ -19032,14 +19032,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 @@ -19047,14 +19047,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 @@ -19069,7 +19069,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Link.Style @@ -19077,14 +19077,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 @@ -19099,7 +19099,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Relation @@ -19108,14 +19108,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 @@ -19130,7 +19130,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Restrictions @@ -19139,14 +19139,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 @@ -19155,14 +19155,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 @@ -19177,7 +19177,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text @@ -19186,20 +19186,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 @@ -19214,7 +19214,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.Color @@ -19229,7 +19229,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.IconEmoji @@ -19244,7 +19244,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.IconImage @@ -19259,7 +19259,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.Marks @@ -19267,14 +19267,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 @@ -19282,14 +19282,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 @@ -19304,7 +19304,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.VerticalAlign @@ -19313,14 +19313,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 @@ -19329,14 +19329,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 @@ -19344,14 +19344,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 @@ -19359,69 +19359,69 @@ 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) | | | -| 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) | | | +| 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 @@ -19431,7 +19431,7 @@ Precondition: user A opened a block - + ### Event.Object.Details @@ -19441,7 +19441,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 @@ -19450,7 +19450,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 | | @@ -19458,7 +19458,7 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist - + ### Event.Object.Details.Amend.KeyValue @@ -19467,14 +19467,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 @@ -19483,7 +19483,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 | | @@ -19491,7 +19491,7 @@ Overwrite current state - + ### Event.Object.Details.Unset Unset existing detail keys @@ -19508,7 +19508,7 @@ Unset existing detail keys - + ### Event.Object.Relations @@ -19518,7 +19518,7 @@ Unset existing detail keys - + ### Event.Object.Relations.Amend @@ -19527,14 +19527,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 @@ -19550,7 +19550,7 @@ Unset existing detail keys - + ### Event.Object.Remove @@ -19565,7 +19565,7 @@ Unset existing detail keys - + ### Event.Object.Restriction @@ -19574,14 +19574,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 @@ -19591,7 +19591,7 @@ Unset existing detail keys - + ### Event.Object.Subscription.Add Adds new document to subscriptions @@ -19608,7 +19608,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Counters @@ -19626,7 +19626,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Groups @@ -19635,7 +19635,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) | | | @@ -19643,7 +19643,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Position Indicates new position of document @@ -19660,7 +19660,7 @@ Indicates new position of document - + ### Event.Object.Subscription.Remove Removes document from subscription @@ -19676,7 +19676,7 @@ Removes document from subscription - + ### Event.Ping @@ -19691,7 +19691,7 @@ Removes document from subscription - + ### Event.Process @@ -19701,7 +19701,7 @@ Removes document from subscription - + ### Event.Process.Done @@ -19709,14 +19709,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype.Model.Process) | | | +| process | [Model.Process](#anytype-Model-Process) | | | - + ### Event.Process.New @@ -19724,14 +19724,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype.Model.Process) | | | +| process | [Model.Process](#anytype-Model-Process) | | | - + ### Event.Process.Update @@ -19739,14 +19739,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype.Model.Process) | | | +| process | [Model.Process](#anytype-Model-Process) | | | - + ### Event.Status @@ -19756,7 +19756,7 @@ Removes document from subscription - + ### Event.Status.Thread @@ -19764,16 +19764,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 @@ -19787,14 +19787,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 @@ -19802,17 +19802,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 @@ -19830,7 +19830,7 @@ Removes document from subscription - + ### Event.Status.Thread.Device @@ -19848,7 +19848,7 @@ Removes document from subscription - + ### Event.Status.Thread.Summary @@ -19856,14 +19856,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 @@ -19873,7 +19873,7 @@ Removes document from subscription - + ### Event.User.Block @@ -19883,7 +19883,7 @@ Removes document from subscription - + ### Event.User.Block.Join Middleware to front end event message, that will be sent in this scenario: @@ -19894,14 +19894,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: @@ -19912,14 +19912,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: @@ -19930,7 +19930,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. | @@ -19938,7 +19938,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: @@ -19949,16 +19949,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 @@ -19968,7 +19968,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process @@ -19977,16 +19977,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 @@ -20003,7 +20003,7 @@ Precondition: user A and user B opened the same block - + ### ResponseEvent @@ -20011,7 +20011,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) | | | @@ -20022,7 +20022,7 @@ Precondition: user A and user B opened the same block - + ### Event.Block.Dataview.SliceOperation @@ -20037,7 +20037,7 @@ Precondition: user A and user B opened the same block - + ### Event.Status.Thread.SyncStatus @@ -20052,7 +20052,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process.State @@ -20067,7 +20067,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process.Type @@ -20089,14 +20089,14 @@ Precondition: user A and user B opened the same block - +

Top

## pb/protos/snapshot.proto - + ### Profile @@ -20114,7 +20114,7 @@ Precondition: user A and user B opened the same block - + ### SnapshotWithType @@ -20122,8 +20122,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) | | | @@ -20139,14 +20139,14 @@ Precondition: user A and user B opened the same block - +

Top

## pkg/lib/pb/model/protos/localstore.proto - + ### ObjectDetails @@ -20154,14 +20154,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 @@ -20171,18 +20171,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 @@ -20191,15 +20191,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 @@ -20208,15 +20208,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 @@ -20225,7 +20225,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 | | @@ -20233,7 +20233,7 @@ Precondition: user A and user B opened the same block - + ### ObjectLinks @@ -20249,7 +20249,7 @@ Precondition: user A and user B opened the same block - + ### ObjectLinksInfo @@ -20257,15 +20257,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 @@ -20298,14 +20298,14 @@ Precondition: user A and user B opened the same block - +

Top

## pkg/lib/pb/model/protos/models.proto - + ### Account Contains basic information about a user account @@ -20315,17 +20315,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 @@ -20333,7 +20333,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. | @@ -20341,7 +20341,7 @@ Avatar of a user's account. It could be an image or color - + ### Account.Config @@ -20353,14 +20353,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 @@ -20384,7 +20384,7 @@ Avatar of a user's account. It could be an image or color - + ### Account.Status @@ -20392,7 +20392,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) | | | @@ -20400,7 +20400,7 @@ Avatar of a user's account. It could be an image or color - + ### Block @@ -20409,36 +20409,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 @@ -20448,7 +20448,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. @@ -20461,16 +20461,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 @@ -20479,12 +20479,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) | | | @@ -20493,7 +20493,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Checkbox @@ -20508,7 +20508,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Date @@ -20518,7 +20518,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Filter @@ -20527,13 +20527,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) | | | @@ -20541,7 +20541,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Group @@ -20550,17 +20550,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 @@ -20569,14 +20569,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 @@ -20593,7 +20593,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Relation @@ -20605,15 +20605,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 @@ -20623,9 +20623,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) | | | @@ -20633,7 +20633,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Status @@ -20648,7 +20648,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Tag @@ -20663,7 +20663,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.View @@ -20672,14 +20672,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 | @@ -20690,7 +20690,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.ViewGroup @@ -20708,7 +20708,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 @@ -20716,14 +20716,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 @@ -20733,7 +20733,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.File @@ -20743,19 +20743,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 @@ -20770,7 +20770,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.Latex @@ -20785,7 +20785,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. @@ -20794,14 +20794,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. @@ -20810,11 +20810,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 | | @@ -20822,7 +20822,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Relation @@ -20837,7 +20837,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Smartblock @@ -20847,7 +20847,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Table @@ -20857,7 +20857,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableColumn @@ -20867,7 +20867,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableOfContents @@ -20877,7 +20877,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableRow @@ -20892,7 +20892,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text @@ -20901,8 +20901,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 | @@ -20913,7 +20913,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text.Mark @@ -20921,8 +20921,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 | @@ -20930,7 +20930,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text.Marks @@ -20938,14 +20938,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 @@ -20953,14 +20953,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 @@ -20979,7 +20979,7 @@ Link: block to link some content from an external sources. - + ### BlockMetaOnly Used to decode block meta only, without the content itself @@ -20988,14 +20988,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 @@ -21003,14 +21003,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 @@ -21018,16 +21018,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 @@ -21040,14 +21040,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 @@ -21057,7 +21057,7 @@ Used to decode block meta only, without the content itself - + ### Object.ChangePayload @@ -21065,14 +21065,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 @@ -21082,13 +21082,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) | | | @@ -21097,7 +21097,7 @@ Used to decode block meta only, without the content itself - + ### ObjectView Works with a smart blocks: Page, Dashboard @@ -21107,20 +21107,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 @@ -21129,7 +21129,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 | | @@ -21137,7 +21137,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc - + ### ObjectView.HistorySize @@ -21153,7 +21153,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc - + ### ObjectView.RelationWithValuePerObject @@ -21162,14 +21162,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. @@ -21185,7 +21185,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" @@ -21195,21 +21195,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 | @@ -21219,7 +21219,7 @@ scope from which this relation have been aggregated | - + ### Relation.Option @@ -21239,7 +21239,7 @@ stored | - + ### RelationLink @@ -21248,14 +21248,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| format | [RelationFormat](#anytype.model.RelationFormat) | | | +| format | [RelationFormat](#anytype-model-RelationFormat) | | | - + ### RelationOptions @@ -21263,14 +21263,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| options | [Relation.Option](#anytype.model.Relation.Option) | repeated | | +| options | [Relation.Option](#anytype-model-Relation-Option) | repeated | | - + ### RelationWithValue @@ -21278,15 +21278,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 @@ -21294,14 +21294,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relations | [Relation](#anytype.model.Relation) | repeated | | +| relations | [Relation](#anytype-model-Relation) | repeated | | - + ### Restrictions @@ -21309,15 +21309,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 @@ -21326,14 +21326,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 @@ -21341,21 +21341,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 @@ -21371,7 +21371,7 @@ stored | - + ### ThreadDeeplinkPayload @@ -21389,7 +21389,7 @@ stored | - + ### Account.StatusType @@ -21403,7 +21403,7 @@ stored | - + ### Block.Align @@ -21416,7 +21416,7 @@ stored | - + ### Block.Content.Bookmark.State @@ -21430,7 +21430,7 @@ stored | - + ### Block.Content.Dataview.Filter.Condition @@ -21454,10 +21454,11 @@ stored | | NotAllIn | 14 | | | ExactIn | 15 | | | NotExactIn | 16 | | +| Exists | 17 | | - + ### Block.Content.Dataview.Filter.Operator @@ -21469,7 +21470,7 @@ stored | - + ### Block.Content.Dataview.Filter.QuickOption @@ -21491,7 +21492,7 @@ stored | - + ### Block.Content.Dataview.Relation.DateFormat @@ -21506,7 +21507,7 @@ stored | - + ### Block.Content.Dataview.Relation.TimeFormat @@ -21518,7 +21519,7 @@ stored | - + ### Block.Content.Dataview.Sort.Type @@ -21531,7 +21532,7 @@ stored | - + ### Block.Content.Dataview.View.Size @@ -21544,7 +21545,7 @@ stored | - + ### Block.Content.Dataview.View.Type @@ -21558,7 +21559,7 @@ stored | - + ### Block.Content.Div.Style @@ -21570,7 +21571,7 @@ stored | - + ### Block.Content.File.State @@ -21584,7 +21585,7 @@ stored | - + ### Block.Content.File.Style @@ -21597,7 +21598,7 @@ stored | - + ### Block.Content.File.Type @@ -21613,7 +21614,7 @@ stored | - + ### Block.Content.Layout.Style @@ -21629,7 +21630,7 @@ stored | - + ### Block.Content.Link.CardStyle @@ -21642,7 +21643,7 @@ stored | - + ### Block.Content.Link.Description @@ -21655,7 +21656,7 @@ stored | - + ### Block.Content.Link.IconSize @@ -21668,7 +21669,7 @@ stored | - + ### Block.Content.Link.Style @@ -21682,7 +21683,7 @@ stored | - + ### Block.Content.Text.Mark.Type @@ -21703,7 +21704,7 @@ stored | - + ### Block.Content.Text.Style @@ -21727,7 +21728,7 @@ stored | - + ### Block.Content.Widget.Layout @@ -21740,7 +21741,7 @@ stored | - + ### Block.Position @@ -21758,7 +21759,7 @@ stored | - + ### Block.VerticalAlign @@ -21771,7 +21772,7 @@ stored | - + ### InternalFlag.Value Use such a weird construction due to the issue with imported repeated enum type @@ -21785,7 +21786,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### LinkPreview.Type @@ -21799,7 +21800,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### ObjectType.Layout @@ -21825,7 +21826,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### Relation.DataSource @@ -21839,7 +21840,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### Relation.Scope @@ -21854,7 +21855,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 @@ -21878,7 +21879,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### Restrictions.DataviewRestriction @@ -21892,7 +21893,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### Restrictions.ObjectRestriction @@ -21911,7 +21912,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### SmartBlockType diff --git a/pkg/lib/database/filter/filter.go b/pkg/lib/database/filter/filter.go index 19a28a122..24e757f55 100644 --- a/pkg/lib/database/filter/filter.go +++ b/pkg/lib/database/filter/filter.go @@ -140,6 +140,10 @@ func MakeFilter(proto *model.BlockContentDataviewFilter) (Filter, error) { Key: proto.RelationKey, Value: list, }}, nil + case model.BlockContentDataviewFilter_Exists: + return Exists{ + Key: proto.RelationKey, + }, nil default: return nil, fmt.Errorf("unexpected filter cond: %v", proto.Condition) } diff --git a/pkg/lib/pb/model/models.pb.go b/pkg/lib/pb/model/models.pb.go index 862c90063..f75a1ab9a 100644 --- a/pkg/lib/pb/model/models.pb.go +++ b/pkg/lib/pb/model/models.pb.go @@ -890,6 +890,7 @@ const ( BlockContentDataviewFilter_NotAllIn BlockContentDataviewFilterCondition = 14 BlockContentDataviewFilter_ExactIn BlockContentDataviewFilterCondition = 15 BlockContentDataviewFilter_NotExactIn BlockContentDataviewFilterCondition = 16 + BlockContentDataviewFilter_Exists BlockContentDataviewFilterCondition = 17 ) var BlockContentDataviewFilterCondition_name = map[int32]string{ @@ -910,6 +911,7 @@ var BlockContentDataviewFilterCondition_name = map[int32]string{ 14: "NotAllIn", 15: "ExactIn", 16: "NotExactIn", + 17: "Exists", } var BlockContentDataviewFilterCondition_value = map[string]int32{ @@ -930,6 +932,7 @@ var BlockContentDataviewFilterCondition_value = map[string]int32{ "NotAllIn": 14, "ExactIn": 15, "NotExactIn": 16, + "Exists": 17, } func (x BlockContentDataviewFilterCondition) String() string { @@ -1442,6 +1445,7 @@ type Block struct { Align BlockAlign `protobuf:"varint,6,opt,name=align,proto3,enum=anytype.model.BlockAlign" json:"align,omitempty"` VerticalAlign BlockVerticalAlign `protobuf:"varint,7,opt,name=verticalAlign,proto3,enum=anytype.model.BlockVerticalAlign" json:"verticalAlign,omitempty"` // Types that are valid to be assigned to Content: + // // *BlockContentOfSmartblock // *BlockContentOfText // *BlockContentOfFile @@ -2592,6 +2596,7 @@ type BlockContentDataview struct { ObjectOrders []*BlockContentDataviewObjectOrder `protobuf:"bytes,13,rep,name=objectOrders,proto3" json:"objectOrders,omitempty"` RelationLinks []*RelationLink `protobuf:"bytes,5,rep,name=relationLinks,proto3" json:"relationLinks,omitempty"` TargetObjectId string `protobuf:"bytes,6,opt,name=TargetObjectId,proto3" json:"TargetObjectId,omitempty"` + IsCollection bool `protobuf:"varint,14,opt,name=isCollection,proto3" json:"isCollection,omitempty"` } func (m *BlockContentDataview) Reset() { *m = BlockContentDataview{} } @@ -2683,6 +2688,13 @@ func (m *BlockContentDataview) GetTargetObjectId() string { return "" } +func (m *BlockContentDataview) GetIsCollection() bool { + if m != nil { + return m.IsCollection + } + return false +} + type BlockContentDataviewView struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Type BlockContentDataviewViewType `protobuf:"varint,2,opt,name=type,proto3,enum=anytype.model.BlockContentDataviewViewType" json:"type,omitempty"` @@ -3282,6 +3294,7 @@ func (m *BlockContentDataviewObjectOrder) GetObjectIds() []string { type BlockContentDataviewGroup struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // Types that are valid to be assigned to Value: + // // *BlockContentDataviewGroupValueOfStatus // *BlockContentDataviewGroupValueOfTag // *BlockContentDataviewGroupValueOfCheckbox @@ -4046,6 +4059,7 @@ func (m *Account) GetInfo() *AccountInfo { // Avatar of a user's account. It could be an image or color type AccountAvatar struct { // Types that are valid to be assigned to Avatar: + // // *AccountAvatarAvatarOfImage // *AccountAvatarAvatarOfColor Avatar IsAccountAvatarAvatar `protobuf_oneof:"avatar"` @@ -5773,332 +5787,333 @@ func init() { } var fileDescriptor_98a910b73321e591 = []byte{ - // 5189 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5b, 0x4b, 0x6c, 0x1c, 0x47, - 0x7a, 0xe6, 0xbc, 0x67, 0xfe, 0x21, 0xa9, 0x62, 0x89, 0x92, 0x26, 0x2d, 0xad, 0xc2, 0xed, 0x78, - 0xb5, 0x5a, 0xad, 0x97, 0xb2, 0xf5, 0x58, 0x3f, 0x12, 0x5b, 0xe6, 0x43, 0x32, 0x09, 0x3d, 0x48, - 0xf7, 0x50, 0x54, 0xd6, 0x48, 0x02, 0xf7, 0x4c, 0x17, 0x67, 0xda, 0xec, 0xe9, 0x1a, 0x77, 0xd7, - 0x50, 0xe4, 0x02, 0x01, 0x9c, 0xc7, 0xe6, 0x18, 0x78, 0x17, 0x08, 0x02, 0x04, 0x08, 0xb0, 0x41, - 0xae, 0xb9, 0x06, 0x49, 0x80, 0xdc, 0x82, 0x00, 0x01, 0x72, 0xf1, 0x2d, 0x0b, 0x04, 0x48, 0x02, - 0xfb, 0x98, 0x9c, 0x72, 0xce, 0x21, 0xf8, 0xff, 0xaa, 0xee, 0xe9, 0x79, 0x90, 0x1a, 0x7a, 0xf7, - 0x34, 0x5d, 0x7f, 0xff, 0xff, 0xdf, 0xf5, 0xf8, 0xeb, 0xfb, 0x1f, 0x55, 0x03, 0xaf, 0xf5, 0x0f, - 0x3b, 0xb7, 0x03, 0xbf, 0x75, 0xbb, 0xdf, 0xba, 0xdd, 0x93, 0x9e, 0x08, 0x6e, 0xf7, 0x23, 0xa9, - 0x64, 0xac, 0x1b, 0xf1, 0x2a, 0xb5, 0xf8, 0x82, 0x1b, 0x9e, 0xa8, 0x93, 0xbe, 0x58, 0x25, 0xaa, - 0x75, 0xad, 0x23, 0x65, 0x27, 0x10, 0x9a, 0xb5, 0x35, 0x38, 0xb8, 0x1d, 0xab, 0x68, 0xd0, 0x56, - 0x9a, 0xd9, 0xfe, 0xe7, 0x02, 0x5c, 0x6e, 0xf6, 0xdc, 0x48, 0xad, 0x07, 0xb2, 0x7d, 0xd8, 0x0c, - 0xdd, 0x7e, 0xdc, 0x95, 0x6a, 0xdd, 0x8d, 0x05, 0x7f, 0x1d, 0xca, 0x2d, 0x24, 0xc6, 0x8d, 0xdc, - 0x4a, 0xe1, 0x66, 0xfd, 0xce, 0xf2, 0xea, 0x88, 0xe2, 0x55, 0x92, 0x70, 0x0c, 0x0f, 0x7f, 0x13, - 0x2a, 0x9e, 0x50, 0xae, 0x1f, 0xc4, 0x8d, 0xfc, 0x4a, 0xee, 0x66, 0xfd, 0xce, 0x95, 0x55, 0xfd, - 0xe1, 0xd5, 0xe4, 0xc3, 0xab, 0x4d, 0xfa, 0xb0, 0x93, 0xf0, 0xf1, 0xbb, 0x50, 0x3d, 0xf0, 0x03, - 0xf1, 0x58, 0x9c, 0xc4, 0x8d, 0xc2, 0xd9, 0x32, 0x29, 0x23, 0x7f, 0x00, 0x8b, 0xe2, 0x58, 0x45, - 0xae, 0x23, 0x02, 0x57, 0xf9, 0x32, 0x8c, 0x1b, 0x45, 0xea, 0xdd, 0x95, 0xb1, 0xde, 0x25, 0xef, - 0x9d, 0x31, 0x76, 0xbe, 0x02, 0x75, 0xd9, 0xfa, 0x54, 0xb4, 0xd5, 0xde, 0x49, 0x5f, 0xc4, 0x8d, - 0xd2, 0x4a, 0xe1, 0x66, 0xcd, 0xc9, 0x92, 0xf8, 0x3b, 0x50, 0x6f, 0xcb, 0x20, 0x10, 0x6d, 0xad, - 0xbf, 0x7c, 0x76, 0xd7, 0xb2, 0xbc, 0xfc, 0x1e, 0x5c, 0x8a, 0x44, 0x4f, 0x1e, 0x09, 0x6f, 0x23, - 0xa5, 0xd2, 0xf8, 0xaa, 0xf4, 0x99, 0xe9, 0x2f, 0xf9, 0x1a, 0x2c, 0x44, 0xa6, 0x7f, 0x4f, 0xfc, - 0xf0, 0x30, 0x6e, 0x54, 0x68, 0x48, 0x57, 0x4f, 0x19, 0x12, 0xf2, 0x38, 0xa3, 0x12, 0xf6, 0xff, - 0xac, 0x41, 0x89, 0x16, 0x84, 0x2f, 0x42, 0xde, 0xf7, 0x1a, 0xb9, 0x95, 0xdc, 0xcd, 0x9a, 0x93, - 0xf7, 0x3d, 0x7e, 0x1b, 0xca, 0x07, 0xbe, 0x08, 0xbc, 0x57, 0xae, 0x8b, 0x61, 0xe3, 0x0f, 0x61, - 0x3e, 0x12, 0xb1, 0x8a, 0x7c, 0x33, 0x7e, 0xbd, 0x34, 0xdf, 0x9e, 0xb6, 0xfa, 0xab, 0x4e, 0x86, - 0xd1, 0x19, 0x11, 0xc3, 0x79, 0x6e, 0x77, 0xfd, 0xc0, 0x8b, 0x44, 0xb8, 0xed, 0xe9, 0x55, 0xaa, - 0x39, 0x59, 0x12, 0xbf, 0x09, 0x17, 0x5a, 0x6e, 0xfb, 0xb0, 0x13, 0xc9, 0x41, 0x88, 0x53, 0x22, - 0xa3, 0x46, 0x89, 0xba, 0x3d, 0x4e, 0xe6, 0x6f, 0x40, 0xc9, 0x0d, 0xfc, 0x4e, 0x48, 0x6b, 0xb1, - 0x78, 0xc7, 0x9a, 0xda, 0x97, 0x35, 0xe4, 0x70, 0x34, 0x23, 0xdf, 0x82, 0x85, 0x23, 0x11, 0x29, - 0xbf, 0xed, 0x06, 0x44, 0x6f, 0x54, 0x48, 0xd2, 0x9e, 0x2a, 0xb9, 0x9f, 0xe5, 0x74, 0x46, 0x05, - 0xf9, 0x36, 0x40, 0x8c, 0x1b, 0x84, 0xec, 0xbc, 0x51, 0xa7, 0xc9, 0xf8, 0xee, 0x54, 0x35, 0x1b, - 0x32, 0x54, 0x22, 0x54, 0xab, 0xcd, 0x94, 0x7d, 0x6b, 0xce, 0xc9, 0x08, 0xf3, 0xb7, 0xa0, 0xa8, - 0xc4, 0xb1, 0x6a, 0x2c, 0x9e, 0x31, 0xa3, 0x89, 0x92, 0x3d, 0x71, 0xac, 0xb6, 0xe6, 0x1c, 0x12, - 0x40, 0x41, 0xdc, 0x00, 0x8d, 0x0b, 0x33, 0x08, 0x3e, 0xf2, 0x03, 0x81, 0x82, 0x28, 0xc0, 0xdf, - 0x83, 0x72, 0xe0, 0x9e, 0xc8, 0x81, 0x6a, 0x30, 0x12, 0xfd, 0x8d, 0x33, 0x45, 0x9f, 0x10, 0xeb, - 0xd6, 0x9c, 0x63, 0x84, 0xf8, 0x3d, 0x28, 0x78, 0xfe, 0x51, 0x63, 0x89, 0x64, 0x57, 0xce, 0x94, - 0xdd, 0xf4, 0x8f, 0xb6, 0xe6, 0x1c, 0x64, 0xe7, 0x1b, 0x50, 0x6d, 0x49, 0x79, 0xd8, 0x73, 0xa3, - 0xc3, 0x06, 0x27, 0xd1, 0xef, 0x9c, 0x29, 0xba, 0x6e, 0x98, 0xb7, 0xe6, 0x9c, 0x54, 0x10, 0x87, - 0xec, 0xb7, 0x65, 0xd8, 0xb8, 0x38, 0xc3, 0x90, 0xb7, 0xdb, 0x32, 0xc4, 0x21, 0xa3, 0x00, 0x0a, - 0x06, 0x7e, 0x78, 0xd8, 0x58, 0x9e, 0x41, 0x10, 0xf7, 0x0e, 0x0a, 0xa2, 0x00, 0x76, 0xdb, 0x73, - 0x95, 0x7b, 0xe4, 0x8b, 0x97, 0x8d, 0x4b, 0x33, 0x74, 0x7b, 0xd3, 0x30, 0x63, 0xb7, 0x13, 0x41, - 0x54, 0x92, 0x6c, 0xcc, 0xc6, 0xe5, 0x19, 0x94, 0x24, 0x7b, 0x1a, 0x95, 0x24, 0x82, 0xfc, 0xf7, - 0x60, 0xe9, 0x40, 0xb8, 0x6a, 0x10, 0x09, 0x6f, 0x08, 0x73, 0x57, 0x48, 0xdb, 0xea, 0xd9, 0x6b, - 0x3f, 0x2e, 0xb5, 0x35, 0xe7, 0x4c, 0xaa, 0xe2, 0xef, 0x42, 0x29, 0x70, 0x95, 0x38, 0x6e, 0x34, - 0x48, 0xa7, 0xfd, 0x0a, 0xa3, 0x50, 0xe2, 0x78, 0x6b, 0xce, 0xd1, 0x22, 0xfc, 0xb7, 0xe1, 0x82, - 0x72, 0x5b, 0x81, 0xd8, 0x39, 0x30, 0x0c, 0x71, 0xe3, 0xd7, 0x48, 0xcb, 0xeb, 0x67, 0x9b, 0xf3, - 0xa8, 0xcc, 0xd6, 0x9c, 0x33, 0xae, 0x06, 0x7b, 0x45, 0xa4, 0x86, 0x35, 0x43, 0xaf, 0x48, 0x1f, - 0xf6, 0x8a, 0x44, 0xf8, 0x13, 0xa8, 0xd3, 0xc3, 0x86, 0x0c, 0x06, 0xbd, 0xb0, 0x71, 0x95, 0x34, - 0xdc, 0x7c, 0xb5, 0x06, 0xcd, 0xbf, 0x35, 0xe7, 0x64, 0xc5, 0x71, 0x11, 0xa9, 0xe9, 0xc8, 0x97, - 0x8d, 0x6b, 0x33, 0x2c, 0xe2, 0x9e, 0x61, 0xc6, 0x45, 0x4c, 0x04, 0x71, 0xeb, 0xbd, 0xf4, 0xbd, - 0x8e, 0x50, 0x8d, 0x6f, 0xcd, 0xb0, 0xf5, 0x5e, 0x10, 0x2b, 0x6e, 0x3d, 0x2d, 0x64, 0xfd, 0x18, - 0xe6, 0xb3, 0xe0, 0xca, 0x39, 0x14, 0x23, 0xe1, 0x6a, 0x60, 0xaf, 0x3a, 0xf4, 0x8c, 0x34, 0xe1, - 0xf9, 0x8a, 0x80, 0xbd, 0xea, 0xd0, 0x33, 0xbf, 0x0c, 0x65, 0xed, 0x64, 0x08, 0xb7, 0xab, 0x8e, - 0x69, 0x21, 0xaf, 0x17, 0xb9, 0x9d, 0x46, 0x51, 0xf3, 0xe2, 0x33, 0xf2, 0x7a, 0x91, 0xec, 0xef, - 0x84, 0x84, 0xbb, 0x55, 0xc7, 0xb4, 0xac, 0xbf, 0xb8, 0x0b, 0x15, 0xd3, 0x31, 0xeb, 0x2f, 0x73, - 0x50, 0xd6, 0xb8, 0xc0, 0x1f, 0x40, 0x29, 0x56, 0x27, 0x81, 0xa0, 0x3e, 0x2c, 0xde, 0xf9, 0xde, - 0x0c, 0x58, 0xb2, 0xda, 0x44, 0x01, 0x47, 0xcb, 0xd9, 0x0e, 0x94, 0xa8, 0xcd, 0x2b, 0x50, 0x70, - 0xe4, 0x4b, 0x36, 0xc7, 0x01, 0xca, 0x7a, 0xce, 0x59, 0x0e, 0x89, 0x9b, 0xfe, 0x11, 0xcb, 0x23, - 0x71, 0x4b, 0xb8, 0x9e, 0x88, 0x58, 0x81, 0x2f, 0x40, 0x2d, 0x99, 0xdd, 0x98, 0x15, 0x39, 0x83, - 0xf9, 0xcc, 0xba, 0xc5, 0xac, 0x64, 0xfd, 0x6f, 0x11, 0x8a, 0xb8, 0x8d, 0xf9, 0x6b, 0xb0, 0xa0, - 0xdc, 0xa8, 0x23, 0x74, 0x24, 0xb3, 0x9d, 0xb8, 0xc0, 0x51, 0x22, 0x7f, 0x2f, 0x19, 0x43, 0x9e, - 0xc6, 0xf0, 0xdd, 0x57, 0xc2, 0xc3, 0xc8, 0x08, 0x32, 0xce, 0xb4, 0x30, 0x9b, 0x33, 0x7d, 0x04, - 0x55, 0x44, 0xa5, 0xa6, 0xff, 0x63, 0x41, 0x53, 0xbf, 0x78, 0xe7, 0xd6, 0xab, 0x3f, 0xb9, 0x6d, - 0x24, 0x9c, 0x54, 0x96, 0x6f, 0x43, 0xad, 0xed, 0x46, 0x1e, 0x75, 0x86, 0x56, 0x6b, 0xf1, 0xce, - 0xf7, 0x5f, 0xad, 0x68, 0x23, 0x11, 0x71, 0x86, 0xd2, 0x7c, 0x07, 0xea, 0x9e, 0x88, 0xdb, 0x91, - 0xdf, 0x27, 0x94, 0xd2, 0x2e, 0xf5, 0x07, 0xaf, 0x56, 0xb6, 0x39, 0x14, 0x72, 0xb2, 0x1a, 0xf8, - 0x35, 0xa8, 0x45, 0x29, 0x4c, 0x55, 0xc8, 0xcf, 0x0f, 0x09, 0xf6, 0x5b, 0x50, 0x4d, 0xc6, 0xc3, - 0xe7, 0xa1, 0x8a, 0xbf, 0xcf, 0x64, 0x28, 0xd8, 0x1c, 0xae, 0x2d, 0xb6, 0x9a, 0x3d, 0x37, 0x08, - 0x58, 0x8e, 0x2f, 0x02, 0x60, 0xf3, 0xa9, 0xf0, 0xfc, 0x41, 0x8f, 0xe5, 0xed, 0xdf, 0x4c, 0xac, - 0xa5, 0x0a, 0xc5, 0x5d, 0xb7, 0x83, 0x12, 0xf3, 0x50, 0x4d, 0x50, 0x97, 0xe5, 0x50, 0x7e, 0xd3, - 0x8d, 0xbb, 0x2d, 0xe9, 0x46, 0x1e, 0xcb, 0xf3, 0x3a, 0x54, 0xd6, 0xa2, 0x76, 0xd7, 0x3f, 0x12, - 0xac, 0x60, 0xdf, 0x86, 0x7a, 0xa6, 0xbf, 0xa8, 0xc2, 0x7c, 0xb4, 0x06, 0xa5, 0x35, 0xcf, 0x13, - 0x1e, 0xcb, 0xa1, 0x80, 0x19, 0x20, 0xcb, 0xdb, 0xdf, 0x87, 0x5a, 0x3a, 0x5b, 0xc8, 0x8e, 0xfe, - 0x97, 0xcd, 0xe1, 0x13, 0x92, 0x59, 0x0e, 0xad, 0x72, 0x3b, 0x0c, 0xfc, 0x50, 0xb0, 0xbc, 0xf5, - 0x09, 0x99, 0x2a, 0xff, 0xad, 0xd1, 0x0d, 0x71, 0xe3, 0x55, 0x0e, 0x72, 0x74, 0x37, 0x5c, 0xcd, - 0x8c, 0xef, 0x89, 0x4f, 0x9d, 0xab, 0x42, 0x71, 0x53, 0xaa, 0x98, 0xe5, 0xac, 0xff, 0xce, 0x43, - 0x35, 0xf1, 0x8b, 0x9c, 0x41, 0x61, 0x10, 0x05, 0xc6, 0xa0, 0xf1, 0x91, 0x2f, 0x43, 0x49, 0xf9, - 0xca, 0x98, 0x71, 0xcd, 0xd1, 0x0d, 0x0c, 0xb9, 0xb2, 0x2b, 0x5b, 0xa0, 0x77, 0xe3, 0x4b, 0xe5, - 0xf7, 0xdc, 0x8e, 0xd8, 0x72, 0xe3, 0x2e, 0xd9, 0x63, 0xcd, 0x19, 0x12, 0x50, 0xfe, 0xc0, 0x3d, - 0x42, 0x9b, 0xa3, 0xf7, 0x3a, 0x18, 0xcb, 0x92, 0xf8, 0x5d, 0x28, 0xe2, 0x00, 0x8d, 0xd1, 0xfc, - 0xfa, 0xd8, 0x80, 0xd1, 0x4c, 0x76, 0x23, 0x81, 0xcb, 0xb3, 0x8a, 0xa1, 0xb4, 0x43, 0xcc, 0xfc, - 0x06, 0x2c, 0xea, 0x4d, 0xb8, 0x43, 0x41, 0xf6, 0xb6, 0x47, 0xc1, 0x58, 0xcd, 0x19, 0xa3, 0xf2, - 0x35, 0x9c, 0x4e, 0x57, 0x89, 0x46, 0x75, 0x06, 0xfb, 0x4e, 0x26, 0x67, 0xb5, 0x89, 0x22, 0x8e, - 0x96, 0xb4, 0xef, 0xe3, 0x9c, 0xba, 0x4a, 0xe0, 0x32, 0x3f, 0xec, 0xf5, 0xd5, 0x89, 0x36, 0x9a, - 0x47, 0x42, 0xb5, 0xbb, 0x7e, 0xd8, 0x61, 0x39, 0x3d, 0xc5, 0xb8, 0x88, 0xc4, 0x12, 0x45, 0x32, - 0x62, 0x05, 0xcb, 0x82, 0x22, 0xda, 0x28, 0x82, 0x64, 0xe8, 0xf6, 0x84, 0x99, 0x69, 0x7a, 0xb6, - 0x2e, 0xc2, 0xd2, 0x84, 0x5b, 0xb5, 0xfe, 0xa1, 0xac, 0x2d, 0x04, 0x25, 0x28, 0xa4, 0x33, 0x12, - 0x14, 0xad, 0x9d, 0x0b, 0x63, 0x50, 0xcb, 0x28, 0xc6, 0xbc, 0x07, 0x25, 0x1c, 0x58, 0x02, 0x31, - 0x33, 0x88, 0x3f, 0x45, 0x76, 0x47, 0x4b, 0xf1, 0x06, 0x54, 0xda, 0x5d, 0xd1, 0x3e, 0x14, 0x9e, - 0xc1, 0xfa, 0xa4, 0x89, 0x46, 0xd3, 0xce, 0x44, 0xd9, 0xba, 0x41, 0x26, 0xd1, 0x96, 0xe1, 0xc3, - 0x9e, 0xfc, 0xd4, 0xa7, 0x75, 0x45, 0x93, 0x48, 0x08, 0xc9, 0xdb, 0x6d, 0xb4, 0x11, 0xb3, 0x6c, - 0x43, 0x82, 0xf5, 0x10, 0x4a, 0xf4, 0x6d, 0xdc, 0x09, 0xba, 0xcf, 0x3a, 0x55, 0xbc, 0x31, 0x5b, - 0x9f, 0x4d, 0x97, 0xad, 0xbf, 0xc9, 0x43, 0x11, 0xdb, 0xfc, 0x16, 0x94, 0x22, 0x37, 0xec, 0xe8, - 0x05, 0x98, 0xcc, 0x38, 0x1d, 0x7c, 0xe7, 0x68, 0x16, 0xfe, 0xc0, 0x98, 0x62, 0x7e, 0x06, 0x63, - 0x49, 0xbf, 0x98, 0x35, 0xcb, 0x65, 0x28, 0xf5, 0xdd, 0xc8, 0xed, 0x99, 0x7d, 0xa2, 0x1b, 0xf6, - 0xcf, 0x73, 0x50, 0x44, 0x26, 0xbe, 0x04, 0x0b, 0x4d, 0x15, 0xf9, 0x87, 0x42, 0x75, 0x23, 0x39, - 0xe8, 0x74, 0xb5, 0x25, 0x3d, 0x16, 0x27, 0x1a, 0x6f, 0x34, 0x20, 0x28, 0x37, 0xf0, 0xdb, 0x2c, - 0x8f, 0x56, 0xb5, 0x2e, 0x03, 0x8f, 0x15, 0xf8, 0x05, 0xa8, 0x3f, 0x0f, 0x3d, 0x11, 0xc5, 0x6d, - 0x19, 0x09, 0x8f, 0x15, 0xcd, 0xee, 0x3e, 0x64, 0x25, 0xf2, 0x65, 0xe2, 0x58, 0x51, 0x4a, 0xc3, - 0xca, 0xfc, 0x22, 0x5c, 0x58, 0x1f, 0xcd, 0x73, 0x58, 0x05, 0x31, 0xe9, 0xa9, 0x08, 0xd1, 0xc8, - 0x58, 0x55, 0x1b, 0xb1, 0xfc, 0xd4, 0x67, 0x35, 0xfc, 0x98, 0xde, 0x27, 0x0c, 0xec, 0x7f, 0xcc, - 0x25, 0xc8, 0xb1, 0x00, 0xb5, 0x5d, 0x37, 0x72, 0x3b, 0x91, 0xdb, 0xc7, 0xfe, 0xd5, 0xa1, 0xa2, - 0x1d, 0xe7, 0x9b, 0x1a, 0xdd, 0x74, 0xe3, 0x8e, 0xc6, 0x46, 0xdd, 0xb8, 0xcb, 0x0a, 0xc3, 0xc6, - 0x3d, 0x56, 0xc4, 0x6f, 0x7c, 0x34, 0x90, 0x4a, 0xb0, 0x12, 0x61, 0x9d, 0xf4, 0x04, 0x2b, 0x23, - 0x71, 0x0f, 0x11, 0x85, 0x55, 0x70, 0xcc, 0x1b, 0x68, 0x3f, 0x2d, 0x79, 0xcc, 0xaa, 0xd8, 0x0d, - 0x9c, 0x46, 0xe1, 0xb1, 0x1a, 0xbe, 0x79, 0x36, 0xe8, 0xb5, 0x04, 0x0e, 0x13, 0xf0, 0xcd, 0x9e, - 0xec, 0x74, 0x02, 0xc1, 0xea, 0x38, 0x07, 0x19, 0xf0, 0x65, 0xf3, 0x84, 0xb4, 0x6e, 0x10, 0xc8, - 0x81, 0x62, 0x0b, 0xd6, 0x97, 0x05, 0x28, 0x62, 0x92, 0x82, 0x7b, 0xa7, 0x8b, 0x38, 0x63, 0xf6, - 0x0e, 0x3e, 0xa7, 0x3b, 0x30, 0x3f, 0xdc, 0x81, 0xfc, 0x5d, 0xb3, 0xd2, 0x85, 0x19, 0x50, 0x16, - 0x15, 0x67, 0x17, 0x99, 0x43, 0xb1, 0xe7, 0xf7, 0x84, 0xc1, 0x3a, 0x7a, 0x46, 0x5a, 0x8c, 0xfe, - 0x18, 0xb7, 0x41, 0xc1, 0xa1, 0x67, 0xdc, 0x35, 0x2e, 0xba, 0x85, 0x35, 0x45, 0x7b, 0xa0, 0xe0, - 0x24, 0x4d, 0xbd, 0x9b, 0x11, 0x95, 0x2a, 0x33, 0xec, 0x66, 0xfa, 0x7c, 0x16, 0x91, 0x86, 0x60, - 0x50, 0x9d, 0x5d, 0x3c, 0xe3, 0x24, 0x36, 0x8d, 0x35, 0x0e, 0x1d, 0x58, 0x55, 0xcf, 0x1e, 0xcb, - 0xe1, 0x2a, 0xd1, 0x36, 0xd4, 0x58, 0xb6, 0xef, 0x7b, 0x42, 0xb2, 0x02, 0x39, 0xb8, 0x81, 0xe7, - 0x4b, 0x56, 0xc4, 0x88, 0x6a, 0x77, 0xf3, 0x11, 0x2b, 0xd9, 0x37, 0x32, 0xae, 0x66, 0x6d, 0xa0, - 0xa4, 0x56, 0x43, 0x66, 0x99, 0xd3, 0x56, 0xd6, 0x12, 0x1e, 0xcb, 0xdb, 0x3f, 0x9c, 0x02, 0x9f, - 0x0b, 0x50, 0x7b, 0xde, 0x0f, 0xa4, 0xeb, 0x9d, 0x81, 0x9f, 0xf3, 0x00, 0xc3, 0xa4, 0xd7, 0xfa, - 0xb7, 0x6b, 0x43, 0x37, 0x8d, 0x31, 0x66, 0x2c, 0x07, 0x51, 0x5b, 0x10, 0x34, 0xd4, 0x1c, 0xd3, - 0xe2, 0x1f, 0x40, 0x09, 0xdf, 0xc7, 0x8d, 0x3c, 0x21, 0xc6, 0xad, 0x99, 0x52, 0xad, 0xd5, 0x7d, - 0x5f, 0xbc, 0x74, 0xb4, 0x20, 0xbf, 0x9f, 0x0d, 0x3b, 0x5e, 0x51, 0x04, 0x1a, 0x72, 0xf2, 0xeb, - 0x00, 0x6e, 0x5b, 0xf9, 0x47, 0x02, 0x75, 0x99, 0xbd, 0x9f, 0xa1, 0x70, 0x07, 0xea, 0xb8, 0x25, - 0xfb, 0x3b, 0x11, 0xee, 0xe2, 0xc6, 0x3c, 0x29, 0x7e, 0x63, 0xb6, 0xee, 0x7d, 0x98, 0x0a, 0x3a, - 0x59, 0x25, 0xfc, 0x39, 0xcc, 0xeb, 0x02, 0x93, 0x51, 0xba, 0x40, 0x4a, 0xdf, 0x9c, 0x4d, 0xe9, - 0xce, 0x50, 0xd2, 0x19, 0x51, 0x33, 0x59, 0x37, 0x2a, 0x9d, 0xb7, 0x6e, 0x84, 0xbe, 0x79, 0x6f, - 0xd4, 0x37, 0x6b, 0x17, 0x30, 0x46, 0xb5, 0x7e, 0x51, 0x82, 0x22, 0x4d, 0xcf, 0x78, 0x79, 0x69, - 0x63, 0x04, 0x86, 0x6f, 0xcf, 0xbe, 0x8c, 0x63, 0xbb, 0x94, 0x76, 0x7d, 0x21, 0xb3, 0xeb, 0x3f, - 0x80, 0x52, 0x2c, 0x23, 0x95, 0x2c, 0xed, 0x8c, 0x06, 0xd2, 0x94, 0x91, 0x72, 0xb4, 0x20, 0x7f, - 0x04, 0x95, 0x03, 0x3f, 0x50, 0x38, 0xe1, 0x7a, 0x62, 0x5e, 0x9f, 0x4d, 0xc7, 0x23, 0x12, 0x72, - 0x12, 0x61, 0xfe, 0x24, 0x6b, 0x68, 0x65, 0xd2, 0xb4, 0x3a, 0x9b, 0xa6, 0x69, 0xf6, 0x77, 0x0b, - 0x58, 0x5b, 0x1e, 0x89, 0x28, 0x79, 0xf7, 0x58, 0x9c, 0x18, 0xc7, 0x3a, 0x41, 0xe7, 0x16, 0x54, - 0xbb, 0xbe, 0x27, 0x30, 0x36, 0x21, 0xfc, 0xa8, 0x3a, 0x69, 0x9b, 0x3f, 0x86, 0x2a, 0xc5, 0xf4, - 0x88, 0x64, 0xb5, 0x73, 0x4f, 0xbe, 0x4e, 0x2f, 0x12, 0x05, 0xf8, 0x21, 0xfa, 0xf8, 0x23, 0x5f, - 0x35, 0x40, 0x7f, 0x28, 0x69, 0x63, 0x87, 0xc9, 0x96, 0xb3, 0x1d, 0xae, 0xeb, 0x0e, 0x8f, 0xd3, - 0xf9, 0x3d, 0xb8, 0x44, 0xb4, 0x31, 0xc7, 0x86, 0xdb, 0x08, 0x95, 0x4e, 0x7f, 0x89, 0x41, 0x46, - 0xdf, 0xed, 0x88, 0x27, 0x7e, 0xcf, 0x57, 0x8d, 0x85, 0x95, 0xdc, 0xcd, 0x92, 0x33, 0x24, 0xd8, - 0xf7, 0x0c, 0x04, 0xa2, 0x53, 0xc2, 0xdc, 0x2f, 0x01, 0xaf, 0x58, 0x69, 0x2f, 0xf7, 0xa1, 0x1b, - 0x04, 0x22, 0x3a, 0xd1, 0x89, 0xe3, 0x63, 0x37, 0x6c, 0xb9, 0x21, 0x2b, 0xd8, 0x37, 0xa1, 0x48, - 0x23, 0xab, 0x41, 0x49, 0x27, 0x18, 0x94, 0x6c, 0x9a, 0xe4, 0x82, 0x40, 0xef, 0x09, 0x5a, 0x38, - 0xcb, 0x5b, 0x7f, 0x5f, 0x80, 0x6a, 0x32, 0x06, 0x0c, 0xb5, 0x0f, 0xc5, 0x49, 0x12, 0x6a, 0x1f, - 0x8a, 0x13, 0x8a, 0x80, 0xe2, 0x7d, 0x3f, 0xf6, 0x5b, 0x26, 0xa2, 0xab, 0x3a, 0x43, 0x02, 0x06, - 0x11, 0x2f, 0x7d, 0x4f, 0x75, 0xc9, 0x74, 0x4b, 0x8e, 0x6e, 0xf0, 0x9b, 0x70, 0xc1, 0x73, 0x95, - 0xd8, 0x0e, 0xdb, 0xc1, 0xc0, 0x13, 0x7b, 0xe8, 0x80, 0x74, 0x86, 0x3d, 0x4e, 0xe6, 0x3f, 0x02, - 0x50, 0x7e, 0x4f, 0x3c, 0x92, 0x51, 0xcf, 0x55, 0x26, 0xac, 0x7e, 0xe7, 0x7c, 0xc6, 0xb5, 0xba, - 0x97, 0x2a, 0x70, 0x32, 0xca, 0x50, 0x35, 0x7e, 0xcd, 0xa8, 0xae, 0x7c, 0x23, 0xd5, 0x9b, 0xa9, - 0x02, 0x27, 0xa3, 0xcc, 0xfe, 0x1d, 0x80, 0xe1, 0x1b, 0x7e, 0x19, 0xf8, 0x53, 0x19, 0xaa, 0xee, - 0x5a, 0xab, 0x15, 0xad, 0x8b, 0x03, 0x19, 0x89, 0x4d, 0x17, 0x3d, 0xc7, 0x25, 0x58, 0x4a, 0xe9, - 0x6b, 0x07, 0x4a, 0x44, 0x48, 0xa6, 0xa9, 0x6f, 0x76, 0x65, 0xa4, 0x74, 0x58, 0x42, 0x8f, 0xcf, - 0x9b, 0xac, 0x80, 0xde, 0x6a, 0xbb, 0xb9, 0xc3, 0x8a, 0xf6, 0x4d, 0x80, 0xe1, 0x90, 0x28, 0x7c, - 0xa7, 0xa7, 0x37, 0xef, 0x98, 0x60, 0x9e, 0x5a, 0x77, 0xee, 0xb1, 0x9c, 0xf5, 0x77, 0x79, 0x28, - 0xe2, 0x8e, 0x37, 0xa8, 0x54, 0x4e, 0x51, 0x69, 0x05, 0xea, 0x59, 0x73, 0xd5, 0xcb, 0x99, 0x25, - 0x7d, 0x33, 0xdc, 0xc2, 0x6f, 0x65, 0x71, 0xeb, 0x6d, 0xa8, 0xb7, 0x07, 0xb1, 0x92, 0x3d, 0x02, - 0xe4, 0x46, 0x81, 0xb0, 0xe1, 0xf2, 0x44, 0x4d, 0x60, 0xdf, 0x0d, 0x06, 0xc2, 0xc9, 0xb2, 0xf2, - 0xfb, 0x50, 0x3e, 0xd0, 0x0b, 0xa3, 0xab, 0x02, 0xdf, 0x3a, 0x05, 0xb3, 0xcd, 0xe4, 0x1b, 0x66, - 0x1c, 0x97, 0x3f, 0x61, 0x54, 0x59, 0x92, 0xfd, 0x1d, 0xb3, 0x5b, 0x2a, 0x50, 0x58, 0x8b, 0xdb, - 0x26, 0xa7, 0x14, 0x71, 0x5b, 0x07, 0xac, 0x1b, 0xd4, 0x05, 0x96, 0xb7, 0xfe, 0xa9, 0x02, 0x65, - 0x8d, 0x73, 0x66, 0xee, 0x6a, 0xe9, 0xdc, 0x7d, 0x04, 0x55, 0xd9, 0x17, 0x91, 0xab, 0x64, 0x64, - 0x12, 0xdb, 0xfb, 0xe7, 0xc1, 0xcd, 0xd5, 0x1d, 0x23, 0xec, 0xa4, 0x6a, 0xc6, 0x97, 0x23, 0x3f, - 0xb9, 0x1c, 0xb7, 0x80, 0x25, 0x10, 0xb9, 0x1b, 0xa1, 0x9c, 0x3a, 0x31, 0x69, 0xca, 0x04, 0x9d, - 0xef, 0x41, 0xad, 0x2d, 0x43, 0xcf, 0x4f, 0x93, 0xdc, 0xc5, 0x3b, 0x3f, 0x3c, 0x57, 0x0f, 0x37, - 0x12, 0x69, 0x67, 0xa8, 0x88, 0xbf, 0x0e, 0xa5, 0x23, 0x5c, 0x27, 0x5a, 0x90, 0xd3, 0x57, 0x51, - 0x33, 0xf1, 0x8f, 0xa1, 0xfe, 0xd9, 0xc0, 0x6f, 0x1f, 0xee, 0x64, 0x8b, 0x28, 0x6f, 0x9f, 0xab, - 0x17, 0x1f, 0x0d, 0xe5, 0x9d, 0xac, 0xb2, 0x8c, 0x6d, 0x54, 0x7e, 0x09, 0xdb, 0xa8, 0x4e, 0xda, - 0xc6, 0x55, 0xa8, 0x26, 0x8b, 0x43, 0xf6, 0x11, 0x7a, 0x6c, 0x8e, 0x97, 0x21, 0xbf, 0x13, 0xb1, - 0x9c, 0xfd, 0x75, 0x0e, 0x6a, 0xe9, 0xc4, 0x8c, 0x16, 0x4c, 0x1e, 0x7e, 0x36, 0x70, 0x03, 0x96, - 0xa3, 0x88, 0x5f, 0x2a, 0xdd, 0xa2, 0xcd, 0xfb, 0x61, 0x24, 0x5c, 0x45, 0x75, 0x3a, 0x44, 0x64, - 0x11, 0xc7, 0xac, 0xc8, 0x39, 0x2c, 0x1a, 0xf2, 0x4e, 0xa4, 0x59, 0x4b, 0x98, 0x10, 0xe0, 0xdb, - 0x84, 0x50, 0xd6, 0x00, 0x7e, 0x28, 0x74, 0xc2, 0xf3, 0x4c, 0x2a, 0x6a, 0x54, 0xb1, 0x2f, 0xdb, - 0x21, 0xab, 0xe1, 0x37, 0x9f, 0x49, 0xb5, 0x1d, 0x32, 0x18, 0x46, 0xa2, 0xf5, 0xe4, 0xf3, 0xd4, - 0x9a, 0xa7, 0x38, 0x37, 0x08, 0xb6, 0x43, 0xb6, 0x60, 0x5e, 0xe8, 0xd6, 0x22, 0x6a, 0x7c, 0x78, - 0xec, 0xb6, 0x51, 0xfc, 0x02, 0x5f, 0x04, 0x40, 0x19, 0xd3, 0x66, 0xf6, 0xbf, 0xe6, 0xa0, 0x9e, - 0x99, 0x78, 0x8c, 0x6e, 0xe9, 0x25, 0xc2, 0x99, 0x0e, 0x76, 0x7f, 0x24, 0x62, 0x25, 0x22, 0x2f, - 0x81, 0xaa, 0x3d, 0x89, 0x8f, 0x79, 0xfc, 0xc6, 0x9e, 0xec, 0xc9, 0x28, 0x92, 0x2f, 0x59, 0x01, - 0x5b, 0x4f, 0xdc, 0x58, 0xbd, 0x10, 0xe2, 0x90, 0x15, 0x71, 0x78, 0x1b, 0x83, 0x28, 0x12, 0xa1, - 0x26, 0x94, 0xa8, 0x43, 0xe2, 0x58, 0xb7, 0xca, 0xa8, 0x14, 0x99, 0x09, 0x0b, 0x59, 0x85, 0x33, - 0x98, 0x37, 0xdc, 0x9a, 0x52, 0x45, 0x06, 0x64, 0xd7, 0xcd, 0x1a, 0x26, 0x86, 0x3a, 0xb1, 0xda, - 0x39, 0xd8, 0x74, 0x4f, 0xe2, 0xb5, 0x8e, 0x64, 0x30, 0x4e, 0x7c, 0x26, 0x5f, 0xb2, 0xba, 0x35, - 0x00, 0x18, 0x86, 0x9c, 0x18, 0x6a, 0xa3, 0x7d, 0xa5, 0xa5, 0x4f, 0xd3, 0xe2, 0x3b, 0x00, 0xf8, - 0x44, 0x9c, 0x49, 0xbc, 0x7d, 0x8e, 0x58, 0x81, 0xe4, 0x9c, 0x8c, 0x0a, 0xeb, 0xf7, 0xa1, 0x96, - 0xbe, 0xc0, 0xcc, 0x89, 0xbc, 0x7a, 0xfa, 0xd9, 0xa4, 0x89, 0xbe, 0xd1, 0x0f, 0x3d, 0x71, 0x4c, - 0xfb, 0xbd, 0xe4, 0xe8, 0x06, 0xf6, 0xb2, 0xeb, 0x7b, 0x9e, 0x08, 0x93, 0x02, 0xb5, 0x6e, 0x4d, - 0x3b, 0x0d, 0x2c, 0x4e, 0x3d, 0x0d, 0xb4, 0x7e, 0x17, 0xea, 0x99, 0x98, 0xf8, 0xd4, 0x61, 0x67, - 0x3a, 0x96, 0x1f, 0xed, 0xd8, 0x35, 0xa8, 0x49, 0x13, 0xd8, 0xc6, 0x04, 0xda, 0x35, 0x67, 0x48, - 0x40, 0xa7, 0x52, 0xd2, 0x43, 0x1b, 0x8f, 0x75, 0x1f, 0x41, 0x19, 0x93, 0xba, 0x41, 0x72, 0x94, - 0x3a, 0x63, 0x3c, 0xd9, 0x24, 0x99, 0xad, 0x39, 0xc7, 0x48, 0xf3, 0xf7, 0xa0, 0xa0, 0xdc, 0x8e, - 0xa9, 0xef, 0x7c, 0x6f, 0x36, 0x25, 0x7b, 0x6e, 0x67, 0x6b, 0xce, 0x41, 0x39, 0xfe, 0x04, 0xaa, - 0x6d, 0x93, 0x92, 0x1b, 0xb0, 0x9a, 0x31, 0x1c, 0x4d, 0x12, 0xf9, 0xad, 0x39, 0x27, 0xd5, 0xc0, - 0x3f, 0x80, 0x22, 0x7a, 0x76, 0x42, 0xdb, 0x99, 0xc3, 0x6c, 0xdc, 0x2e, 0x5b, 0x73, 0x0e, 0x49, - 0xae, 0x57, 0xa0, 0x44, 0xd8, 0x68, 0x35, 0xa0, 0xac, 0xc7, 0x3a, 0x3e, 0x73, 0xd6, 0x15, 0x28, - 0xec, 0xb9, 0x1d, 0x8c, 0xae, 0x7c, 0x2f, 0x36, 0x99, 0x20, 0x3e, 0x5a, 0xaf, 0x0d, 0xcb, 0x0b, - 0xd9, 0xca, 0x55, 0x6e, 0xa4, 0x72, 0x65, 0x95, 0xa1, 0x88, 0x5f, 0xb4, 0xae, 0x9d, 0x15, 0xa9, - 0x59, 0x57, 0x31, 0xa6, 0x53, 0xe2, 0x78, 0x5a, 0x51, 0xce, 0x5a, 0x82, 0x0b, 0x63, 0x67, 0x50, - 0x56, 0xc5, 0x04, 0x94, 0xd6, 0x02, 0xd4, 0x33, 0xa7, 0x0a, 0xd6, 0x0d, 0xa8, 0x26, 0x67, 0x0e, - 0x18, 0x18, 0xfb, 0xb1, 0xae, 0x96, 0x98, 0x4e, 0xa5, 0x6d, 0x4b, 0x41, 0x59, 0x1f, 0xdb, 0xf0, - 0xf5, 0xf4, 0x98, 0x35, 0x37, 0x43, 0x8d, 0x5f, 0x0b, 0x99, 0x13, 0x92, 0xe4, 0xac, 0xd5, 0xbe, - 0x91, 0x9e, 0xb3, 0x24, 0xa9, 0x39, 0xf9, 0xee, 0xbd, 0x48, 0x08, 0x9d, 0x76, 0x53, 0xc4, 0x9b, - 0xb7, 0x0f, 0xa0, 0xba, 0x2b, 0xe3, 0x71, 0x94, 0xae, 0x40, 0x61, 0x4f, 0xf6, 0xb5, 0x93, 0x5f, - 0x97, 0x8a, 0x9c, 0xbc, 0x06, 0xe5, 0x03, 0xa5, 0x8b, 0x02, 0x8e, 0xdf, 0xe9, 0x2a, 0x5d, 0xf0, - 0xd9, 0x0e, 0x43, 0x11, 0xb1, 0x12, 0x22, 0xa5, 0x23, 0xfa, 0x81, 0xdb, 0x16, 0xac, 0x8c, 0x48, - 0x49, 0xf4, 0x47, 0x7e, 0x14, 0x2b, 0x56, 0xb1, 0xdf, 0x42, 0x7c, 0xf5, 0x3b, 0x04, 0x91, 0xf4, - 0x40, 0xaa, 0xe6, 0x10, 0xec, 0xa8, 0xb9, 0x21, 0x42, 0x84, 0x7e, 0xaa, 0xdb, 0xeb, 0x83, 0x73, - 0xfa, 0x40, 0xde, 0x7e, 0x01, 0x0b, 0x23, 0x07, 0xea, 0x7c, 0x19, 0xd8, 0x08, 0x01, 0x3b, 0x3a, - 0xc7, 0xaf, 0xc0, 0xc5, 0x11, 0xea, 0x53, 0xdf, 0xf3, 0xa8, 0xac, 0x31, 0xfe, 0x22, 0x19, 0xce, - 0x7a, 0x0d, 0x2a, 0x6d, 0x3d, 0x85, 0xf6, 0x2e, 0x2c, 0xd0, 0x9c, 0x3e, 0x15, 0xca, 0xdd, 0x09, - 0x83, 0x93, 0x5f, 0xfa, 0xd6, 0x83, 0xfd, 0x7d, 0x28, 0x51, 0x79, 0x11, 0x8d, 0xe7, 0x20, 0x92, - 0x3d, 0xd2, 0x55, 0x72, 0xe8, 0x19, 0xb5, 0x2b, 0x69, 0x60, 0x2c, 0xaf, 0xa4, 0xfd, 0xd3, 0x1a, - 0x54, 0xd6, 0xda, 0x6d, 0x39, 0x08, 0xd5, 0xc4, 0x97, 0xa7, 0x55, 0xb0, 0xee, 0x43, 0xd9, 0x3d, - 0x72, 0x95, 0x1b, 0x99, 0x3d, 0x3f, 0xee, 0xd1, 0x8d, 0xae, 0xd5, 0x35, 0x62, 0x72, 0x0c, 0x33, - 0x8a, 0xb5, 0x65, 0x78, 0xe0, 0x77, 0xcc, 0x36, 0x3f, 0x4d, 0x6c, 0x83, 0x98, 0x1c, 0xc3, 0x8c, - 0x62, 0x06, 0xa6, 0x4a, 0x67, 0x8a, 0xe9, 0xbd, 0x9a, 0xa2, 0xd2, 0x6d, 0x28, 0xfa, 0xe1, 0x81, - 0x34, 0xf7, 0x5d, 0xae, 0x9e, 0x22, 0xb4, 0x1d, 0x1e, 0x48, 0x87, 0x18, 0x2d, 0x01, 0x65, 0xdd, - 0x61, 0xfe, 0x0e, 0x94, 0xe8, 0x14, 0xc1, 0xd4, 0x6d, 0x67, 0xba, 0xa0, 0xa0, 0x25, 0xf8, 0xe5, - 0xa4, 0x28, 0x4d, 0xf3, 0x85, 0x74, 0x6a, 0xae, 0x57, 0x93, 0x29, 0xb3, 0xfe, 0x33, 0x07, 0x65, - 0x3d, 0x42, 0x7e, 0x03, 0x16, 0x45, 0x88, 0x5b, 0x33, 0x01, 0x22, 0xb3, 0x27, 0xc7, 0xa8, 0x18, - 0x0a, 0x19, 0x8a, 0x68, 0x0d, 0x3a, 0x26, 0x6b, 0xcb, 0x92, 0xf8, 0xdb, 0x70, 0x45, 0x37, 0x77, - 0x23, 0x11, 0x89, 0x40, 0xb8, 0xb1, 0xd8, 0xe8, 0xba, 0x61, 0x28, 0x02, 0xe3, 0x96, 0x4e, 0x7b, - 0xcd, 0x6d, 0x98, 0xd7, 0xaf, 0x9a, 0x7d, 0xb7, 0x2d, 0x62, 0x53, 0x64, 0x1f, 0xa1, 0xf1, 0x1f, - 0x40, 0x89, 0x6e, 0x1d, 0x35, 0xbc, 0xb3, 0x8d, 0x4f, 0x73, 0x59, 0x32, 0xc5, 0xcd, 0x35, 0x00, - 0xbd, 0x1a, 0x18, 0xc3, 0x1b, 0x30, 0xf9, 0xf6, 0x99, 0xcb, 0x47, 0xd9, 0x48, 0x46, 0x08, 0xfb, - 0xe7, 0x89, 0x40, 0x20, 0x3e, 0x20, 0x66, 0xd2, 0xe0, 0x0b, 0xce, 0x08, 0xcd, 0xfa, 0xbc, 0x00, - 0x45, 0x5c, 0x48, 0x64, 0xee, 0xca, 0x9e, 0x48, 0x8b, 0x3f, 0xda, 0x68, 0x47, 0x68, 0xe8, 0x98, - 0x5d, 0x7d, 0xae, 0x96, 0xb2, 0xe9, 0x3a, 0xcd, 0x38, 0x19, 0x39, 0xfb, 0x91, 0x3c, 0xf0, 0x83, - 0x21, 0xa7, 0x71, 0xe1, 0x63, 0x64, 0xfe, 0x43, 0xb8, 0xdc, 0x73, 0xa3, 0x43, 0xa1, 0x08, 0x7d, - 0x5e, 0xc8, 0xe8, 0x30, 0xc6, 0x99, 0xdb, 0xf6, 0x4c, 0x65, 0xe1, 0x94, 0xb7, 0x08, 0xc7, 0x9e, - 0x38, 0xf2, 0x89, 0xb3, 0x4a, 0x9c, 0x69, 0x1b, 0x8d, 0xc3, 0xd5, 0x53, 0xd3, 0x34, 0xba, 0x74, - 0x4e, 0x33, 0x46, 0x45, 0xef, 0xaf, 0xcf, 0xd8, 0xe3, 0x6d, 0x8f, 0x8a, 0x1d, 0x35, 0x67, 0x48, - 0xe0, 0xd7, 0x01, 0x3a, 0xae, 0x12, 0x2f, 0xdd, 0x93, 0xe7, 0x51, 0xd0, 0x10, 0xba, 0x3c, 0x38, - 0xa4, 0x60, 0xa2, 0x12, 0xc8, 0xb6, 0x1b, 0x34, 0x95, 0x8c, 0xdc, 0x8e, 0xd8, 0x75, 0x55, 0xb7, - 0xd1, 0xd1, 0x89, 0xca, 0x38, 0x1d, 0x7b, 0x8b, 0xf9, 0xf8, 0xc7, 0x32, 0x14, 0x8d, 0xae, 0xee, - 0x6d, 0xd2, 0xb6, 0x77, 0x00, 0x86, 0x0b, 0x88, 0xa8, 0xbd, 0x46, 0x25, 0x48, 0x36, 0x87, 0x91, - 0xde, 0xae, 0x08, 0x3d, 0x3f, 0xec, 0x6c, 0x9a, 0x35, 0x63, 0x39, 0x24, 0x36, 0x95, 0x1b, 0x29, - 0xe1, 0xa5, 0x44, 0x8a, 0xc0, 0xa9, 0x25, 0x3c, 0x56, 0xb0, 0xff, 0x2f, 0x07, 0xf5, 0xcc, 0x01, - 0xdc, 0xaf, 0xf0, 0xd0, 0x10, 0x7d, 0x20, 0xee, 0x55, 0x9c, 0x10, 0xbd, 0x9e, 0x69, 0x1b, 0xa7, - 0xcb, 0x9c, 0x0f, 0xe2, 0x5b, 0x9d, 0xb1, 0x65, 0x28, 0xdf, 0xe8, 0xc0, 0xd0, 0xbe, 0x63, 0x72, - 0xd8, 0x3a, 0x54, 0x9e, 0x87, 0x87, 0xa1, 0x7c, 0x19, 0x6a, 0x5f, 0x48, 0xa7, 0xc0, 0x23, 0x75, - 0xef, 0xe4, 0xa0, 0xb6, 0x60, 0xff, 0xac, 0x38, 0x76, 0x61, 0xe2, 0x21, 0x94, 0x75, 0x4c, 0x47, - 0xe1, 0xc6, 0xe4, 0x09, 0x77, 0x96, 0xd9, 0xd4, 0x58, 0x33, 0x24, 0xc7, 0x08, 0x63, 0xb0, 0x95, - 0xde, 0x0a, 0xca, 0x4f, 0xad, 0x05, 0x8f, 0x28, 0x4a, 0x20, 0x68, 0xe4, 0x62, 0x5c, 0xaa, 0xc1, - 0xfa, 0x49, 0x0e, 0x96, 0xa7, 0xb1, 0x60, 0xec, 0xd3, 0x1a, 0xb9, 0xb7, 0x90, 0x34, 0x79, 0x73, - 0xec, 0x3a, 0x5e, 0x9e, 0x46, 0x73, 0xfb, 0x9c, 0x9d, 0x18, 0xbd, 0x9c, 0x67, 0x7f, 0x91, 0x83, - 0xa5, 0x89, 0x31, 0x67, 0xc2, 0x09, 0x80, 0xb2, 0xb6, 0x2c, 0x7d, 0xcc, 0x9e, 0x1e, 0x7c, 0xea, - 0x22, 0x1b, 0xe1, 0x79, 0xac, 0x4f, 0x92, 0x36, 0xf5, 0x65, 0x4e, 0x56, 0xc4, 0x38, 0x00, 0x57, - 0x0d, 0x71, 0xb2, 0x23, 0x58, 0x09, 0xf3, 0x1c, 0x1d, 0xd0, 0x18, 0x4a, 0x99, 0x72, 0x28, 0xd1, - 0xeb, 0x07, 0x98, 0x6b, 0x55, 0xe8, 0xf8, 0x7e, 0xd0, 0x0f, 0xfc, 0x36, 0x36, 0xab, 0xb6, 0x03, - 0x17, 0xa7, 0xf4, 0x9b, 0x7a, 0xb2, 0x6f, 0x7a, 0xb5, 0x08, 0xb0, 0xb9, 0x9f, 0xf4, 0x85, 0xe5, - 0x30, 0xd5, 0xdc, 0xdc, 0xdf, 0xa0, 0x64, 0xd3, 0x1c, 0x8e, 0xe9, 0x3d, 0xb1, 0x8f, 0xd9, 0x49, - 0xcc, 0x0a, 0xf6, 0x03, 0xb8, 0xb4, 0xd7, 0x8d, 0x84, 0xeb, 0x6d, 0x0a, 0xd1, 0x0f, 0xd0, 0xd8, - 0xdc, 0x93, 0x40, 0xba, 0xde, 0x94, 0x32, 0xdf, 0x32, 0x94, 0x5c, 0xcf, 0x8b, 0xf4, 0xfc, 0xd6, - 0x1c, 0xdd, 0xb0, 0x3f, 0x81, 0xcb, 0x5a, 0x81, 0xfe, 0xca, 0x47, 0x03, 0x31, 0x10, 0x0f, 0x43, - 0x15, 0x9d, 0xe8, 0x32, 0x6e, 0x72, 0x8b, 0x53, 0xf3, 0x18, 0x75, 0x13, 0x74, 0xc2, 0x01, 0x7a, - 0x4a, 0x11, 0x36, 0x6d, 0xdb, 0x9f, 0x24, 0x07, 0x7b, 0xd6, 0x3e, 0x2c, 0xe8, 0x99, 0x4a, 0x3a, - 0xf9, 0x10, 0x16, 0xe3, 0xf4, 0x6a, 0x6e, 0xc6, 0x21, 0x8c, 0xfb, 0xf3, 0xe6, 0x08, 0x93, 0x33, - 0x26, 0x64, 0xff, 0x69, 0x09, 0x60, 0x27, 0xbd, 0xde, 0x3a, 0x05, 0x17, 0xa6, 0x45, 0x2c, 0x13, - 0x47, 0x0b, 0x85, 0x73, 0x1f, 0x2d, 0xbc, 0x9d, 0x06, 0xc5, 0xba, 0xc4, 0x35, 0x7e, 0x7f, 0x70, - 0xd8, 0xa7, 0xb1, 0x50, 0x78, 0xf4, 0x48, 0xba, 0x34, 0x7e, 0x24, 0xbd, 0x32, 0x79, 0x7f, 0x65, - 0x0c, 0xb0, 0x86, 0x29, 0x66, 0x65, 0x24, 0xc5, 0xb4, 0xa0, 0x8a, 0xb3, 0x2e, 0xc3, 0xe0, 0x24, - 0xa9, 0x72, 0x27, 0x6d, 0x7e, 0x17, 0x4a, 0x8a, 0x2e, 0x04, 0x57, 0x69, 0x7f, 0xbd, 0x62, 0x8e, - 0x35, 0x2f, 0xa2, 0x9f, 0x1f, 0x9b, 0x4b, 0x27, 0xda, 0xdd, 0x54, 0x9d, 0x0c, 0x85, 0xaf, 0x02, - 0xf7, 0xc3, 0x58, 0xb9, 0x41, 0x20, 0xbc, 0xf5, 0x93, 0x4d, 0x71, 0xe0, 0x0e, 0x02, 0x45, 0x2e, - 0xae, 0xea, 0x4c, 0x79, 0x63, 0x7f, 0x3d, 0xbc, 0x6c, 0x55, 0x83, 0x52, 0xcb, 0x8d, 0xfd, 0xb6, - 0x3e, 0xd6, 0x35, 0xfe, 0x53, 0x27, 0x02, 0x4a, 0x7a, 0x92, 0xe5, 0x31, 0xe4, 0x8f, 0x05, 0x06, - 0xf7, 0x8b, 0x00, 0xc3, 0xeb, 0xcb, 0xac, 0x88, 0xdb, 0x2c, 0x59, 0x09, 0x7d, 0xaa, 0x4b, 0xa2, - 0x54, 0x87, 0xf0, 0xd2, 0xfb, 0x32, 0x15, 0xfc, 0x02, 0xc1, 0x38, 0xab, 0x22, 0x4f, 0x28, 0x95, - 0xd0, 0x95, 0x17, 0xf2, 0xb5, 0x0c, 0x50, 0x4d, 0x72, 0x1b, 0x93, 0xd5, 0x31, 0x2a, 0x4f, 0x94, - 0xea, 0xd2, 0x49, 0x4c, 0xf9, 0xc8, 0x3c, 0x6e, 0xc2, 0xd1, 0x17, 0x6c, 0x01, 0x7b, 0x34, 0xdc, - 0x04, 0x6c, 0x11, 0x55, 0x21, 0x04, 0xb6, 0xdc, 0x58, 0xb0, 0x65, 0xfb, 0xcf, 0x86, 0xa3, 0x7c, - 0x23, 0x0d, 0x9e, 0x67, 0xb1, 0x8f, 0xd3, 0xc2, 0xeb, 0x87, 0xb0, 0x14, 0x89, 0xcf, 0x06, 0xfe, - 0xc8, 0x7d, 0xc9, 0xc2, 0xd9, 0x27, 0x82, 0x93, 0x12, 0xf6, 0x11, 0x2c, 0x25, 0x8d, 0x17, 0xbe, - 0xea, 0x52, 0x4e, 0xcb, 0xef, 0x66, 0x2e, 0x74, 0xe6, 0x4c, 0x34, 0x77, 0x8a, 0xca, 0xe1, 0x05, - 0xce, 0xb4, 0x96, 0x98, 0x9f, 0xa1, 0x96, 0x68, 0xff, 0x47, 0x39, 0x93, 0xd6, 0xea, 0x74, 0xc2, - 0x4b, 0xd3, 0x89, 0x49, 0xa4, 0x1a, 0x96, 0x07, 0xf3, 0xe7, 0x29, 0x0f, 0x4e, 0x3b, 0x63, 0x7b, - 0x17, 0x63, 0x45, 0x32, 0xbd, 0xfd, 0x19, 0x4a, 0x9f, 0x23, 0xbc, 0x7c, 0x9d, 0x8e, 0x17, 0xdc, - 0xa6, 0x3e, 0xdc, 0x2d, 0x4d, 0xbd, 0x5e, 0x9d, 0x3d, 0x47, 0x30, 0x9c, 0x4e, 0x46, 0x2a, 0xb3, - 0x51, 0xcb, 0xd3, 0x36, 0x2a, 0x66, 0x76, 0x66, 0x0b, 0xa7, 0x6d, 0x5d, 0x29, 0xd6, 0xcf, 0x89, - 0x7a, 0xba, 0x17, 0x5d, 0x75, 0x26, 0xe8, 0x08, 0xea, 0xbd, 0x41, 0xa0, 0x7c, 0x53, 0x0c, 0xd5, - 0x8d, 0xf1, 0x7f, 0x00, 0xd4, 0x26, 0xff, 0x01, 0xf0, 0x3e, 0x40, 0x2c, 0xd0, 0x7c, 0x37, 0xfd, - 0xb6, 0x32, 0x47, 0xc0, 0xd7, 0x4f, 0x1b, 0x9b, 0x29, 0xe1, 0x66, 0x24, 0xb0, 0xff, 0x3d, 0xf7, - 0x78, 0x03, 0xa3, 0x4e, 0x73, 0x9e, 0x95, 0xb6, 0xc7, 0xe1, 0x6b, 0x71, 0x12, 0xbe, 0xee, 0x42, - 0x29, 0x6e, 0xcb, 0xbe, 0xa0, 0x2b, 0xcc, 0xa7, 0xaf, 0xef, 0x6a, 0x13, 0x99, 0x1c, 0xcd, 0x4b, - 0xc5, 0x13, 0xf4, 0x51, 0x32, 0xa2, 0xcb, 0xcb, 0x35, 0x27, 0x69, 0x5a, 0x1e, 0x94, 0x4d, 0xb1, - 0x73, 0x4a, 0xaa, 0x4a, 0x75, 0x92, 0x7c, 0xe6, 0xf2, 0x52, 0x7a, 0x49, 0xa8, 0x90, 0xbd, 0x24, - 0xb4, 0x02, 0xf5, 0x28, 0x53, 0xc0, 0x37, 0x37, 0xc3, 0x32, 0x24, 0xfb, 0x63, 0x28, 0x51, 0x7f, - 0xd0, 0x61, 0xeb, 0xa9, 0xd4, 0x31, 0x1b, 0x76, 0x9c, 0xe5, 0xf8, 0x32, 0xb0, 0x58, 0xa8, 0x9d, - 0x83, 0xbd, 0xae, 0x68, 0xba, 0x3d, 0x41, 0x48, 0x95, 0xe7, 0x0d, 0x58, 0xd6, 0xbc, 0xf1, 0xe8, - 0x1b, 0x8a, 0x2c, 0x02, 0xbf, 0x15, 0xb9, 0xd1, 0x09, 0x2b, 0xda, 0xef, 0xd3, 0x71, 0x53, 0x62, - 0x34, 0xf5, 0xf4, 0x9f, 0x26, 0x1a, 0x1b, 0x3d, 0x11, 0x21, 0xd8, 0xea, 0xc3, 0x40, 0x13, 0xeb, - 0xeb, 0xeb, 0x09, 0x14, 0x90, 0xb3, 0x82, 0xfd, 0x02, 0x43, 0xc3, 0xa1, 0x6b, 0xfa, 0x95, 0xed, - 0x29, 0x7b, 0x3d, 0x13, 0x1a, 0x8d, 0xde, 0x47, 0xc8, 0xcd, 0x7a, 0x1f, 0xc1, 0x7e, 0x0c, 0x17, - 0x9c, 0x51, 0x60, 0xe5, 0x6f, 0x43, 0x45, 0xf6, 0xb3, 0x7a, 0x5e, 0x65, 0x7b, 0x09, 0xbb, 0xfd, - 0xe7, 0x39, 0x98, 0xdf, 0x0e, 0x95, 0x88, 0x42, 0x37, 0x78, 0x14, 0xb8, 0x1d, 0xfe, 0x56, 0x82, - 0x44, 0xd3, 0x73, 0xc9, 0x2c, 0xef, 0x28, 0x28, 0x3d, 0x33, 0x45, 0x3d, 0x7e, 0x09, 0x96, 0x84, - 0xe7, 0x2b, 0x19, 0xe9, 0x80, 0x30, 0xb9, 0x16, 0xb2, 0x0c, 0x4c, 0x93, 0x9b, 0x64, 0xf6, 0x7b, - 0x7a, 0x99, 0x1b, 0xb0, 0x3c, 0x42, 0x4d, 0xa2, 0xbd, 0xbc, 0xfd, 0xef, 0x69, 0x14, 0xb2, 0x6f, - 0xae, 0x85, 0x44, 0x52, 0xaa, 0x61, 0xd1, 0x56, 0xb7, 0x32, 0x7f, 0x3a, 0xca, 0xcf, 0xf0, 0xa7, - 0xa3, 0xf7, 0x87, 0x7f, 0x3a, 0xd2, 0x70, 0xff, 0xda, 0x54, 0x1f, 0x42, 0x27, 0xde, 0x26, 0x50, - 0x6d, 0x8a, 0xcc, 0x3f, 0x90, 0xde, 0x34, 0xd9, 0x49, 0x71, 0x96, 0xb8, 0x4a, 0x1f, 0xf9, 0xdd, - 0x1f, 0xbf, 0xec, 0x3a, 0xdb, 0xad, 0x93, 0x89, 0x78, 0x0a, 0xce, 0x1d, 0x4f, 0x3d, 0x18, 0x4b, - 0x04, 0xaa, 0x53, 0xeb, 0x34, 0x67, 0xfc, 0x23, 0xe7, 0x01, 0x54, 0xba, 0x7e, 0xac, 0x64, 0x74, - 0x42, 0xa1, 0xca, 0xe4, 0xad, 0xf6, 0xcc, 0x6c, 0x6d, 0x69, 0x46, 0xba, 0x26, 0x90, 0x48, 0x59, - 0x1d, 0x80, 0xe1, 0x2c, 0x4e, 0xa0, 0xc9, 0x37, 0xf8, 0x07, 0xd8, 0x65, 0x28, 0xc7, 0x83, 0xd6, - 0xb0, 0x0a, 0x6f, 0x5a, 0xd6, 0x31, 0x58, 0x13, 0x9e, 0x78, 0x57, 0x44, 0xba, 0x7f, 0x88, 0xae, - 0x49, 0xb5, 0xde, 0x7c, 0x3e, 0x6d, 0xf3, 0xf7, 0xb3, 0xcb, 0xa3, 0x4d, 0x68, 0xe5, 0x94, 0x39, - 0x4e, 0x35, 0x67, 0xd6, 0xc9, 0xba, 0x0f, 0xf5, 0xcc, 0xd0, 0x11, 0x21, 0x07, 0xa1, 0x27, 0x93, - 0x62, 0x20, 0x3e, 0xeb, 0x9b, 0xf8, 0x5e, 0x52, 0x0e, 0xa4, 0xe7, 0x5b, 0x7f, 0x5d, 0x80, 0xc5, - 0x51, 0x73, 0xa1, 0xb2, 0xa8, 0x06, 0xa3, 0x9d, 0xc0, 0xd3, 0x75, 0xd3, 0x75, 0x74, 0x50, 0xed, - 0x68, 0xd0, 0x6b, 0xc5, 0x3a, 0x92, 0xa3, 0x84, 0x96, 0xe1, 0xab, 0x5d, 0x1d, 0xe0, 0x11, 0x61, - 0x09, 0x5f, 0x6d, 0xc9, 0x9e, 0x60, 0x2b, 0xd9, 0x4b, 0xcd, 0x6f, 0x24, 0xd7, 0x9f, 0x29, 0x8c, - 0xfa, 0x00, 0xe3, 0xbf, 0xa6, 0x50, 0x6c, 0x0d, 0xbf, 0x34, 0xfc, 0x43, 0x19, 0x5b, 0xc7, 0xc4, - 0xab, 0xb9, 0x37, 0x8c, 0x9e, 0xd8, 0x27, 0x88, 0xc9, 0xba, 0xe8, 0xcc, 0xfa, 0xbc, 0x66, 0xee, - 0x8f, 0x7d, 0x9e, 0xe7, 0x0b, 0x99, 0x7c, 0xec, 0xe7, 0x79, 0xbe, 0x0c, 0x17, 0xd6, 0x07, 0xa1, - 0x17, 0x08, 0x2f, 0xa5, 0xfe, 0x15, 0x51, 0x9f, 0x0e, 0x8b, 0x31, 0xa4, 0xf0, 0x0b, 0x44, 0xee, - 0x8b, 0x19, 0x6a, 0x9a, 0x93, 0xfd, 0x74, 0xfc, 0x4d, 0xaa, 0xe9, 0x67, 0x59, 0xfd, 0x29, 0xff, - 0xe7, 0x98, 0x36, 0xd6, 0x9a, 0x83, 0x96, 0xc9, 0xdf, 0xfe, 0xa0, 0xc8, 0x2f, 0xc3, 0x92, 0xe1, - 0xca, 0x0c, 0xe1, 0x0f, 0x8b, 0xfc, 0x22, 0x2c, 0xae, 0xe9, 0x75, 0x34, 0x73, 0xc5, 0xfe, 0xa8, - 0x88, 0x83, 0xa1, 0x93, 0xbb, 0x3f, 0x2e, 0xf2, 0x25, 0x98, 0x4f, 0x2b, 0x45, 0x38, 0xe3, 0x3f, - 0x21, 0xd5, 0x29, 0x89, 0xfd, 0x49, 0xf1, 0xd6, 0xdf, 0xe6, 0x60, 0x71, 0x14, 0xc9, 0x71, 0x4a, - 0x03, 0x19, 0x76, 0x94, 0xbe, 0xed, 0xbd, 0x00, 0xb5, 0xb8, 0x2b, 0x23, 0x45, 0x4d, 0xaa, 0xa5, - 0x87, 0x74, 0xe6, 0xa6, 0xd3, 0x5e, 0x5d, 0x64, 0xd3, 0x37, 0x15, 0x94, 0xdb, 0x61, 0x75, 0x5c, - 0x27, 0x0f, 0x3f, 0x5f, 0x4c, 0xa3, 0x6c, 0x3a, 0xfb, 0x4b, 0xce, 0x56, 0x58, 0x19, 0x59, 0x07, - 0x51, 0xa0, 0xa3, 0x6d, 0xd1, 0x73, 0xfd, 0x40, 0x5f, 0xeb, 0xec, 0x77, 0x31, 0xa3, 0xad, 0x69, - 0xaa, 0xfc, 0xd4, 0xd7, 0x17, 0x28, 0x8d, 0xdf, 0xf4, 0xb0, 0x1f, 0xa9, 0x49, 0x32, 0xb1, 0x7e, - 0xeb, 0x5f, 0xbe, 0xba, 0x9e, 0xfb, 0xf2, 0xab, 0xeb, 0xb9, 0xff, 0xfa, 0xea, 0x7a, 0xee, 0x8b, - 0xaf, 0xaf, 0xcf, 0x7d, 0xf9, 0xf5, 0xf5, 0xb9, 0x5f, 0x7c, 0x7d, 0x7d, 0xee, 0x63, 0x36, 0xfe, - 0x8f, 0xd0, 0x56, 0x99, 0x36, 0xdb, 0xdd, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x03, 0x90, 0x1c, - 0xbc, 0x2c, 0x3a, 0x00, 0x00, + // 5212 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x7b, 0x49, 0x6c, 0x24, 0x47, + 0x76, 0x36, 0x6b, 0xaf, 0x7a, 0x45, 0xb2, 0x83, 0xd1, 0xec, 0xee, 0xfa, 0xb3, 0x35, 0xfd, 0x73, + 0xd2, 0x9a, 0x9e, 0x9e, 0x96, 0x86, 0x2d, 0xf5, 0xa2, 0xcd, 0x96, 0x5a, 0x5c, 0xba, 0x45, 0xa2, + 0x17, 0x52, 0x59, 0x6c, 0xb6, 0x47, 0xb0, 0x0d, 0x65, 0x55, 0x06, 0xab, 0x52, 0xcc, 0xca, 0x28, + 0x65, 0x46, 0xb1, 0xc9, 0x01, 0x0c, 0xc8, 0xcb, 0xd8, 0x37, 0x43, 0x33, 0x80, 0xe1, 0x8b, 0x0d, + 0x8c, 0xe1, 0xab, 0xaf, 0x86, 0x6d, 0xc0, 0x57, 0x03, 0x86, 0x7d, 0xb0, 0x8e, 0x03, 0x18, 0xb0, + 0x0d, 0xe9, 0xe8, 0x83, 0x01, 0x9f, 0x7d, 0x30, 0xde, 0x8b, 0xc8, 0xac, 0xac, 0x85, 0xec, 0xa2, + 0x66, 0x4e, 0x95, 0xf1, 0xf2, 0xbd, 0x97, 0xb1, 0xbc, 0xf8, 0xde, 0x12, 0x51, 0xf0, 0x6a, 0xff, + 0xb0, 0x73, 0x2b, 0xf0, 0x5b, 0xb7, 0xfa, 0xad, 0x5b, 0x3d, 0xe9, 0x89, 0xe0, 0x56, 0x3f, 0x92, + 0x4a, 0xc6, 0xba, 0x11, 0xaf, 0x52, 0x8b, 0x2f, 0xb8, 0xe1, 0x89, 0x3a, 0xe9, 0x8b, 0x55, 0xa2, + 0x5a, 0xaf, 0x74, 0xa4, 0xec, 0x04, 0x42, 0xb3, 0xb6, 0x06, 0x07, 0xb7, 0x62, 0x15, 0x0d, 0xda, + 0x4a, 0x33, 0xdb, 0xff, 0x58, 0x80, 0xcb, 0xcd, 0x9e, 0x1b, 0xa9, 0xf5, 0x40, 0xb6, 0x0f, 0x9b, + 0xa1, 0xdb, 0x8f, 0xbb, 0x52, 0xad, 0xbb, 0xb1, 0xe0, 0xaf, 0x43, 0xb9, 0x85, 0xc4, 0xb8, 0x91, + 0x5b, 0x29, 0xdc, 0xa8, 0xdf, 0x5e, 0x5e, 0x1d, 0x51, 0xbc, 0x4a, 0x12, 0x8e, 0xe1, 0xe1, 0x6f, + 0x42, 0xc5, 0x13, 0xca, 0xf5, 0x83, 0xb8, 0x91, 0x5f, 0xc9, 0xdd, 0xa8, 0xdf, 0xbe, 0xb2, 0xaa, + 0x3f, 0xbc, 0x9a, 0x7c, 0x78, 0xb5, 0x49, 0x1f, 0x76, 0x12, 0x3e, 0x7e, 0x07, 0xaa, 0x07, 0x7e, + 0x20, 0x1e, 0x89, 0x93, 0xb8, 0x51, 0x38, 0x5b, 0x26, 0x65, 0xe4, 0xf7, 0x61, 0x51, 0x1c, 0xab, + 0xc8, 0x75, 0x44, 0xe0, 0x2a, 0x5f, 0x86, 0x71, 0xa3, 0x48, 0xbd, 0xbb, 0x32, 0xd6, 0xbb, 0xe4, + 0xbd, 0x33, 0xc6, 0xce, 0x57, 0xa0, 0x2e, 0x5b, 0x9f, 0x89, 0xb6, 0xda, 0x3b, 0xe9, 0x8b, 0xb8, + 0x51, 0x5a, 0x29, 0xdc, 0xa8, 0x39, 0x59, 0x12, 0x7f, 0x17, 0xea, 0x6d, 0x19, 0x04, 0xa2, 0xad, + 0xf5, 0x97, 0xcf, 0xee, 0x5a, 0x96, 0x97, 0xdf, 0x85, 0x4b, 0x91, 0xe8, 0xc9, 0x23, 0xe1, 0x6d, + 0xa4, 0x54, 0x1a, 0x5f, 0x95, 0x3e, 0x33, 0xfd, 0x25, 0x5f, 0x83, 0x85, 0xc8, 0xf4, 0xef, 0xb1, + 0x1f, 0x1e, 0xc6, 0x8d, 0x0a, 0x0d, 0xe9, 0xea, 0x29, 0x43, 0x42, 0x1e, 0x67, 0x54, 0xc2, 0xfe, + 0xf3, 0x75, 0x28, 0xd1, 0x82, 0xf0, 0x45, 0xc8, 0xfb, 0x5e, 0x23, 0xb7, 0x92, 0xbb, 0x51, 0x73, + 0xf2, 0xbe, 0xc7, 0x6f, 0x41, 0xf9, 0xc0, 0x17, 0x81, 0xf7, 0xd2, 0x75, 0x31, 0x6c, 0xfc, 0x01, + 0xcc, 0x47, 0x22, 0x56, 0x91, 0x6f, 0xc6, 0xaf, 0x97, 0xe6, 0xbb, 0xd3, 0x56, 0x7f, 0xd5, 0xc9, + 0x30, 0x3a, 0x23, 0x62, 0x38, 0xcf, 0xed, 0xae, 0x1f, 0x78, 0x91, 0x08, 0xb7, 0x3d, 0xbd, 0x4a, + 0x35, 0x27, 0x4b, 0xe2, 0x37, 0xe0, 0x42, 0xcb, 0x6d, 0x1f, 0x76, 0x22, 0x39, 0x08, 0x71, 0x4a, + 0x64, 0xd4, 0x28, 0x51, 0xb7, 0xc7, 0xc9, 0xfc, 0x0d, 0x28, 0xb9, 0x81, 0xdf, 0x09, 0x69, 0x2d, + 0x16, 0x6f, 0x5b, 0x53, 0xfb, 0xb2, 0x86, 0x1c, 0x8e, 0x66, 0xe4, 0x5b, 0xb0, 0x70, 0x24, 0x22, + 0xe5, 0xb7, 0xdd, 0x80, 0xe8, 0x8d, 0x0a, 0x49, 0xda, 0x53, 0x25, 0xf7, 0xb3, 0x9c, 0xce, 0xa8, + 0x20, 0xdf, 0x06, 0x88, 0x71, 0x83, 0x90, 0x9d, 0x37, 0xea, 0x34, 0x19, 0xdf, 0x9f, 0xaa, 0x66, + 0x43, 0x86, 0x4a, 0x84, 0x6a, 0xb5, 0x99, 0xb2, 0x6f, 0xcd, 0x39, 0x19, 0x61, 0xfe, 0x36, 0x14, + 0x95, 0x38, 0x56, 0x8d, 0xc5, 0x33, 0x66, 0x34, 0x51, 0xb2, 0x27, 0x8e, 0xd5, 0xd6, 0x9c, 0x43, + 0x02, 0x28, 0x88, 0x1b, 0xa0, 0x71, 0x61, 0x06, 0xc1, 0x87, 0x7e, 0x20, 0x50, 0x10, 0x05, 0xf8, + 0xfb, 0x50, 0x0e, 0xdc, 0x13, 0x39, 0x50, 0x0d, 0x46, 0xa2, 0xbf, 0x76, 0xa6, 0xe8, 0x63, 0x62, + 0xdd, 0x9a, 0x73, 0x8c, 0x10, 0xbf, 0x0b, 0x05, 0xcf, 0x3f, 0x6a, 0x2c, 0x91, 0xec, 0xca, 0x99, + 0xb2, 0x9b, 0xfe, 0xd1, 0xd6, 0x9c, 0x83, 0xec, 0x7c, 0x03, 0xaa, 0x2d, 0x29, 0x0f, 0x7b, 0x6e, + 0x74, 0xd8, 0xe0, 0x24, 0xfa, 0xbd, 0x33, 0x45, 0xd7, 0x0d, 0xf3, 0xd6, 0x9c, 0x93, 0x0a, 0xe2, + 0x90, 0xfd, 0xb6, 0x0c, 0x1b, 0x17, 0x67, 0x18, 0xf2, 0x76, 0x5b, 0x86, 0x38, 0x64, 0x14, 0x40, + 0xc1, 0xc0, 0x0f, 0x0f, 0x1b, 0xcb, 0x33, 0x08, 0xe2, 0xde, 0x41, 0x41, 0x14, 0xc0, 0x6e, 0x7b, + 0xae, 0x72, 0x8f, 0x7c, 0xf1, 0xa2, 0x71, 0x69, 0x86, 0x6e, 0x6f, 0x1a, 0x66, 0xec, 0x76, 0x22, + 0x88, 0x4a, 0x92, 0x8d, 0xd9, 0xb8, 0x3c, 0x83, 0x92, 0x64, 0x4f, 0xa3, 0x92, 0x44, 0x90, 0xff, + 0x0e, 0x2c, 0x1d, 0x08, 0x57, 0x0d, 0x22, 0xe1, 0x0d, 0x61, 0xee, 0x0a, 0x69, 0x5b, 0x3d, 0x7b, + 0xed, 0xc7, 0xa5, 0xb6, 0xe6, 0x9c, 0x49, 0x55, 0xfc, 0x3d, 0x28, 0x05, 0xae, 0x12, 0xc7, 0x8d, + 0x06, 0xe9, 0xb4, 0x5f, 0x62, 0x14, 0x4a, 0x1c, 0x6f, 0xcd, 0x39, 0x5a, 0x84, 0xff, 0x26, 0x5c, + 0x50, 0x6e, 0x2b, 0x10, 0x3b, 0x07, 0x86, 0x21, 0x6e, 0xfc, 0x3f, 0xd2, 0xf2, 0xfa, 0xd9, 0xe6, + 0x3c, 0x2a, 0xb3, 0x35, 0xe7, 0x8c, 0xab, 0xc1, 0x5e, 0x11, 0xa9, 0x61, 0xcd, 0xd0, 0x2b, 0xd2, + 0x87, 0xbd, 0x22, 0x11, 0xfe, 0x18, 0xea, 0xf4, 0xb0, 0x21, 0x83, 0x41, 0x2f, 0x6c, 0x5c, 0x25, + 0x0d, 0x37, 0x5e, 0xae, 0x41, 0xf3, 0x6f, 0xcd, 0x39, 0x59, 0x71, 0x5c, 0x44, 0x6a, 0x3a, 0xf2, + 0x45, 0xe3, 0x95, 0x19, 0x16, 0x71, 0xcf, 0x30, 0xe3, 0x22, 0x26, 0x82, 0xb8, 0xf5, 0x5e, 0xf8, + 0x5e, 0x47, 0xa8, 0xc6, 0x77, 0x66, 0xd8, 0x7a, 0xcf, 0x89, 0x15, 0xb7, 0x9e, 0x16, 0xb2, 0x7e, + 0x0c, 0xf3, 0x59, 0x70, 0xe5, 0x1c, 0x8a, 0x91, 0x70, 0x35, 0xb0, 0x57, 0x1d, 0x7a, 0x46, 0x9a, + 0xf0, 0x7c, 0x45, 0xc0, 0x5e, 0x75, 0xe8, 0x99, 0x5f, 0x86, 0xb2, 0x76, 0x32, 0x84, 0xdb, 0x55, + 0xc7, 0xb4, 0x90, 0xd7, 0x8b, 0xdc, 0x4e, 0xa3, 0xa8, 0x79, 0xf1, 0x19, 0x79, 0xbd, 0x48, 0xf6, + 0x77, 0x42, 0xc2, 0xdd, 0xaa, 0x63, 0x5a, 0xd6, 0x3f, 0xdf, 0x81, 0x8a, 0xe9, 0x98, 0xf5, 0x17, + 0x39, 0x28, 0x6b, 0x5c, 0xe0, 0xf7, 0xa1, 0x14, 0xab, 0x93, 0x40, 0x50, 0x1f, 0x16, 0x6f, 0xff, + 0x60, 0x06, 0x2c, 0x59, 0x6d, 0xa2, 0x80, 0xa3, 0xe5, 0x6c, 0x07, 0x4a, 0xd4, 0xe6, 0x15, 0x28, + 0x38, 0xf2, 0x05, 0x9b, 0xe3, 0x00, 0x65, 0x3d, 0xe7, 0x2c, 0x87, 0xc4, 0x4d, 0xff, 0x88, 0xe5, + 0x91, 0xb8, 0x25, 0x5c, 0x4f, 0x44, 0xac, 0xc0, 0x17, 0xa0, 0x96, 0xcc, 0x6e, 0xcc, 0x8a, 0x9c, + 0xc1, 0x7c, 0x66, 0xdd, 0x62, 0x56, 0xb2, 0xfe, 0xa7, 0x08, 0x45, 0xdc, 0xc6, 0xfc, 0x55, 0x58, + 0x50, 0x6e, 0xd4, 0x11, 0x3a, 0x92, 0xd9, 0x4e, 0x5c, 0xe0, 0x28, 0x91, 0xbf, 0x9f, 0x8c, 0x21, + 0x4f, 0x63, 0xf8, 0xfe, 0x4b, 0xe1, 0x61, 0x64, 0x04, 0x19, 0x67, 0x5a, 0x98, 0xcd, 0x99, 0x3e, + 0x84, 0x2a, 0xa2, 0x52, 0xd3, 0xff, 0xb1, 0xa0, 0xa9, 0x5f, 0xbc, 0x7d, 0xf3, 0xe5, 0x9f, 0xdc, + 0x36, 0x12, 0x4e, 0x2a, 0xcb, 0xb7, 0xa1, 0xd6, 0x76, 0x23, 0x8f, 0x3a, 0x43, 0xab, 0xb5, 0x78, + 0xfb, 0xb5, 0x97, 0x2b, 0xda, 0x48, 0x44, 0x9c, 0xa1, 0x34, 0xdf, 0x81, 0xba, 0x27, 0xe2, 0x76, + 0xe4, 0xf7, 0x09, 0xa5, 0xb4, 0x4b, 0xfd, 0xe1, 0xcb, 0x95, 0x6d, 0x0e, 0x85, 0x9c, 0xac, 0x06, + 0xfe, 0x0a, 0xd4, 0xa2, 0x14, 0xa6, 0x2a, 0xe4, 0xe7, 0x87, 0x04, 0xfb, 0x6d, 0xa8, 0x26, 0xe3, + 0xe1, 0xf3, 0x50, 0xc5, 0xdf, 0xa7, 0x32, 0x14, 0x6c, 0x0e, 0xd7, 0x16, 0x5b, 0xcd, 0x9e, 0x1b, + 0x04, 0x2c, 0xc7, 0x17, 0x01, 0xb0, 0xf9, 0x44, 0x78, 0xfe, 0xa0, 0xc7, 0xf2, 0xf6, 0xaf, 0x27, + 0xd6, 0x52, 0x85, 0xe2, 0xae, 0xdb, 0x41, 0x89, 0x79, 0xa8, 0x26, 0xa8, 0xcb, 0x72, 0x28, 0xbf, + 0xe9, 0xc6, 0xdd, 0x96, 0x74, 0x23, 0x8f, 0xe5, 0x79, 0x1d, 0x2a, 0x6b, 0x51, 0xbb, 0xeb, 0x1f, + 0x09, 0x56, 0xb0, 0x6f, 0x41, 0x3d, 0xd3, 0x5f, 0x54, 0x61, 0x3e, 0x5a, 0x83, 0xd2, 0x9a, 0xe7, + 0x09, 0x8f, 0xe5, 0x50, 0xc0, 0x0c, 0x90, 0xe5, 0xed, 0xd7, 0xa0, 0x96, 0xce, 0x16, 0xb2, 0xa3, + 0xff, 0x65, 0x73, 0xf8, 0x84, 0x64, 0x96, 0x43, 0xab, 0xdc, 0x0e, 0x03, 0x3f, 0x14, 0x2c, 0x6f, + 0x7d, 0x4a, 0xa6, 0xca, 0x7f, 0x63, 0x74, 0x43, 0x5c, 0x7f, 0x99, 0x83, 0x1c, 0xdd, 0x0d, 0x57, + 0x33, 0xe3, 0x7b, 0xec, 0x53, 0xe7, 0xaa, 0x50, 0xdc, 0x94, 0x2a, 0x66, 0x39, 0xeb, 0xbf, 0xf2, + 0x50, 0x4d, 0xfc, 0x22, 0x67, 0x50, 0x18, 0x44, 0x81, 0x31, 0x68, 0x7c, 0xe4, 0xcb, 0x50, 0x52, + 0xbe, 0x32, 0x66, 0x5c, 0x73, 0x74, 0x03, 0x43, 0xae, 0xec, 0xca, 0x16, 0xe8, 0xdd, 0xf8, 0x52, + 0xf9, 0x3d, 0xb7, 0x23, 0xb6, 0xdc, 0xb8, 0x4b, 0xf6, 0x58, 0x73, 0x86, 0x04, 0x94, 0x3f, 0x70, + 0x8f, 0xd0, 0xe6, 0xe8, 0xbd, 0x0e, 0xc6, 0xb2, 0x24, 0x7e, 0x07, 0x8a, 0x38, 0x40, 0x63, 0x34, + 0xff, 0x7f, 0x6c, 0xc0, 0x68, 0x26, 0xbb, 0x91, 0xc0, 0xe5, 0x59, 0xc5, 0x50, 0xda, 0x21, 0x66, + 0x7e, 0x1d, 0x16, 0xf5, 0x26, 0xdc, 0xa1, 0x20, 0x7b, 0xdb, 0xa3, 0x60, 0xac, 0xe6, 0x8c, 0x51, + 0xf9, 0x1a, 0x4e, 0xa7, 0xab, 0x44, 0xa3, 0x3a, 0x83, 0x7d, 0x27, 0x93, 0xb3, 0xda, 0x44, 0x11, + 0x47, 0x4b, 0xda, 0xf7, 0x70, 0x4e, 0x5d, 0x25, 0x70, 0x99, 0x1f, 0xf4, 0xfa, 0xea, 0x44, 0x1b, + 0xcd, 0x43, 0xa1, 0xda, 0x5d, 0x3f, 0xec, 0xb0, 0x9c, 0x9e, 0x62, 0x5c, 0x44, 0x62, 0x89, 0x22, + 0x19, 0xb1, 0x82, 0x65, 0x41, 0x11, 0x6d, 0x14, 0x41, 0x32, 0x74, 0x7b, 0xc2, 0xcc, 0x34, 0x3d, + 0x5b, 0x17, 0x61, 0x69, 0xc2, 0xad, 0x5a, 0x7f, 0x5f, 0xd6, 0x16, 0x82, 0x12, 0x14, 0xd2, 0x19, + 0x09, 0x8a, 0xd6, 0xce, 0x85, 0x31, 0xa8, 0x65, 0x14, 0x63, 0xde, 0x87, 0x12, 0x0e, 0x2c, 0x81, + 0x98, 0x19, 0xc4, 0x9f, 0x20, 0xbb, 0xa3, 0xa5, 0x78, 0x03, 0x2a, 0xed, 0xae, 0x68, 0x1f, 0x0a, + 0xcf, 0x60, 0x7d, 0xd2, 0x44, 0xa3, 0x69, 0x67, 0xa2, 0x6c, 0xdd, 0x20, 0x93, 0x68, 0xcb, 0xf0, + 0x41, 0x4f, 0x7e, 0xe6, 0xd3, 0xba, 0xa2, 0x49, 0x24, 0x84, 0xe4, 0xed, 0x36, 0xda, 0x88, 0x59, + 0xb6, 0x21, 0xc1, 0x7a, 0x00, 0x25, 0xfa, 0x36, 0xee, 0x04, 0xdd, 0x67, 0x9d, 0x2a, 0x5e, 0x9f, + 0xad, 0xcf, 0xa6, 0xcb, 0xd6, 0x5f, 0xe7, 0xa1, 0x88, 0x6d, 0x7e, 0x13, 0x4a, 0x91, 0x1b, 0x76, + 0xf4, 0x02, 0x4c, 0x66, 0x9c, 0x0e, 0xbe, 0x73, 0x34, 0x0b, 0xbf, 0x6f, 0x4c, 0x31, 0x3f, 0x83, + 0xb1, 0xa4, 0x5f, 0xcc, 0x9a, 0xe5, 0x32, 0x94, 0xfa, 0x6e, 0xe4, 0xf6, 0xcc, 0x3e, 0xd1, 0x0d, + 0xfb, 0xe7, 0x39, 0x28, 0x22, 0x13, 0x5f, 0x82, 0x85, 0xa6, 0x8a, 0xfc, 0x43, 0xa1, 0xba, 0x91, + 0x1c, 0x74, 0xba, 0xda, 0x92, 0x1e, 0x89, 0x13, 0x8d, 0x37, 0x1a, 0x10, 0x94, 0x1b, 0xf8, 0x6d, + 0x96, 0x47, 0xab, 0x5a, 0x97, 0x81, 0xc7, 0x0a, 0xfc, 0x02, 0xd4, 0x9f, 0x85, 0x9e, 0x88, 0xe2, + 0xb6, 0x8c, 0x84, 0xc7, 0x8a, 0x66, 0x77, 0x1f, 0xb2, 0x12, 0xf9, 0x32, 0x71, 0xac, 0x28, 0xa5, + 0x61, 0x65, 0x7e, 0x11, 0x2e, 0xac, 0x8f, 0xe6, 0x39, 0xac, 0x82, 0x98, 0xf4, 0x44, 0x84, 0x68, + 0x64, 0xac, 0xaa, 0x8d, 0x58, 0x7e, 0xe6, 0xb3, 0x1a, 0x7e, 0x4c, 0xef, 0x13, 0x06, 0xf6, 0x3f, + 0xe4, 0x12, 0xe4, 0x58, 0x80, 0xda, 0xae, 0x1b, 0xb9, 0x9d, 0xc8, 0xed, 0x63, 0xff, 0xea, 0x50, + 0xd1, 0x8e, 0xf3, 0x4d, 0x8d, 0x6e, 0xba, 0x71, 0x5b, 0x63, 0xa3, 0x6e, 0xdc, 0x61, 0x85, 0x61, + 0xe3, 0x2e, 0x2b, 0xe2, 0x37, 0x3e, 0x1e, 0x48, 0x25, 0x58, 0x89, 0xb0, 0x4e, 0x7a, 0x82, 0x95, + 0x91, 0xb8, 0x87, 0x88, 0xc2, 0x2a, 0x38, 0xe6, 0x0d, 0xb4, 0x9f, 0x96, 0x3c, 0x66, 0x55, 0xec, + 0x06, 0x4e, 0xa3, 0xf0, 0x58, 0x0d, 0xdf, 0x3c, 0x1d, 0xf4, 0x5a, 0x02, 0x87, 0x09, 0xf8, 0x66, + 0x4f, 0x76, 0x3a, 0x81, 0x60, 0x75, 0x9c, 0x83, 0x0c, 0xf8, 0xb2, 0x79, 0x42, 0x5a, 0x37, 0x08, + 0xe4, 0x40, 0xb1, 0x05, 0xeb, 0xab, 0x02, 0x14, 0x31, 0x49, 0xc1, 0xbd, 0xd3, 0x45, 0x9c, 0x31, + 0x7b, 0x07, 0x9f, 0xd3, 0x1d, 0x98, 0x1f, 0xee, 0x40, 0xfe, 0x9e, 0x59, 0xe9, 0xc2, 0x0c, 0x28, + 0x8b, 0x8a, 0xb3, 0x8b, 0xcc, 0xa1, 0xd8, 0xf3, 0x7b, 0xc2, 0x60, 0x1d, 0x3d, 0x23, 0x2d, 0x46, + 0x7f, 0x8c, 0xdb, 0xa0, 0xe0, 0xd0, 0x33, 0xee, 0x1a, 0x17, 0xdd, 0xc2, 0x9a, 0xa2, 0x3d, 0x50, + 0x70, 0x92, 0xa6, 0xde, 0xcd, 0x88, 0x4a, 0x95, 0x19, 0x76, 0x33, 0x7d, 0x3e, 0x8b, 0x48, 0x43, + 0x30, 0xa8, 0xce, 0x2e, 0x9e, 0x71, 0x12, 0x9b, 0xc6, 0x1a, 0x87, 0x0e, 0xac, 0xaa, 0x67, 0x8f, + 0xe5, 0x70, 0x95, 0x68, 0x1b, 0x6a, 0x2c, 0xdb, 0xf7, 0x3d, 0x21, 0x59, 0x81, 0x1c, 0xdc, 0xc0, + 0xf3, 0x25, 0x2b, 0x62, 0x44, 0xb5, 0xbb, 0xf9, 0x90, 0x95, 0xec, 0xeb, 0x19, 0x57, 0xb3, 0x36, + 0x50, 0x52, 0xab, 0x21, 0xb3, 0xcc, 0x69, 0x2b, 0x6b, 0x09, 0x8f, 0xe5, 0xed, 0xb7, 0xa6, 0xc0, + 0xe7, 0x02, 0xd4, 0x9e, 0xf5, 0x03, 0xe9, 0x7a, 0x67, 0xe0, 0xe7, 0x3c, 0xc0, 0x30, 0xe9, 0xb5, + 0xfe, 0xf8, 0x3b, 0x43, 0x37, 0x8d, 0x31, 0x66, 0x2c, 0x07, 0x51, 0x5b, 0x10, 0x34, 0xd4, 0x1c, + 0xd3, 0xe2, 0x1f, 0x42, 0x09, 0xdf, 0xc7, 0x8d, 0x3c, 0x21, 0xc6, 0xcd, 0x99, 0x52, 0xad, 0xd5, + 0x7d, 0x5f, 0xbc, 0x70, 0xb4, 0x20, 0xbf, 0x97, 0x0d, 0x3b, 0x5e, 0x52, 0x04, 0x1a, 0x72, 0xf2, + 0x6b, 0x00, 0x6e, 0x5b, 0xf9, 0x47, 0x02, 0x75, 0x99, 0xbd, 0x9f, 0xa1, 0x70, 0x07, 0xea, 0xb8, + 0x25, 0xfb, 0x3b, 0x11, 0xee, 0xe2, 0xc6, 0x3c, 0x29, 0x7e, 0x63, 0xb6, 0xee, 0x7d, 0x94, 0x0a, + 0x3a, 0x59, 0x25, 0xfc, 0x19, 0xcc, 0xeb, 0x02, 0x93, 0x51, 0xba, 0x40, 0x4a, 0xdf, 0x9c, 0x4d, + 0xe9, 0xce, 0x50, 0xd2, 0x19, 0x51, 0x33, 0x59, 0x37, 0x2a, 0x9d, 0xb7, 0x6e, 0x84, 0xbe, 0x79, + 0x6f, 0xd4, 0x37, 0x6b, 0x17, 0x30, 0x46, 0xe5, 0x36, 0xcc, 0xfb, 0xf1, 0xb0, 0x6c, 0x45, 0x25, + 0x8c, 0xaa, 0x33, 0x42, 0xb3, 0x7e, 0x51, 0x82, 0x22, 0x4d, 0xe1, 0x78, 0x09, 0x6a, 0x63, 0x04, + 0xaa, 0x6f, 0xcd, 0xbe, 0xd4, 0x63, 0x3b, 0x99, 0x90, 0xa1, 0x90, 0x41, 0x86, 0x0f, 0xa1, 0x14, + 0xcb, 0x48, 0x25, 0xcb, 0x3f, 0xa3, 0x11, 0x35, 0x65, 0xa4, 0x1c, 0x2d, 0xc8, 0x1f, 0x42, 0xe5, + 0xc0, 0x0f, 0x14, 0x2e, 0x8a, 0x9e, 0xbc, 0xd7, 0x67, 0xd3, 0xf1, 0x90, 0x84, 0x9c, 0x44, 0x98, + 0x3f, 0xce, 0x1a, 0x63, 0x99, 0x34, 0xad, 0xce, 0xa6, 0x69, 0x9a, 0x8d, 0xde, 0x04, 0xd6, 0x96, + 0x47, 0x22, 0x4a, 0xde, 0x3d, 0x12, 0x27, 0xc6, 0xf9, 0x4e, 0xd0, 0xb9, 0x05, 0xd5, 0xae, 0xef, + 0x09, 0x8c, 0x5f, 0x08, 0x63, 0xaa, 0x4e, 0xda, 0xe6, 0x8f, 0xa0, 0x4a, 0x71, 0x3f, 0xa2, 0x5d, + 0xed, 0xdc, 0x93, 0xaf, 0x53, 0x90, 0x44, 0x01, 0x7e, 0x88, 0x3e, 0xfe, 0xd0, 0x57, 0x0d, 0xd0, + 0x1f, 0x4a, 0xda, 0xd8, 0x61, 0xb2, 0xf7, 0x6c, 0x87, 0xeb, 0xba, 0xc3, 0xe3, 0x74, 0x7e, 0x17, + 0x2e, 0x11, 0x6d, 0xcc, 0xf9, 0xe1, 0x56, 0x43, 0xa5, 0xd3, 0x5f, 0x62, 0x20, 0xd2, 0x77, 0x3b, + 0xe2, 0xb1, 0xdf, 0xf3, 0x55, 0x63, 0x61, 0x25, 0x77, 0xa3, 0xe4, 0x0c, 0x09, 0xf6, 0x5d, 0x03, + 0x93, 0xe8, 0xb8, 0x30, 0x3f, 0x4c, 0x00, 0x2e, 0x56, 0xda, 0x13, 0x7e, 0xe4, 0x06, 0x81, 0x88, + 0x4e, 0x74, 0x72, 0xf9, 0xc8, 0x0d, 0x5b, 0x6e, 0xc8, 0x0a, 0xf6, 0x0d, 0x28, 0xd2, 0xc8, 0x6a, + 0x50, 0xd2, 0x49, 0x08, 0x25, 0xa4, 0x26, 0x01, 0x21, 0x60, 0x7c, 0x8c, 0xbb, 0x80, 0xe5, 0xad, + 0xbf, 0x2b, 0x40, 0x35, 0x19, 0x03, 0x86, 0xe3, 0x87, 0xe2, 0x24, 0x09, 0xc7, 0x0f, 0xc5, 0x09, + 0x45, 0x49, 0xf1, 0xbe, 0x1f, 0xfb, 0x2d, 0x13, 0xf5, 0x55, 0x9d, 0x21, 0x01, 0x03, 0x8d, 0x17, + 0xbe, 0xa7, 0xba, 0x64, 0xba, 0x25, 0x47, 0x37, 0xf8, 0x0d, 0xb8, 0xe0, 0xb9, 0x4a, 0x6c, 0x87, + 0xed, 0x60, 0xe0, 0x89, 0x3d, 0x74, 0x52, 0x3a, 0x0b, 0x1f, 0x27, 0xf3, 0x1f, 0x01, 0x28, 0xbf, + 0x27, 0x1e, 0xca, 0xa8, 0xe7, 0x2a, 0x13, 0x7a, 0xbf, 0x7b, 0x3e, 0xe3, 0x5a, 0xdd, 0x4b, 0x15, + 0x38, 0x19, 0x65, 0xa8, 0x1a, 0xbf, 0x66, 0x54, 0x57, 0xbe, 0x95, 0xea, 0xcd, 0x54, 0x81, 0x93, + 0x51, 0x66, 0xff, 0x16, 0xc0, 0xf0, 0x0d, 0xbf, 0x0c, 0xfc, 0x89, 0x0c, 0x55, 0x77, 0xad, 0xd5, + 0x8a, 0xd6, 0xc5, 0x81, 0x8c, 0xc4, 0xa6, 0x8b, 0xde, 0xe5, 0x12, 0x2c, 0xa5, 0xf4, 0xb5, 0x03, + 0x25, 0x22, 0x24, 0xd3, 0xd4, 0x37, 0xbb, 0x32, 0x52, 0x3a, 0x74, 0xa1, 0xc7, 0x67, 0x4d, 0x56, + 0x40, 0x8f, 0xb6, 0xdd, 0xdc, 0x61, 0x45, 0xfb, 0x06, 0xc0, 0x70, 0x48, 0x14, 0xe2, 0xd3, 0xd3, + 0x9b, 0xb7, 0x4d, 0xc0, 0x4f, 0xad, 0xdb, 0x77, 0x59, 0xce, 0xfa, 0xdb, 0x3c, 0x14, 0x71, 0xc7, + 0x1b, 0x54, 0x2a, 0xa7, 0xa8, 0xb4, 0x02, 0xf5, 0xac, 0xb9, 0xea, 0xe5, 0xcc, 0x92, 0xbe, 0x1d, + 0x6e, 0xe1, 0xb7, 0xb2, 0xb8, 0xf5, 0x0e, 0xd4, 0xdb, 0x83, 0x58, 0xc9, 0x1e, 0x81, 0x76, 0xa3, + 0x40, 0xd8, 0x70, 0x79, 0xa2, 0x6e, 0xb0, 0xef, 0x06, 0x03, 0xe1, 0x64, 0x59, 0xf9, 0x3d, 0x28, + 0x1f, 0xe8, 0x85, 0xd1, 0x95, 0x83, 0xef, 0x9c, 0x82, 0xeb, 0x66, 0xf2, 0x0d, 0x33, 0x8e, 0xcb, + 0x9f, 0x30, 0xaa, 0x2c, 0xc9, 0xfe, 0x9e, 0xd9, 0x2d, 0x15, 0x28, 0xac, 0xc5, 0x6d, 0x93, 0x77, + 0x8a, 0xb8, 0xad, 0x83, 0xda, 0x0d, 0xea, 0x02, 0xcb, 0x5b, 0xff, 0x5a, 0x81, 0xb2, 0xc6, 0x39, + 0x33, 0x77, 0xb5, 0x74, 0xee, 0x3e, 0x86, 0xaa, 0xec, 0x8b, 0xc8, 0x55, 0x32, 0x32, 0xc9, 0xef, + 0xbd, 0xf3, 0xe0, 0xe6, 0xea, 0x8e, 0x11, 0x76, 0x52, 0x35, 0xe3, 0xcb, 0x91, 0x9f, 0x5c, 0x8e, + 0x9b, 0xc0, 0x12, 0x88, 0xdc, 0x8d, 0x50, 0x4e, 0x9d, 0x98, 0x54, 0x66, 0x82, 0xce, 0xf7, 0xa0, + 0xd6, 0x96, 0xa1, 0xe7, 0xa7, 0x89, 0xf0, 0xe2, 0xed, 0xb7, 0xce, 0xd5, 0xc3, 0x8d, 0x44, 0xda, + 0x19, 0x2a, 0xe2, 0xaf, 0x43, 0xe9, 0x08, 0xd7, 0x89, 0x16, 0xe4, 0xf4, 0x55, 0xd4, 0x4c, 0xfc, + 0x13, 0xa8, 0x7f, 0x3e, 0xf0, 0xdb, 0x87, 0x3b, 0xd9, 0x42, 0xcb, 0x3b, 0xe7, 0xea, 0xc5, 0xc7, + 0x43, 0x79, 0x27, 0xab, 0x2c, 0x63, 0x1b, 0x95, 0x5f, 0xc2, 0x36, 0xaa, 0x93, 0xb6, 0x71, 0x15, + 0xaa, 0xc9, 0xe2, 0x90, 0x7d, 0x84, 0x1e, 0x9b, 0xe3, 0x65, 0xc8, 0xef, 0x44, 0x2c, 0x67, 0xff, + 0x77, 0x0e, 0x6a, 0xe9, 0xc4, 0x8c, 0x16, 0x55, 0x1e, 0x7c, 0x3e, 0x70, 0x03, 0x96, 0xa3, 0xac, + 0x40, 0x2a, 0xdd, 0xa2, 0xcd, 0xfb, 0x51, 0x24, 0x5c, 0x45, 0xb5, 0x3c, 0x44, 0x64, 0x11, 0xc7, + 0xac, 0xc8, 0x39, 0x2c, 0x1a, 0xf2, 0x4e, 0xa4, 0x59, 0x4b, 0x98, 0x34, 0xe0, 0xdb, 0x84, 0x50, + 0xd6, 0x00, 0x7e, 0x28, 0x74, 0x52, 0xf4, 0x54, 0x2a, 0x6a, 0x54, 0xb1, 0x2f, 0xdb, 0x21, 0xab, + 0xe1, 0x37, 0x9f, 0x4a, 0xb5, 0x1d, 0x32, 0x18, 0x46, 0xab, 0xf5, 0xe4, 0xf3, 0xd4, 0x9a, 0xa7, + 0x58, 0x38, 0x08, 0xb6, 0x43, 0xb6, 0x60, 0x5e, 0xe8, 0xd6, 0x22, 0x6a, 0x7c, 0x70, 0xec, 0xb6, + 0x51, 0xfc, 0x02, 0x5f, 0x04, 0x40, 0x19, 0xd3, 0x66, 0xb8, 0x07, 0x1e, 0x1c, 0xfb, 0xb1, 0x8a, + 0xd9, 0x92, 0xfd, 0x2f, 0x39, 0xa8, 0x67, 0x16, 0x01, 0xa3, 0x61, 0x62, 0x44, 0x68, 0xd3, 0xc1, + 0xf1, 0x8f, 0x44, 0xac, 0x44, 0xe4, 0x25, 0xb0, 0xb5, 0x27, 0xf1, 0x31, 0x8f, 0xdf, 0xdb, 0x93, + 0x3d, 0x19, 0x45, 0xf2, 0x05, 0x2b, 0x60, 0xeb, 0xb1, 0x1b, 0xab, 0xe7, 0x42, 0x1c, 0xb2, 0x22, + 0x0e, 0x75, 0x63, 0x10, 0x45, 0x22, 0xd4, 0x84, 0x12, 0x75, 0x4e, 0x1c, 0xeb, 0x56, 0x19, 0x95, + 0x22, 0x33, 0xe1, 0x22, 0xab, 0x70, 0x06, 0xf3, 0x86, 0x5b, 0x53, 0xaa, 0xc8, 0x80, 0xec, 0xba, + 0x59, 0xc3, 0x44, 0x52, 0x27, 0x62, 0x3b, 0x07, 0x9b, 0xee, 0x49, 0xbc, 0xd6, 0x91, 0x0c, 0xc6, + 0x89, 0x4f, 0xe5, 0x0b, 0x56, 0xb7, 0x06, 0x00, 0xc3, 0x10, 0x15, 0x43, 0x73, 0xb4, 0xb5, 0xb4, + 0x54, 0x6a, 0x5a, 0x7c, 0x07, 0x00, 0x9f, 0x88, 0x33, 0x89, 0xcf, 0xcf, 0x11, 0x37, 0x90, 0x9c, + 0x93, 0x51, 0x61, 0xfd, 0x2e, 0xd4, 0xd2, 0x17, 0x98, 0x69, 0x91, 0x87, 0x4f, 0x3f, 0x9b, 0x34, + 0xd1, 0x4f, 0xfa, 0xa1, 0x27, 0x8e, 0x69, 0xef, 0x97, 0x1c, 0xdd, 0xc0, 0x5e, 0x76, 0x7d, 0xcf, + 0x13, 0x61, 0x52, 0xd0, 0xd6, 0xad, 0x69, 0xa7, 0x87, 0xc5, 0xa9, 0xa7, 0x87, 0xd6, 0x6f, 0x43, + 0x3d, 0x13, 0x43, 0x9f, 0x3a, 0xec, 0x4c, 0xc7, 0xf2, 0xa3, 0x1d, 0x7b, 0x05, 0x6a, 0xd2, 0x04, + 0xc2, 0x31, 0x01, 0x78, 0xcd, 0x19, 0x12, 0xd0, 0xc1, 0x94, 0xf4, 0xd0, 0xc6, 0xe3, 0xde, 0x87, + 0x50, 0xc6, 0x24, 0x70, 0x90, 0x1c, 0xbd, 0xce, 0x18, 0x5b, 0x36, 0x49, 0x66, 0x6b, 0xce, 0x31, + 0xd2, 0xfc, 0x7d, 0x28, 0x28, 0xb7, 0x63, 0xea, 0x41, 0x3f, 0x98, 0x4d, 0xc9, 0x9e, 0xdb, 0xd9, + 0x9a, 0x73, 0x50, 0x8e, 0x3f, 0x86, 0x6a, 0xdb, 0xa4, 0xf0, 0x06, 0xb8, 0x66, 0x0c, 0x4d, 0x93, + 0xc4, 0x7f, 0x6b, 0xce, 0x49, 0x35, 0xf0, 0x0f, 0xa1, 0x88, 0x5e, 0x9e, 0x90, 0x77, 0xe6, 0x90, + 0x1b, 0xb7, 0xcb, 0xd6, 0x9c, 0x43, 0x92, 0xeb, 0x15, 0x28, 0x11, 0x4e, 0x5a, 0x0d, 0x28, 0xeb, + 0xb1, 0x8e, 0xcf, 0x9c, 0x75, 0x05, 0x0a, 0x7b, 0x6e, 0x07, 0x23, 0x2d, 0xdf, 0x8b, 0x4d, 0xe6, + 0x88, 0x8f, 0xd6, 0xab, 0xc3, 0x72, 0x44, 0xb6, 0xd2, 0x95, 0x1b, 0xa9, 0x74, 0x59, 0x65, 0x28, + 0xe2, 0x17, 0xad, 0x57, 0xce, 0x8a, 0xda, 0xac, 0xab, 0x18, 0xdf, 0x29, 0x71, 0x3c, 0xad, 0x88, + 0x67, 0x2d, 0xc1, 0x85, 0xb1, 0x33, 0x2b, 0xab, 0x62, 0x82, 0x4b, 0x6b, 0x01, 0xea, 0x99, 0x53, + 0x08, 0xeb, 0x3a, 0x54, 0x93, 0x33, 0x0a, 0x0c, 0x92, 0xfd, 0x58, 0x57, 0x57, 0x4c, 0xa7, 0xd2, + 0xb6, 0xa5, 0xa0, 0xac, 0x8f, 0x79, 0xf8, 0x7a, 0x7a, 0x2c, 0x9b, 0x9b, 0xe1, 0x4c, 0x40, 0x0b, + 0x99, 0x13, 0x95, 0xe4, 0x6c, 0xd6, 0xbe, 0x9e, 0x9e, 0xcb, 0x24, 0xa9, 0x3c, 0xf9, 0xf1, 0xbd, + 0x48, 0x08, 0x9d, 0xa6, 0x53, 0xf4, 0x9b, 0xb7, 0x0f, 0xa0, 0xba, 0x2b, 0xe3, 0x71, 0xc4, 0xae, + 0x40, 0x61, 0x4f, 0xf6, 0xb5, 0xc3, 0x5f, 0x97, 0x8a, 0x1c, 0xbe, 0x06, 0xe8, 0x03, 0xa5, 0x8b, + 0x08, 0x8e, 0xdf, 0xe9, 0x2a, 0x5d, 0x20, 0xda, 0x0e, 0x43, 0x11, 0xb1, 0x12, 0xa2, 0xa6, 0x23, + 0xfa, 0x81, 0xdb, 0x16, 0xac, 0x8c, 0xa8, 0x49, 0xf4, 0x87, 0x7e, 0x14, 0x2b, 0x56, 0xb1, 0xdf, + 0x46, 0xac, 0xf5, 0x3b, 0x04, 0x91, 0xf4, 0x40, 0xaa, 0xe6, 0x10, 0xec, 0xa8, 0xb9, 0x21, 0x42, + 0x74, 0x03, 0x54, 0xe7, 0xd7, 0x07, 0xed, 0xf4, 0x81, 0xbc, 0xfd, 0x1c, 0x16, 0x46, 0x0e, 0xe0, + 0xf9, 0x32, 0xb0, 0x11, 0x02, 0x76, 0x74, 0x8e, 0x5f, 0x81, 0x8b, 0x23, 0xd4, 0x27, 0xbe, 0xe7, + 0x51, 0x19, 0x64, 0xfc, 0x45, 0x32, 0x9c, 0xf5, 0x1a, 0x54, 0xda, 0x7a, 0x0a, 0xed, 0x5d, 0x58, + 0xa0, 0x39, 0x7d, 0x22, 0x94, 0xbb, 0x13, 0x06, 0x27, 0xbf, 0xf4, 0x2d, 0x09, 0xfb, 0x35, 0x28, + 0x51, 0x39, 0x12, 0x8d, 0xe7, 0x20, 0x92, 0x3d, 0xd2, 0x55, 0x72, 0xe8, 0x19, 0xb5, 0x2b, 0x69, + 0x60, 0x2c, 0xaf, 0xa4, 0xfd, 0xd3, 0x1a, 0x54, 0xd6, 0xda, 0x6d, 0x39, 0x08, 0xd5, 0xc4, 0x97, + 0xa7, 0x55, 0xbc, 0xee, 0x41, 0xd9, 0x3d, 0x72, 0x95, 0x1b, 0x99, 0x3d, 0x3f, 0xee, 0xdd, 0x8d, + 0xae, 0xd5, 0x35, 0x62, 0x72, 0x0c, 0x33, 0x8a, 0xb5, 0x65, 0x78, 0xe0, 0x77, 0xcc, 0x36, 0x3f, + 0x4d, 0x6c, 0x83, 0x98, 0x1c, 0xc3, 0x8c, 0x62, 0x06, 0xa6, 0x4a, 0x67, 0x8a, 0xe9, 0xbd, 0x9a, + 0xa2, 0xd2, 0x2d, 0x28, 0xfa, 0xe1, 0x81, 0x34, 0xf7, 0x63, 0xae, 0x9e, 0x22, 0xb4, 0x1d, 0x1e, + 0x48, 0x87, 0x18, 0x2d, 0x01, 0x65, 0xdd, 0x61, 0xfe, 0x2e, 0x94, 0xe8, 0xd4, 0xc1, 0xd4, 0x79, + 0x67, 0xba, 0xd0, 0xa0, 0x25, 0xf8, 0xe5, 0xa4, 0x88, 0x4d, 0xf3, 0x85, 0x74, 0x6a, 0xae, 0x57, + 0x93, 0x29, 0xb3, 0xfe, 0x23, 0x07, 0x65, 0x3d, 0x42, 0x7e, 0x1d, 0x16, 0x45, 0x88, 0x5b, 0x33, + 0x01, 0x22, 0xb3, 0x27, 0xc7, 0xa8, 0x18, 0x16, 0x19, 0x8a, 0x68, 0x0d, 0x3a, 0x26, 0x83, 0xcb, + 0x92, 0xf8, 0x3b, 0x70, 0x45, 0x37, 0x77, 0x23, 0x11, 0x89, 0x40, 0xb8, 0xb1, 0xd8, 0xe8, 0xba, + 0x61, 0x28, 0x02, 0xe3, 0x96, 0x4e, 0x7b, 0xcd, 0x6d, 0x98, 0xd7, 0xaf, 0x9a, 0x7d, 0xb7, 0x2d, + 0x62, 0x53, 0x94, 0x1f, 0xa1, 0xf1, 0x1f, 0x42, 0x89, 0x6e, 0x29, 0x35, 0xbc, 0xb3, 0x8d, 0x4f, + 0x73, 0x59, 0x32, 0xc5, 0xcd, 0x35, 0x00, 0xbd, 0x1a, 0x18, 0xcf, 0x1b, 0x30, 0xf9, 0xee, 0x99, + 0xcb, 0x47, 0x99, 0x49, 0x46, 0x08, 0xfb, 0xe7, 0x89, 0x40, 0x20, 0x3e, 0x20, 0x66, 0xd2, 0xe0, + 0x0b, 0xce, 0x08, 0xcd, 0xfa, 0xa2, 0x00, 0x45, 0x5c, 0x48, 0x64, 0xee, 0xca, 0x9e, 0x48, 0x8b, + 0x45, 0xda, 0x68, 0x47, 0x68, 0xe8, 0x98, 0x5d, 0x7d, 0x0e, 0x97, 0xb2, 0xe9, 0x9a, 0xcd, 0x38, + 0x19, 0x39, 0xfb, 0x91, 0x3c, 0xf0, 0x83, 0x21, 0xa7, 0x71, 0xe1, 0x63, 0x64, 0xfe, 0x16, 0x5c, + 0xee, 0xb9, 0xd1, 0xa1, 0x50, 0x84, 0x3e, 0xcf, 0x65, 0x74, 0x18, 0xe3, 0xcc, 0x6d, 0x7b, 0xa6, + 0xca, 0x70, 0xca, 0x5b, 0x84, 0x63, 0x4f, 0x1c, 0xf9, 0xc4, 0x59, 0x25, 0xce, 0xb4, 0x8d, 0xc6, + 0xe1, 0xea, 0xa9, 0x69, 0x1a, 0x5d, 0x3a, 0xbf, 0x19, 0xa3, 0xa2, 0xf7, 0xd7, 0x67, 0xf2, 0xf1, + 0xb6, 0x47, 0x85, 0x8f, 0x9a, 0x33, 0x24, 0xf0, 0x6b, 0x00, 0x1d, 0x57, 0x89, 0x17, 0xee, 0xc9, + 0xb3, 0x28, 0x68, 0x08, 0x5d, 0x4e, 0x1c, 0x52, 0x30, 0x69, 0x09, 0x64, 0xdb, 0x0d, 0x9a, 0x4a, + 0x46, 0x6e, 0x47, 0xec, 0xba, 0xaa, 0xdb, 0xe8, 0xe8, 0xa4, 0x65, 0x9c, 0x8e, 0xbd, 0xc5, 0xdc, + 0xfc, 0x13, 0x19, 0x8a, 0x46, 0x57, 0xf7, 0x36, 0x69, 0xdb, 0x3b, 0x00, 0xc3, 0x05, 0x44, 0xd4, + 0x5e, 0xa3, 0x92, 0x25, 0x9b, 0xc3, 0x48, 0x6f, 0x57, 0x84, 0x9e, 0x1f, 0x76, 0x36, 0xcd, 0x9a, + 0xb1, 0x1c, 0x12, 0x9b, 0xca, 0x8d, 0x94, 0xf0, 0x52, 0x22, 0x45, 0xe3, 0xd4, 0x12, 0x1e, 0x2b, + 0xd8, 0xff, 0x9b, 0x83, 0x7a, 0xe6, 0xc0, 0xee, 0x57, 0x78, 0xc8, 0x88, 0x3e, 0x10, 0xf7, 0x2a, + 0x4e, 0x88, 0x5e, 0xcf, 0xb4, 0x8d, 0xd3, 0x65, 0xce, 0x13, 0xf1, 0xad, 0xce, 0xde, 0x32, 0x94, + 0x6f, 0x75, 0xc0, 0x68, 0xdf, 0x36, 0xf9, 0x6c, 0x1d, 0x2a, 0xcf, 0xc2, 0xc3, 0x50, 0xbe, 0x08, + 0xb5, 0x2f, 0xa4, 0x53, 0xe3, 0x91, 0x3a, 0x79, 0x72, 0xb0, 0x5b, 0xb0, 0x7f, 0x56, 0x1c, 0xbb, + 0x60, 0xf1, 0x00, 0xca, 0x3a, 0xa6, 0xa3, 0x70, 0x63, 0xf2, 0x44, 0x3c, 0xcb, 0x6c, 0x6a, 0xb2, + 0x19, 0x92, 0x63, 0x84, 0x31, 0xd8, 0x4a, 0x6f, 0x11, 0xe5, 0xa7, 0xd6, 0x8e, 0x47, 0x14, 0x25, + 0x10, 0x34, 0x72, 0x91, 0x2e, 0xd5, 0x60, 0xfd, 0x24, 0x07, 0xcb, 0xd3, 0x58, 0x30, 0xf6, 0x69, + 0x8d, 0xdc, 0x73, 0x48, 0x9a, 0xbc, 0x39, 0x76, 0x7d, 0x2f, 0x4f, 0xa3, 0xb9, 0x75, 0xce, 0x4e, + 0x8c, 0x5e, 0xe6, 0xb3, 0xbf, 0xcc, 0xc1, 0xd2, 0xc4, 0x98, 0x33, 0xe1, 0x04, 0x40, 0x59, 0x5b, + 0x96, 0x3e, 0x96, 0x4f, 0x0f, 0x4a, 0x75, 0xc1, 0x8d, 0xf0, 0x3c, 0xd6, 0x27, 0x4f, 0x9b, 0xfa, + 0xf2, 0x27, 0x2b, 0x62, 0x1c, 0x80, 0xab, 0x86, 0x38, 0xd9, 0x11, 0xac, 0x84, 0x79, 0x8e, 0x0e, + 0x68, 0x0c, 0xa5, 0x4c, 0x39, 0x94, 0xe8, 0xf5, 0x03, 0xcc, 0xb5, 0x2a, 0x74, 0xdc, 0x3f, 0xe8, + 0x07, 0x7e, 0x1b, 0x9b, 0x55, 0xdb, 0x81, 0x8b, 0x53, 0xfa, 0x4d, 0x3d, 0xd9, 0x37, 0xbd, 0x5a, + 0x04, 0xd8, 0xdc, 0x4f, 0xfa, 0xc2, 0x72, 0x98, 0x76, 0x6e, 0xee, 0x6f, 0x50, 0xe2, 0x69, 0x0e, + 0xd3, 0xf4, 0x9e, 0xd8, 0xc7, 0xec, 0x24, 0x66, 0x05, 0xfb, 0x3e, 0x5c, 0xda, 0xeb, 0x46, 0xc2, + 0xf5, 0x36, 0x85, 0xe8, 0x07, 0x68, 0x6c, 0xee, 0x49, 0x20, 0x5d, 0x6f, 0x4a, 0xc9, 0x6f, 0x19, + 0x4a, 0xae, 0xe7, 0x45, 0x7a, 0x7e, 0x6b, 0x8e, 0x6e, 0xd8, 0x9f, 0xc2, 0x65, 0xad, 0x40, 0x7f, + 0xe5, 0xe3, 0x81, 0x18, 0x88, 0x07, 0xa1, 0x8a, 0x4e, 0x74, 0x49, 0x37, 0x29, 0x95, 0x6b, 0x1e, + 0xa3, 0x6e, 0x82, 0x4e, 0x38, 0x40, 0x4f, 0x29, 0xc2, 0xa6, 0x6d, 0xfb, 0xd3, 0xe4, 0x20, 0xd0, + 0xda, 0x87, 0x05, 0x3d, 0x53, 0x49, 0x27, 0x1f, 0xc0, 0x62, 0x9c, 0x5e, 0xe5, 0xcd, 0x38, 0x84, + 0x71, 0x7f, 0xde, 0x1c, 0x61, 0x72, 0xc6, 0x84, 0xec, 0x3f, 0x29, 0x01, 0xec, 0xa4, 0xd7, 0x61, + 0xa7, 0xe0, 0xc2, 0xb4, 0x88, 0x65, 0xe2, 0x28, 0xa2, 0x70, 0xee, 0xa3, 0x88, 0x77, 0xd2, 0xa0, + 0x58, 0x97, 0xbb, 0xc6, 0xef, 0x1b, 0x0e, 0xfb, 0x34, 0x16, 0x0a, 0x8f, 0x1e, 0x61, 0x97, 0xc6, + 0x8f, 0xb0, 0x57, 0x26, 0xef, 0xbb, 0x8c, 0x01, 0xd6, 0x30, 0xc5, 0xac, 0x8c, 0xa4, 0x98, 0x16, + 0x54, 0x71, 0xd6, 0x65, 0x18, 0x9c, 0x24, 0x15, 0xef, 0xa4, 0xcd, 0xef, 0x40, 0x49, 0xd1, 0x05, + 0xe2, 0x2a, 0xed, 0xaf, 0x97, 0xcc, 0xb1, 0xe6, 0x45, 0xf4, 0xf3, 0x63, 0x73, 0x49, 0x45, 0xbb, + 0x9b, 0xaa, 0x93, 0xa1, 0xf0, 0x55, 0xe0, 0x7e, 0x18, 0x2b, 0x37, 0x08, 0x84, 0xb7, 0x7e, 0xb2, + 0x29, 0x0e, 0xdc, 0x41, 0xa0, 0xc8, 0xc5, 0x55, 0x9d, 0x29, 0x6f, 0xec, 0x6f, 0x86, 0x97, 0xb3, + 0x6a, 0x50, 0x6a, 0xb9, 0xb1, 0xdf, 0xd6, 0xc7, 0xc0, 0xc6, 0x7f, 0xea, 0x44, 0x40, 0x49, 0x4f, + 0xb2, 0x3c, 0x86, 0xfc, 0xb1, 0xc0, 0xe0, 0x7e, 0x11, 0x60, 0x78, 0xdd, 0x99, 0x15, 0x71, 0x9b, + 0x25, 0x2b, 0xa1, 0x4f, 0x81, 0x49, 0x94, 0xea, 0x10, 0x5e, 0x7a, 0xbf, 0xa6, 0x82, 0x5f, 0x20, + 0x18, 0x67, 0x55, 0xe4, 0x09, 0xa5, 0x12, 0xba, 0x0a, 0x43, 0xbe, 0x96, 0x01, 0xaa, 0x49, 0x6e, + 0x6f, 0xb2, 0x3a, 0x46, 0xe5, 0x89, 0x52, 0x5d, 0x3a, 0x89, 0x29, 0x1f, 0x99, 0xc7, 0x4d, 0x38, + 0xfa, 0x82, 0x2d, 0x60, 0x8f, 0x86, 0x9b, 0x80, 0x2d, 0xa2, 0x2a, 0x84, 0xc0, 0x96, 0x1b, 0x0b, + 0xb6, 0x6c, 0xff, 0xe9, 0x70, 0x94, 0x6f, 0xa4, 0xc1, 0xf3, 0x2c, 0xf6, 0x71, 0x5a, 0x78, 0xfd, + 0x00, 0x96, 0x22, 0xf1, 0xf9, 0xc0, 0x1f, 0xb9, 0x5f, 0x59, 0x38, 0xfb, 0x04, 0x71, 0x52, 0xc2, + 0x3e, 0x82, 0xa5, 0xa4, 0xf1, 0xdc, 0x57, 0x5d, 0xca, 0x69, 0xf9, 0x9d, 0xcc, 0x05, 0xd0, 0x9c, + 0x89, 0xe6, 0x4e, 0x51, 0x39, 0xbc, 0xf0, 0x99, 0xd6, 0x15, 0xf3, 0x33, 0xd4, 0x15, 0xed, 0x7f, + 0x2f, 0x67, 0xd2, 0x5a, 0x9d, 0x4e, 0x78, 0x69, 0x3a, 0x31, 0x89, 0x54, 0xc3, 0x52, 0x61, 0xfe, + 0x3c, 0xa5, 0xc2, 0x69, 0xe7, 0x6d, 0xef, 0x61, 0xac, 0x48, 0xa6, 0xb7, 0x3f, 0x43, 0x19, 0x74, + 0x84, 0x97, 0xaf, 0xd3, 0x51, 0x83, 0xdb, 0xd4, 0x87, 0xc1, 0xa5, 0xa9, 0xd7, 0xb1, 0xb3, 0x67, + 0x0a, 0x86, 0xd3, 0xc9, 0x48, 0x65, 0x36, 0x6a, 0x79, 0xda, 0x46, 0xc5, 0xcc, 0xce, 0x6c, 0xe1, + 0xb4, 0xad, 0xab, 0xc6, 0xfa, 0x39, 0x51, 0x4f, 0xf7, 0xa8, 0xab, 0xce, 0x04, 0x1d, 0x41, 0xbd, + 0x37, 0x08, 0x94, 0x6f, 0x0a, 0xa3, 0xba, 0x31, 0xfe, 0x8f, 0x81, 0xda, 0xe4, 0x3f, 0x06, 0x3e, + 0x00, 0x88, 0x05, 0x9a, 0xef, 0xa6, 0xdf, 0x56, 0xe6, 0xc8, 0xf8, 0xda, 0x69, 0x63, 0x33, 0xe5, + 0xdc, 0x8c, 0x04, 0xf6, 0xbf, 0xe7, 0x1e, 0x6f, 0x60, 0xd4, 0x69, 0xce, 0xb6, 0xd2, 0xf6, 0x38, + 0x7c, 0x2d, 0x4e, 0xc2, 0xd7, 0x1d, 0x28, 0xc5, 0x6d, 0xd9, 0x17, 0x74, 0xe5, 0xf9, 0xf4, 0xf5, + 0x5d, 0x6d, 0x22, 0x93, 0xa3, 0x79, 0xa9, 0x78, 0x82, 0x3e, 0x4a, 0x46, 0x74, 0xd9, 0xb9, 0xe6, + 0x24, 0x4d, 0xcb, 0x83, 0xb2, 0x29, 0x76, 0x4e, 0x49, 0x55, 0xa9, 0x4e, 0x92, 0xcf, 0x5c, 0x76, + 0x4a, 0x2f, 0x15, 0x15, 0xb2, 0x97, 0x8a, 0x56, 0xa0, 0x1e, 0x65, 0x8a, 0xf9, 0xe6, 0x26, 0x59, + 0x86, 0x64, 0x7f, 0x02, 0x25, 0xea, 0x0f, 0x3a, 0x6c, 0x3d, 0x95, 0x3a, 0x66, 0xc3, 0x8e, 0xb3, + 0x1c, 0x5f, 0x06, 0x16, 0x0b, 0xb5, 0x73, 0xb0, 0xd7, 0x15, 0x4d, 0xb7, 0x27, 0x08, 0xa9, 0xf2, + 0xbc, 0x01, 0xcb, 0x9a, 0x37, 0x1e, 0x7d, 0x43, 0x91, 0x45, 0xe0, 0xb7, 0x22, 0x37, 0x3a, 0x61, + 0x45, 0xfb, 0x03, 0x3a, 0x7a, 0x4a, 0x8c, 0xa6, 0x9e, 0xfe, 0x33, 0x45, 0x63, 0xa3, 0x27, 0x22, + 0x04, 0x5b, 0x7d, 0x30, 0x68, 0x62, 0x7d, 0x7d, 0x9d, 0x81, 0x02, 0x72, 0x56, 0xb0, 0x9f, 0x63, + 0x68, 0x38, 0x74, 0x4d, 0xbf, 0xb2, 0x3d, 0x65, 0xaf, 0x67, 0x42, 0xa3, 0xd1, 0xfb, 0x0b, 0xb9, + 0x59, 0xef, 0x2f, 0xd8, 0x8f, 0xe0, 0x82, 0x33, 0x0a, 0xac, 0xfc, 0x1d, 0xa8, 0xc8, 0x7e, 0x56, + 0xcf, 0xcb, 0x6c, 0x2f, 0x61, 0xb7, 0xff, 0x2c, 0x07, 0xf3, 0xdb, 0xa1, 0x12, 0x51, 0xe8, 0x06, + 0x0f, 0x03, 0xb7, 0xc3, 0xdf, 0x4e, 0x90, 0x68, 0x7a, 0x2e, 0x99, 0xe5, 0x1d, 0x05, 0xa5, 0xa7, + 0xa6, 0xa8, 0xc7, 0x2f, 0xc1, 0x92, 0xf0, 0x7c, 0x25, 0x23, 0x1d, 0x10, 0x26, 0xd7, 0x48, 0x96, + 0x81, 0x69, 0x72, 0x93, 0xcc, 0x7e, 0x4f, 0x2f, 0x73, 0x03, 0x96, 0x47, 0xa8, 0x49, 0xb4, 0x97, + 0xb7, 0xff, 0x2d, 0x8d, 0x42, 0xf6, 0xcd, 0x35, 0x92, 0x48, 0x4a, 0x35, 0x2c, 0xda, 0xea, 0x56, + 0xe6, 0x4f, 0x4a, 0xf9, 0x19, 0xfe, 0xa4, 0xf4, 0xc1, 0xf0, 0x4f, 0x4a, 0x1a, 0xee, 0x5f, 0x9d, + 0xea, 0x43, 0xe8, 0xf4, 0xdb, 0x04, 0xaa, 0x4d, 0x91, 0xf9, 0xc7, 0xd2, 0x9b, 0x26, 0x3b, 0x29, + 0xce, 0x12, 0x57, 0xe9, 0xe3, 0xbf, 0x7b, 0xe3, 0x97, 0x63, 0x67, 0xbb, 0xa5, 0x32, 0x11, 0x4f, + 0xc1, 0xb9, 0xe3, 0xa9, 0xfb, 0x63, 0x89, 0x40, 0x75, 0x6a, 0x9d, 0xe6, 0x8c, 0x7f, 0xf0, 0xdc, + 0x87, 0x4a, 0xd7, 0x8f, 0x95, 0x8c, 0x4e, 0x28, 0x54, 0x99, 0xbc, 0x05, 0x9f, 0x99, 0xad, 0x2d, + 0xcd, 0x48, 0x57, 0x06, 0x12, 0x29, 0xab, 0x03, 0x30, 0x9c, 0xc5, 0x09, 0x34, 0xf9, 0x16, 0xff, + 0x18, 0xbb, 0x0c, 0xe5, 0x78, 0xd0, 0x1a, 0x56, 0xe1, 0x4d, 0xcb, 0x3a, 0x06, 0x6b, 0xc2, 0x13, + 0xef, 0x8a, 0x48, 0xf7, 0x0f, 0xd1, 0x35, 0xa9, 0xd6, 0x9b, 0xcf, 0xa7, 0x6d, 0xfe, 0x41, 0x76, + 0x79, 0xb4, 0x09, 0xad, 0x9c, 0x32, 0xc7, 0xa9, 0xe6, 0xcc, 0x3a, 0x59, 0xf7, 0xa0, 0x9e, 0x19, + 0x3a, 0x22, 0xe4, 0x20, 0xf4, 0x64, 0x52, 0x0c, 0xc4, 0x67, 0x7d, 0x73, 0xdf, 0x4b, 0xca, 0x81, + 0xf4, 0x7c, 0xf3, 0xaf, 0x0a, 0xb0, 0x38, 0x6a, 0x2e, 0x54, 0x16, 0xd5, 0x60, 0xb4, 0x13, 0x78, + 0xba, 0x6e, 0xba, 0x8e, 0x0e, 0xaa, 0x1d, 0x0d, 0x7a, 0xad, 0x58, 0x47, 0x72, 0x94, 0xd0, 0x32, + 0x7c, 0xb5, 0xab, 0x03, 0x3c, 0x22, 0x2c, 0xe1, 0xab, 0x2d, 0xd9, 0x13, 0x6c, 0x25, 0x7b, 0x09, + 0xfa, 0x8d, 0xe4, 0xba, 0x34, 0x85, 0x51, 0x1f, 0x62, 0xfc, 0xd7, 0x14, 0x8a, 0xad, 0xe1, 0x97, + 0x86, 0xb7, 0x76, 0xd8, 0x3a, 0x26, 0x5e, 0xcd, 0xbd, 0x61, 0xf4, 0xc4, 0x3e, 0x45, 0x4c, 0xd6, + 0x45, 0x67, 0xd6, 0xe7, 0x35, 0x73, 0xdf, 0xec, 0x8b, 0x3c, 0x5f, 0xc8, 0xe4, 0x63, 0x3f, 0xcf, + 0xf3, 0x65, 0xb8, 0xb0, 0x3e, 0x08, 0xbd, 0x40, 0x78, 0x29, 0xf5, 0x2f, 0x89, 0xfa, 0x64, 0x58, + 0x8c, 0x21, 0x85, 0x5f, 0x22, 0x72, 0x5f, 0xcc, 0x50, 0xd3, 0x9c, 0xec, 0xa7, 0xe3, 0x6f, 0x52, + 0x4d, 0x3f, 0xcb, 0xea, 0x4f, 0xf9, 0xbf, 0xc0, 0xb4, 0xb1, 0xd6, 0x1c, 0xb4, 0x4c, 0xfe, 0xf6, + 0x7b, 0x45, 0x7e, 0x19, 0x96, 0x0c, 0x57, 0x66, 0x08, 0xbf, 0x5f, 0xe4, 0x17, 0x61, 0x71, 0x4d, + 0xaf, 0xa3, 0x99, 0x2b, 0xf6, 0x07, 0x45, 0x1c, 0x0c, 0x9d, 0xdc, 0xfd, 0x61, 0x91, 0x2f, 0xc1, + 0x7c, 0x5a, 0x29, 0xc2, 0x19, 0xff, 0x09, 0xa9, 0x4e, 0x49, 0xec, 0x8f, 0x8a, 0x37, 0xff, 0x26, + 0x07, 0x8b, 0xa3, 0x48, 0x8e, 0x53, 0x1a, 0xc8, 0xb0, 0xa3, 0xf4, 0xed, 0xf0, 0x05, 0xa8, 0xc5, + 0x5d, 0x19, 0x29, 0x6a, 0x52, 0x2d, 0x3d, 0xa4, 0x33, 0x37, 0x9d, 0xf6, 0xea, 0x22, 0x9b, 0xbe, + 0xb5, 0xa0, 0xdc, 0x0e, 0xab, 0xe3, 0x3a, 0x79, 0xf8, 0xf9, 0x62, 0x1a, 0x65, 0xd3, 0xd9, 0x5f, + 0x72, 0xb6, 0xc2, 0xca, 0xc8, 0x3a, 0x88, 0x02, 0x1d, 0x6d, 0x8b, 0x9e, 0xeb, 0x07, 0xfa, 0x1a, + 0x68, 0xbf, 0x8b, 0x19, 0x6d, 0x4d, 0x53, 0xe5, 0x67, 0xbe, 0xbe, 0x70, 0x69, 0xfc, 0xa6, 0x87, + 0xfd, 0x48, 0x4d, 0x92, 0x89, 0xf5, 0x9b, 0xff, 0xf4, 0xf5, 0xb5, 0xdc, 0x57, 0x5f, 0x5f, 0xcb, + 0xfd, 0xe7, 0xd7, 0xd7, 0x72, 0x5f, 0x7e, 0x73, 0x6d, 0xee, 0xab, 0x6f, 0xae, 0xcd, 0xfd, 0xe2, + 0x9b, 0x6b, 0x73, 0x9f, 0xb0, 0xf1, 0x7f, 0x90, 0xb6, 0xca, 0xb4, 0xd9, 0xee, 0xfc, 0x5f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x81, 0x23, 0x1b, 0x3b, 0x5c, 0x3a, 0x00, 0x00, } func (m *SmartBlockSnapshotBase) Marshal() (dAtA []byte, err error) { @@ -7319,6 +7334,16 @@ func (m *BlockContentDataview) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.IsCollection { + i-- + if m.IsCollection { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x70 + } if len(m.ObjectOrders) > 0 { for iNdEx := len(m.ObjectOrders) - 1; iNdEx >= 0; iNdEx-- { { @@ -10515,6 +10540,9 @@ func (m *BlockContentDataview) Size() (n int) { n += 1 + l + sovModels(uint64(l)) } } + if m.IsCollection { + n += 2 + } return n } @@ -14819,6 +14847,26 @@ func (m *BlockContentDataview) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 14: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsCollection", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowModels + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsCollection = bool(v != 0) default: iNdEx = preIndex skippy, err := skipModels(dAtA[iNdEx:]) diff --git a/pkg/lib/pb/model/protos/models.proto b/pkg/lib/pb/model/protos/models.proto index b8d3bbebc..c97911b4c 100644 --- a/pkg/lib/pb/model/protos/models.proto +++ b/pkg/lib/pb/model/protos/models.proto @@ -422,6 +422,7 @@ message Block { NotAllIn = 14; ExactIn = 15; NotExactIn = 16; + Exists = 17; } enum QuickOption {