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 { batchUpdateCustomerProducts } from "./batchUpdateCustomerProducts";
import { getByExternalIds } from "./getByExternalIds";
import { fetchCustomerProductFreeTrials } from "./fetchCustomerProductFreeTrials"; import { fetchCustomerProductFreeTrials } from "./fetchCustomerProductFreeTrials";
import { getByExternalIds } from "./getByExternalIds";
export const customerProductRepo = { export const customerProductRepo = {
batchUpdate: batchUpdateCustomerProducts, batchUpdate: batchUpdateCustomerProducts,
getByExternalIds, getByExternalIds,
batchUpdate: batchUpdateCustomerProducts,
fetchFreeTrials: fetchCustomerProductFreeTrials, fetchFreeTrials: fetchCustomerProductFreeTrials,
}; };