Wire zappier-edge into the live stack and add billing department APIs
Some checks are pending
offline / test (push) Waiting to run
Some checks are pending
offline / test (push) Waiting to run
Fleet now spawns the real zappier and middleware processes. Metered timestamp/receipt/hash calls proxy to middleware when ZAPPIER_UPSTREAM is set. CS credits, sales per-customer pricing, and QuickBooks export are separate repos plugged into zappier-edge admin.
This commit is contained in:
parent
65bfa544b2
commit
a1a5b957fd
44 changed files with 822 additions and 18 deletions
|
|
@ -71,6 +71,9 @@ SECTIONS = [
|
|||
("packages/zappier/docs/CUSTOMER-PORTAL.md", "Signup, 2FA, API keys, reloads"),
|
||||
("packages/zappier/docs/ACCOUNTING.md", "Invoices, PO billing, reports"),
|
||||
("packages/zappier/docs/DEVELOPER.md", "Developer reference"),
|
||||
("packages/zappier-customer-service/README.md", "Customer-service credits API"),
|
||||
("packages/zappier-sales-pricing/README.md", "Sales per-customer pricing API"),
|
||||
("packages/zappier-accounting-export/README.md", "QuickBooks / accounting export"),
|
||||
],
|
||||
),
|
||||
(
|
||||
|
|
@ -323,6 +326,9 @@ def main() -> None:
|
|||
"verae-nats-process",
|
||||
"docs-master",
|
||||
"verae-ops",
|
||||
"zappier-customer-service",
|
||||
"zappier-sales-pricing",
|
||||
"zappier-accounting-export",
|
||||
):
|
||||
pkg_root = ROOT / "packages" / pkg
|
||||
if pkg in {"zapier-user-docs", "overview", "docs-master", "verae-ops"}:
|
||||
|
|
@ -481,6 +487,9 @@ def main() -> None:
|
|||
("overview", "High-level system overview"),
|
||||
("verae-nats-process", "Template for a new NATS address"),
|
||||
("verae-ops", "Install, Docker, Proxmox, VMs, dedicated hardware"),
|
||||
("zappier-customer-service", "CS credits"),
|
||||
("zappier-sales-pricing", "Sales per-customer pricing"),
|
||||
("zappier-accounting-export", "QuickBooks export"),
|
||||
]
|
||||
git_lis = "".join(
|
||||
f'<li><a href="https://git.georgelambert.org/marchon/{name}">{name}</a> '
|
||||
|
|
|
|||
|
|
@ -40,6 +40,9 @@ REPO_READMES = [
|
|||
"zapier-user-docs",
|
||||
"docs-master",
|
||||
"verae-nats-process",
|
||||
"zappier-customer-service",
|
||||
"zappier-sales-pricing",
|
||||
"zappier-accounting-export",
|
||||
]
|
||||
|
||||
SKIP_PARTS = {"test", "tests", "node_modules", "dist"}
|
||||
|
|
|
|||
|
|
@ -50,6 +50,9 @@ create verae-fleet "Service catalog, replica floors, monitor, restart, pause"
|
|||
create overview "High-level system overview, NATS cluster, uptime, docs index"
|
||||
create verae-nats-process "Template JetStream worker for a new verae.* address"
|
||||
create verae-ops "Install, Docker, Proxmox, VMs, dedicated hardware, service linking"
|
||||
create zappier-customer-service "Customer-service prepaid credit adjustments"
|
||||
create zappier-sales-pricing "Sales per-customer pricing"
|
||||
create zappier-accounting-export "QuickBooks IIF and accounting CSV export"
|
||||
|
||||
push_dir "$ROOT/packages/zappier" zappier-edge
|
||||
push_dir "$ROOT/packages/verae-zapier-middleware" verae-middleware
|
||||
|
|
@ -66,5 +69,8 @@ push_dir "$ROOT/packages/verae-fleet" verae-fleet
|
|||
push_dir "$ROOT/packages/overview" overview
|
||||
push_dir "$ROOT/packages/verae-nats-process" verae-nats-process
|
||||
push_dir "$ROOT/packages/verae-ops" verae-ops
|
||||
push_dir "$ROOT/packages/zappier-customer-service" zappier-customer-service
|
||||
push_dir "$ROOT/packages/zappier-sales-pricing" zappier-sales-pricing
|
||||
push_dir "$ROOT/packages/zappier-accounting-export" zappier-accounting-export
|
||||
|
||||
echo ALL_MODULE_REPOS_PUSHED
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue