fix: type errors

This commit is contained in:
John Yeo
2026-03-03 10:16:32 +00:00
parent 731f65c620
commit a0d26d85a3

View File

@@ -1,10 +1,9 @@
import { batchUpdateCustomerProducts } from "./batchUpdateCustomerProducts";
import { getByExternalIds } from "./getByExternalIds";
import { fetchCustomerProductFreeTrials } from "./fetchCustomerProductFreeTrials";
import { getByExternalIds } from "./getByExternalIds";
export const customerProductRepo = {
batchUpdate: batchUpdateCustomerProducts,
getByExternalIds,
batchUpdate: batchUpdateCustomerProducts,
fetchFreeTrials: fetchCustomerProductFreeTrials,
};