Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/scripts/generate-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SOURCE_BRANCH="${1:-$(git branch --show-current)}"
DATE_FILTER="${2:-merged:>=$(date -u -v-30d +%Y-%m-%d 2>/dev/null || date -u -d '30 days ago' +%Y-%m-%d)}"

# Repo is set per-repo when this file is pushed (placeholder replaced by upload script)
REPO="chargebee/cb-marketplace-sample-app"
REPO="chargebee/sample-custom-apps"

echo "🔍 Searching for PRs merged into $SOURCE_BRANCH..."

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Marketplace Sample Apps
# Sample Custom Apps

This repository contains example serverless marketplace apps.
This repository contains sample apps for building custom apps using the [chargebee-apps](https://www.npmjs.com/package/@chargebee/chargebee-apps) CLI.

## Quick start

Expand All @@ -18,4 +18,4 @@ npm install -g @chargebee/chargebee-apps
chargebee-apps run <app_dir>
```

5. Open `http://localhost:15000` and trigger events using the provided `test_data`.
5. Open `http://localhost:15000` and trigger events using the provided `test_data`.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This sample app listens for Chargebee `customer_created` events and creates a lead/contact in HubSpot using the Contacts API.

It mirrors `crm_lead_on_customer_created_sample_app` but uses the **section-based iparam structure** introduced in marketplace v2.
It mirrors `crm_lead_on_customer_created_sample_app` but uses the **section-based iparam structure**.

## What this app does

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Type definitions for Chargebee Marketplace applications
* This file provides TypeScript types for common structures used in marketplace applications
* Type definitions for chargebee-apps applications
* This file provides TypeScript types for common structures used in Chargebee apps
*/

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Type definitions for Chargebee Marketplace applications
* This file provides TypeScript types for common structures used in marketplace applications
* Type definitions for chargebee-apps applications
* This file provides TypeScript types for common structures used in Chargebee apps
*/

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Type definitions for Chargebee Marketplace applications
* This file provides TypeScript types for common structures used in marketplace applications
* Type definitions for chargebee-apps applications
* This file provides TypeScript types for common structures used in Chargebee apps
*/

/**
Expand Down
Loading