// the schema
export const MarketplaceIntegrationType = pgEnum('MarketplaceIntegrationType', [
'Amazon',
'Walmart',
'Etsy',
'Shopify'
]);
type: MarketplaceIntegrationType('type').notNull()
// the code
let integrationType: typeof marketplaceIntegrations.$inferSelect.type;
// the schema
export const MarketplaceIntegrationType = pgEnum('MarketplaceIntegrationType', [
'Amazon',
'Walmart',
'Etsy',
'Shopify'
]);
type: MarketplaceIntegrationType('type').notNull()
// the code
let integrationType: typeof marketplaceIntegrations.$inferSelect.type;