chore: joiner config entity property (#9084)

This commit is contained in:
Carlos R. L. Rodrigues
2024-09-11 06:25:25 -03:00
committed by GitHub
parent 28dc8d4d17
commit fdd0543011
80 changed files with 464 additions and 294 deletions
@@ -26,7 +26,7 @@ medusaIntegrationTestRunner({
appContainer
)
const address = await customerModuleService.createAddresses({
const address = await customerModuleService.createCustomerAddresses({
customer_id: customer.id,
first_name: "John",
last_name: "Doe",
@@ -57,7 +57,7 @@ medusaIntegrationTestRunner({
first_name: "Jane",
last_name: "Doe",
})
const address = await customerModuleService.createAddresses({
const address = await customerModuleService.createCustomerAddresses({
customer_id: otherCustomer.id,
first_name: "John",
last_name: "Doe",
@@ -26,7 +26,7 @@ medusaIntegrationTestRunner({
appContainer
)
await customerModuleService.createAddresses([
await customerModuleService.createCustomerAddresses([
{
first_name: "Test",
last_name: "Test",
@@ -26,7 +26,7 @@ medusaIntegrationTestRunner({
appContainer
)
const address = await customerModuleService.createAddresses({
const address = await customerModuleService.createCustomerAddresses({
customer_id: customer.id,
first_name: "John",
last_name: "Doe",
@@ -59,7 +59,7 @@ medusaIntegrationTestRunner({
last_name: "Doe",
})
const address = await customerModuleService.createAddresses({
const address = await customerModuleService.createCustomerAddresses({
customer_id: otherCustomer.id,
first_name: "John",
last_name: "Doe",