reshuffle-serviceprime-connector
v1.0.0
Published
A Reshuffle Service Prime connector
Downloads
3
Maintainers
Readme
BEGIN - TO DELETE TILL END
THIS IS A TEMPLATE REPO FOR NEW RESHUFFLE CONNECTORS
Create a new connector repo from this template using this link https://github.com/reshufflehq/reshuffle-template-connector/generate
Clone the repo locally
Rename all occurrences of CONNECTOR_NAME
npm installnpm run build:watchImplement your events/actions in
src/index.tsnpm run lintPush your code
Go to https://app.circleci.com/projects/project-dashboard/github/reshufflehq/ a. You should see your new connector repo b. click on
Set Up Projectfor the repo c. click onUse Existing Configd. click onStart BuildingIf circle CI checks are all green, you are all set!
// Keep documentation template below
END
reshuffle-CONNECTOR_NAME-connector
Reshuffle CONNECTOR_NAME Connector
This connector provides .
Configuration Options:
interface _CONNECTOR_NAME_ConnectorConfigOptions {
foo: string // foo description
bar?: number // bar description
}Connector events
event1 description
The connector fires this event when ...
event2 description
The connector fires this event when ...
Connector actions
action1
The connector provides action1 which ...
action2
The connector provides action2 which ...
