Type alias NodeResponse

NodeResponse: {
    ceramicStream?: string;
    cid: string;
    createdAt: string;
    deletedAt?: string;
    dpidAlias?: number;
    id: number;
    isDeleted: boolean;
    isFeatured: boolean;
    manifestData: ResearchObjectV1;
    manifestDocumentId: string;
    manifestUrl: string;
    ownerId: number;
    replicationFactor: number;
    state: string;
    title: string;
    updatedAt: string;
    uuid: string;
}

Full state of a draft node as the backend is aware.

Note that the data drive in the manifest, and hence the manifest CID, may not reflect the actual drive state until the node is published (or prePublishDraftNode is called).

Type declaration

  • Optional ceramicStream?: string
  • cid: string
  • createdAt: string
  • Optional deletedAt?: string
  • Optional dpidAlias?: number
  • id: number
  • isDeleted: boolean
  • isFeatured: boolean
  • manifestData: ResearchObjectV1
  • manifestDocumentId: string
  • manifestUrl: string
  • ownerId: number
  • replicationFactor: number
  • state: string
  • title: string
  • updatedAt: string
  • uuid: string

Generated using TypeDoc