chore: Update modules deps (#9286)

This commit is contained in:
Adrien de Peretti
2024-09-26 11:14:35 +05:30
committed by GitHub
parent 11d8264062
commit e096feb7d5
518 changed files with 1115 additions and 957 deletions
@@ -1,4 +1,4 @@
import { CampaignBudgetType } from "@medusajs/utils"
import { CampaignBudgetType } from "@medusajs/framework/utils"
export const defaultCampaignsData = [
{
@@ -1,4 +1,4 @@
import { CreateCampaignDTO } from "@medusajs/types"
import { CreateCampaignDTO } from "@medusajs/framework/types"
import { SqlEntityManager } from "@mikro-orm/postgresql"
import { Campaign } from "@models"
import { defaultCampaignsData } from "./data"
@@ -1,5 +1,5 @@
import { CreatePromotionDTO } from "@medusajs/types"
import { PromotionType } from "@medusajs/utils"
import { CreatePromotionDTO } from "@medusajs/framework/types"
import { PromotionType } from "@medusajs/framework/utils"
export const defaultPromotionsData: CreatePromotionDTO[] = [
{
@@ -2,8 +2,8 @@ import {
CreatePromotionDTO,
IPromotionModuleService,
PromotionDTO,
} from "@medusajs/types"
import { isPresent } from "@medusajs/utils"
} from "@medusajs/framework/types"
import { isPresent } from "@medusajs/framework/utils"
import { SqlEntityManager } from "@mikro-orm/postgresql"
import { Promotion } from "@models"
import { defaultPromotionsData } from "./data"