This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get existing payment links ✅ | |
// Get existing products ✅ | |
// Check if any existing product does not have a payment link | |
// Create new payment links | |
// Update yaml and redirect files? | |
const API_KEY = // Temporary adding api key to test locally here | |
const BASE_API_URL = "https://api.stripe.com/v1" | |
const PRODUCTS_URL = "/products" | |
const PAYMENT_LINKS_URL = "/payment_links" |