@robinpath/webflow
v0.1.1
Published
Webflow module for RobinPath.
Downloads
137
Readme
@robinpath/webflow
Webflow module for RobinPath.
Why use this module?
The webflow module lets you:
- listSites
- getSite
- publishSite
- listCollections
- getCollection
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/webflowQuick Start
1. Set up credentials
webflow.setCredentials "your-credentials"2. listSites
webflow.listSitesAvailable Functions
| Function | Description |
|----------|-------------|
| webflow.setCredentials | Configure webflow credentials. |
| webflow.listSites | listSites |
| webflow.getSite | getSite |
| webflow.publishSite | publishSite |
| webflow.listCollections | listCollections |
| webflow.getCollection | getCollection |
| webflow.listCollectionItems | listCollectionItems |
| webflow.getCollectionItem | getCollectionItem |
| webflow.createCollectionItem | createCollectionItem |
| webflow.updateCollectionItem | updateCollectionItem |
| webflow.deleteCollectionItem | deleteCollectionItem |
| webflow.publishCollectionItems | publishCollectionItems |
| webflow.listFormSubmissions | listFormSubmissions |
| webflow.listDomains | listDomains |
| webflow.getUser | getUser |
| webflow.listUsers | listUsers |
| webflow.listOrders | listOrders |
| webflow.getOrder | getOrder |
| webflow.updateOrder | updateOrder |
Examples
listSites
webflow.listSitesgetSite
webflow.getSitepublishSite
webflow.publishSiteIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/webflow";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
webflow.setCredentials "your-credentials"
webflow.listSites
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/json— JSON module for complementary functionality
License
MIT
