@schematichq/schematic-components 2.19.0 → 2.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/schematic-components.browser.cjs.js +467 -197
- package/dist/schematic-components.browser.esm.js +467 -197
- package/dist/schematic-components.cjs.js +467 -197
- package/dist/schematic-components.d.ts +307 -1
- package/dist/schematic-components.esm.js +467 -197
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -59,6 +59,7 @@ const config = {
|
|
|
59
59
|
payInAdvanceQuantities: { // pre-fill pay-in-advance quantities, keyed by feature id (optional)
|
|
60
60
|
feat_cns2asuKAG2: 3, // "feat_cns2asuKAG2" is a feature id, 3 is the quantity
|
|
61
61
|
},
|
|
62
|
+
promoCode: 'SUMMER20', // pre-apply a Stripe promotion code (optional)
|
|
62
63
|
skipped: {
|
|
63
64
|
planStage: true, // if true, skip Plan selection
|
|
64
65
|
addOnStage: true, // if true, skip Add-on selection
|
|
@@ -76,6 +77,12 @@ pricing; entries for other (or unknown) features are ignored. Combine it with
|
|
|
76
77
|
`skipped.usageStage` / `skipped.addOnUsageStage` to send the customer straight to
|
|
77
78
|
the final checkout step with the quantities already set.
|
|
78
79
|
|
|
80
|
+
`promoCode` pre-applies a discount to the checkout. It expects a Stripe
|
|
81
|
+
[promotion code](https://docs.stripe.com/billing/subscriptions/coupons) — the
|
|
82
|
+
customer-facing code such as `SUMMER20`, not the underlying coupon id. The
|
|
83
|
+
discount is applied on load, so the previewed charges reflect it and it ships
|
|
84
|
+
with the final checkout request.
|
|
85
|
+
|
|
79
86
|
The Plans and Add-ons available to the checkout flows must be live in your
|
|
80
87
|
Schematic account [Catalog configuration](https://docs.schematichq.com/catalog/overview).
|
|
81
88
|
|