flowgrid-sdk 1.0.0 → 1.0.2
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 +34 -0
- package/dist/flowgrid.min.js +1 -1
- package/dist/flowgrid.min.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/client/ftrpc.d.ts +100 -11
- package/dist/lib/features/core/experiment.d.ts +186 -61
- package/dist/lib/features/core/feature-flag.d.ts +1 -16
- package/dist/lib/features/core/track-feature.d.ts +18 -36
- package/dist/lib/features/ecommerce/checkout.d.ts +1 -1
- package/dist/lib/features/ecommerce/inventory.d.ts +0 -2
- package/dist/lib/types/ecommerce.d.ts +2 -2
- package/package.json +1 -1
|
@@ -108,8 +108,8 @@ export interface ShippingInfo {
|
|
|
108
108
|
export interface PaymentInfo {
|
|
109
109
|
/** Payment method (e.g., "credit_card", "paypal", "apple_pay") */
|
|
110
110
|
method: string;
|
|
111
|
-
/** Payment provider */
|
|
112
|
-
provider?: string;
|
|
111
|
+
/** Payment provider (e.g., "stripe", "paypal", "adyen") */
|
|
112
|
+
provider?: "stripe" | "paypal" | "adyen" | "checkout_com" | "worldpay" | "braintree" | "square" | "apple_pay" | "google_pay" | "samsung_pay" | "amazon_pay" | "klarna" | "afterpay" | "affirm" | "zip" | "alipay" | "wechat_pay" | "razorpay" | "paystack" | "flutterwave" | "mercado_pago" | "coinbase_commerce" | "bitpay" | "other" | string;
|
|
113
113
|
/** Last 4 digits of card (if applicable) */
|
|
114
114
|
cardLast4?: string;
|
|
115
115
|
/** Card brand (if applicable) */
|
package/package.json
CHANGED