Modules@robinpath/confluence

@robinpath/confluence

0.1.0Public

Confluence module for RobinPath.

@robinpath/confluence

Confluence module for RobinPath.

Category Functions Auth License

Why use this module?

The confluence module lets you:

  • listSpaces
  • getSpace
  • createSpace
  • listPages
  • getPage

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/confluence

Quick Start

1. Set up credentials

confluence.setCredentials "your-credentials"

2. listSpaces

confluence.listSpaces

Available Functions

FunctionDescription
confluence.setCredentialsConfigure confluence credentials.
confluence.listSpaceslistSpaces
confluence.getSpacegetSpace
confluence.createSpacecreateSpace
confluence.listPageslistPages
confluence.getPagegetPage
confluence.createPagecreatePage
confluence.updatePageupdatePage
confluence.deletePagedeletePage
confluence.listPageChildrenlistPageChildren
confluence.getPageByTitlegetPageByTitle
confluence.searchContentsearchContent
confluence.listCommentslistComments
confluence.addCommentaddComment
confluence.listAttachmentslistAttachments
confluence.getLabelsgetLabels
confluence.addLabeladdLabel
confluence.removeLabelremoveLabel
confluence.getPageHistorygetPageHistory

Examples

listSpaces

confluence.listSpaces

getSpace

confluence.getSpace

createSpace

confluence.createSpace

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/confluence";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  confluence.setCredentials "your-credentials"
  confluence.listSpaces
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.0latestyesterday
Install
$ robinpath install @robinpath/confluence
Version0.1.0
LicenseMIT
Unpacked Size4.7 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

productivity