Manifest
Use this syntax to import your project connectors
Setup
Maintenance
JSON Structure
{
"title" : string // title of your connector
"version" : string // version of your connector
"description": string // description of your connector
"backend_manifest":{
"package_name": string //backend package name
"git_url": string // backend git url
},
"actions_manifest" : [
{
"path" : string //path to your file
"name" : string //name of your file containing your actions
}
],
"events_manifest" : [
{
"path" : string //path to your file
"name" : string //name of your file containing your actions
}
],
"scripts_manifest" : [
{
"path" : string //path to your file
"name" : string //name of your file containing your actions
}
],
"queries_manifest" : [
{
"path" : string //path to your file
"name" : string //name of your file containing your actions
}
],
"components_manifest" : [
{
"path" : string //path to your file
"name" : string //name of your file containing your actions
}
],
"dependencies": [
{
"alias" : "axios",
"version" : "^0.27.2",
"path": "axios",
"packageName" : "axios"
}
]
}Last updated