Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 53 additions & 53 deletions plugins/payments/manifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,17 @@
{
"name": "workflow-plugin-payments",
"version": "0.4.8",
"description": "Multi-provider payment processing plugin (Stripe, PayPal)",
"assets": {
"config": true,
"ui": false
},
"author": "GoCodeAlone",
"license": "Apache-2.0",
"type": "external",
"tier": "core",
"private": false,
"minEngineVersion": "0.53.0",
"required_secrets": [
{
"name": "STRIPE_SECRET_KEY",
"sensitive": true,
"description": "Stripe secret API key (provider: stripe). PayPal deployments instead provision PAYPAL_CLIENT_ID + PAYPAL_CLIENT_SECRET. Referenced as ${STRIPE_SECRET_KEY}.",
"prompt": "Stripe secret key"
},
{
"name": "STRIPE_WEBHOOK_SECRET",
"sensitive": true,
"description": "Stripe webhook signing secret; required for step.payment_webhook_verify. Referenced as ${STRIPE_WEBHOOK_SECRET}.",
"prompt": "Stripe webhook signing secret"
}
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-payments",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-payments",
"keywords": [
"payment",
"stripe",
"paypal",
"billing",
"subscription",
"marketplace"
],
"capabilities": {
"cliCommands": [
{
"description": "Payment provider operations (webhook ensure, …)",
"flagsPassthrough": true,
"name": "payments"
}
],
"configProvider": false,
"moduleTypes": [
"payments.provider"
Expand All @@ -56,45 +35,66 @@
"step.payment_method_attach",
"step.payment_method_list"
],
"triggerTypes": [],
"cliCommands": [
{
"name": "payments",
"description": "Payment provider operations (webhook ensure, …)",
"flags_passthrough": true
}
]
},
"assets": {
"ui": false,
"config": true
"triggerTypes": []
},
"category": "payments",
"description": "Multi-provider payment processing plugin (Stripe, PayPal)",
"downloads": [
{
"arch": "amd64",
"os": "darwin",
"sha256": "ae9bfd6fe3096b69109b5aa67f589a699acada5678abfa91a74264bd9549b85a",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.8/workflow-plugin-payments-darwin-amd64.tar.gz"
"sha256": "ef12745bb225ebb1b617abd87da9c60f3bbe6046d969b881624e52316190f7c2",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.9/workflow-plugin-payments-darwin-amd64.tar.gz"
},
{
"arch": "arm64",
"os": "darwin",
"sha256": "a54bb7c162e409edabf5a6b84c3abc5b75a27f1c7e8d9ebc5c9ee24bbbe55a29",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.8/workflow-plugin-payments-darwin-arm64.tar.gz"
"sha256": "136fa7d0519e2c5aedf340b0ee530d317e2579749918740124aaf9b04473deed",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.9/workflow-plugin-payments-darwin-arm64.tar.gz"
},
{
"arch": "amd64",
"os": "linux",
"sha256": "97c17549fc9257de6a315c2679036aba17a4f9cb107de0ee7e635d629fc09425",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.8/workflow-plugin-payments-linux-amd64.tar.gz"
"sha256": "815cda79a94363205e1a20b6d281d30937061c1b2b826f12ab7a4e18b78cf6b5",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.9/workflow-plugin-payments-linux-amd64.tar.gz"
},
{
"arch": "arm64",
"os": "linux",
"sha256": "620c13921a54716718a80d3d2349c17acf26abdb1ea00eb6faa2183b1d067b78",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.8/workflow-plugin-payments-linux-arm64.tar.gz"
"sha256": "cd007a3d51e1aebd73274749f81fac6a150c2aa444cdfee1f7493f64acab9013",
"url": "https://github.com/GoCodeAlone/workflow-plugin-payments/releases/download/v0.4.9/workflow-plugin-payments-linux-arm64.tar.gz"
}
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-payments",
"keywords": [
"payment",
"stripe",
"paypal",
"billing",
"subscription",
"marketplace"
],
"license": "Apache-2.0",
"minEngineVersion": "0.53.0",
"name": "workflow-plugin-payments",
"private": false,
"repository": "https://github.com/GoCodeAlone/workflow-plugin-payments",
"required_secrets": [
{
"description": "Stripe secret API key (provider: stripe). PayPal deployments instead provision PAYPAL_CLIENT_ID + PAYPAL_CLIENT_SECRET. Referenced as ${STRIPE_SECRET_KEY}.",
"name": "STRIPE_SECRET_KEY",
"prompt": "Stripe secret key",
"sensitive": true
},
{
"description": "Stripe webhook signing secret; required for step.payment_webhook_verify. Referenced as ${STRIPE_WEBHOOK_SECRET}.",
"name": "STRIPE_WEBHOOK_SECRET",
"prompt": "Stripe webhook signing secret",
"sensitive": true
}
],
"status": "verified",
"category": "payments"
"tier": "core",
"type": "external",
"version": "0.4.9"
}