This file contains hidden or 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
| import Database, { Statement, Options } from "better-sqlite3"; | |
| import { Request, Response } from "node-fetch"; | |
| interface Record { | |
| url: string; | |
| status: number; | |
| statusText: string; | |
| body: Buffer; | |
| headers: string; | |
| insertTime: number; |
This file contains hidden or 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
| #!/bin/sh | |
| # bash script for exporting subscriber data from stripe, using the stripe cli: | |
| # https://docs.stripe.com/stripe-cli | |
| # make sure you sign in first: | |
| # https://docs.stripe.com/stripe-cli/install#login-account | |
| echo "id,name,shipping.name,shipping.address.city,shipping.address.country,shipping.address.line1,shipping.address.line2,shipping.address.postal_code,shipping.address.state,subscriptions.count,subscriptions.status,subscriptions.plan.product" | |
| STARTING_AFTER="" |
OlderNewer