Update imports batch 33

cgen-822fbdccd5c344f7bfdf100bb9469a00
This commit is contained in:
Builder.io 2025-11-16 05:03:49 +00:00
parent 932b4bd491
commit d0ff988e32
5 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import { getAdminClient } from "../../_supabase";
import { getAdminClient } from "../../_supabase.js";
export default async function handler(req: VercelRequest, res: VercelResponse) {
if (req.method !== "GET") {

View file

@ -1,5 +1,5 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import { getAdminClient } from "../../_supabase";
import { getAdminClient } from "../../_supabase.js";
export default async function handler(req: VercelRequest, res: VercelResponse) {
const admin = getAdminClient();

View file

@ -1,6 +1,6 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import Stripe from "stripe";
import { getAdminClient } from "../../_supabase";
import { getAdminClient } from "../../_supabase.js";
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY || "", {
apiVersion: "2024-11-20",

View file

@ -1,6 +1,6 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import Stripe from "stripe";
import { getAdminClient } from "../../_supabase";
import { getAdminClient } from "../../_supabase.js";
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY || "", {
apiVersion: "2024-11-20",

View file

@ -1,6 +1,6 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import Stripe from "stripe";
import { getAdminClient } from "../../_supabase";
import { getAdminClient } from "../../_supabase.js";
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY || "", {
apiVersion: "2024-11-20",