@robinpath/confluence
v0.1.1
Published
Confluence module for RobinPath.
Readme
@robinpath/confluence
Confluence module for RobinPath.
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/confluenceQuick Start
1. Set up credentials
confluence.setCredentials "your-credentials"2. listSpaces
confluence.listSpacesAvailable Functions
| Function | Description |
|----------|-------------|
| confluence.setCredentials | Configure confluence credentials. |
| confluence.listSpaces | listSpaces |
| confluence.getSpace | getSpace |
| confluence.createSpace | createSpace |
| confluence.listPages | listPages |
| confluence.getPage | getPage |
| confluence.createPage | createPage |
| confluence.updatePage | updatePage |
| confluence.deletePage | deletePage |
| confluence.listPageChildren | listPageChildren |
| confluence.getPageByTitle | getPageByTitle |
| confluence.searchContent | searchContent |
| confluence.listComments | listComments |
| confluence.addComment | addComment |
| confluence.listAttachments | listAttachments |
| confluence.getLabels | getLabels |
| confluence.addLabel | addLabel |
| confluence.removeLabel | removeLabel |
| confluence.getPageHistory | getPageHistory |
Examples
listSpaces
confluence.listSpacesgetSpace
confluence.getSpacecreateSpace
confluence.createSpaceIntegration 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
@robinpath/google-sheets— Google Sheets module for complementary functionality@robinpath/google-calendar— Google Calendar module for complementary functionality@robinpath/google-contacts— Google Contacts module for complementary functionality@robinpath/google-forms— Google Forms module for complementary functionality@robinpath/gmail— Gmail module for complementary functionality
License
MIT
