updateTileDocument
A helper method that updates an existing Ceramic TileDocument.
How to use?
This method will not await for the stream to be indexed by Orbis Nodes before resolving.
const res = await orbis.updateTileDocument(stream_id, content, tags, schema, family = "orbis");Parameters
stream_id-stringstream ID to updatecontent-objectcontaining contents of the JSON to be committed (must be serializable)tags-arrayoptionalan array of tags to apply to this stream (strings)schema-stringoptionalstream ID of the schema for the streamfamily-stringoptionalfamily of which this stream is a part of"orbis"by default
Returns
{
status: 200,
doc: "k...",
result: "Success updating TileDocument."
}