Notes

2/1/2024 - 2:44:47 AM

Notes

Constructors

Methods

  • Add a participant.

    Parameters

    • param0: {
          contactUUID: string;
          permissionsWrite: boolean;
          publicKey: string;
          uuid: string;
      }

    Returns Promise<void>

    2/20/2024 - 1:39:20 AM

  • Archive a note.

    Parameters

    • param0: { uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:48:44 AM

  • Change note type.

    Parameters

    • param0: { newType: NoteType; uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:39:02 AM

  • Fetch note content.

    Parameters

    • param0: { uuid: string }

    Returns Promise<
        {
            content: string;
            editedTimestamp: number;
            editorId: number;
            preview: string;
            type: NoteType;
        },
    >

    2/20/2024 - 12:32:49 AM

  • Create an empty note.

    Parameters

    • param0: { title?: string; uuid?: string }

    Returns Promise<string>

    2/19/2024 - 11:55:14 PM

  • Create a tag.

    Parameters

    • param0: { name: string }

    Returns Promise<string>

    2/20/2024 - 3:21:37 AM

  • Delete a note.

    Parameters

    • param0: { uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:48:38 AM

  • Delete a tag.

    Parameters

    • param0: { uuid: string }

    Returns Promise<void>

    2/20/2024 - 4:03:05 AM

  • Duplicate a note.

    Parameters

    • param0: { uuid: string }

    Returns Promise<string>

    2/20/2024 - 1:40:38 AM

  • Edit a note.

    Parameters

    • param0: { content: string; type: NoteType; uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:43:56 AM

  • Edit a note's title.

    Parameters

    • param0: { title: string; uuid: string }

    Returns Promise<void>

    4/1/2024 - 5:46:41 PM

  • Toggle the favorite status of a note.

    Parameters

    • param0: { favorite: boolean; uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:52:30 AM

  • Fetch a note.

    Parameters

    • param0: { uuid: string }

    Returns Promise<Note>

    2/20/2024 - 2:07:16 AM

  • Fetch a content history of a note.

    Parameters

    • param0: { uuid: string }

    Returns Promise<NoteHistory[]>

    2/20/2024 - 2:03:38 AM

  • Get the note encryption key from owner metadata.

    Parameters

    • param0: { uuid: string }

    Returns Promise<string>

    2/20/2024 - 12:26:15 AM

  • Set permissions for a participant.

    Parameters

    • param0: { permissionsWrite: boolean; userId: number; uuid: string }

    Returns Promise<void>

    2/20/2024 - 4:05:31 AM

  • Toggle the pinned status of a note.

    Parameters

    • param0: { pin: boolean; uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:53:31 AM

  • Fetch all notes ordered by last edit timestamp.

    Returns Promise<Note[]>

    2/20/2024 - 12:51:06 AM

  • Remove a participant.

    Parameters

    • param0: { userId: number; uuid: string }

    Returns Promise<void>

    2/20/2024 - 4:03:59 AM

  • Rename a tag.

    Parameters

    • param0: { name: string; uuid: string }

    Returns Promise<void>

    2/20/2024 - 4:01:29 AM

  • Restore a note from the archive or trash.

    Parameters

    • param0: { uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:52:46 AM

  • Restore a note from history.

    Parameters

    • param0: { id: number; uuid: string }

    Returns Promise<void>

    2/20/2024 - 4:46:26 AM

  • Add a tag to a note.

    Parameters

    • param0: { tag: string; uuid: string }

    Returns Promise<void>

    2/20/2024 - 2:38:49 AM

  • Toggle the favorite status of a tag.

    Parameters

    • param0: { favorite: boolean; uuid: string }

    Returns Promise<void>

    2/20/2024 - 4:02:16 AM

  • Trash a note.

    Parameters

    • param0: { uuid: string }

    Returns Promise<void>

    2/20/2024 - 12:48:48 AM

  • Remove a tag from a note.

    Parameters

    • param0: { tag: string; uuid: string }

    Returns Promise<void>

    2/20/2024 - 2:38:54 AM

MMNEPVFCICPMFPCPTTAAATR