chore: remove container registration name (#9137)

This commit is contained in:
Carlos R. L. Rodrigues
2024-09-16 06:22:24 -03:00
committed by GitHub
parent ab4a422fc8
commit 950cf9af79
421 changed files with 1528 additions and 2496 deletions

View File

@@ -10,8 +10,8 @@ describe("defineConfig", function () {
},
"featureFlags": {},
"modules": {
"apiKey": true,
"auth": {
"ApiKey": true,
"Auth": {
"options": {
"providers": [
{
@@ -22,12 +22,12 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/auth",
},
"cacheService": true,
"cart": true,
"currency": true,
"customer": true,
"eventBus": true,
"file": {
"Cache": true,
"Cart": true,
"Currency": true,
"Customer": true,
"EventBus": true,
"File": {
"options": {
"providers": [
{
@@ -38,7 +38,7 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/file",
},
"fulfillment": {
"Fulfillment": {
"options": {
"providers": [
{
@@ -49,8 +49,8 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/fulfillment",
},
"inventoryService": true,
"notification": {
"Inventory": true,
"Notification": {
"options": {
"providers": [
{
@@ -67,23 +67,23 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/notification",
},
"order": true,
"payment": true,
"pricingService": true,
"productService": true,
"promotion": true,
"region": true,
"salesChannel": true,
"stockLocationService": true,
"store": true,
"tax": true,
"user": {
"Order": true,
"Payment": true,
"Pricing": true,
"Product": true,
"Promotion": true,
"Region": true,
"SalesChannel": true,
"StockLocation": true,
"Store": true,
"Tax": true,
"User": {
"options": {
"jwt_secret": "supersecret",
},
"resolve": "@medusajs/user",
},
"workflows": true,
"Workflows": true,
},
"plugins": [],
"projectConfig": {
@@ -104,7 +104,7 @@ describe("defineConfig", function () {
expect(
defineConfig({
modules: {
githubModuleService: {
GithubModuleService: {
resolve: "./modules/github",
},
},
@@ -116,8 +116,8 @@ describe("defineConfig", function () {
},
"featureFlags": {},
"modules": {
"apiKey": true,
"auth": {
"ApiKey": true,
"Auth": {
"options": {
"providers": [
{
@@ -128,12 +128,12 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/auth",
},
"cacheService": true,
"cart": true,
"currency": true,
"customer": true,
"eventBus": true,
"file": {
"Cache": true,
"Cart": true,
"Currency": true,
"Customer": true,
"EventBus": true,
"File": {
"options": {
"providers": [
{
@@ -144,7 +144,7 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/file",
},
"fulfillment": {
"Fulfillment": {
"options": {
"providers": [
{
@@ -155,11 +155,11 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/fulfillment",
},
"githubModuleService": {
"GithubModuleService": {
"resolve": "./modules/github",
},
"inventoryService": true,
"notification": {
"Inventory": true,
"Notification": {
"options": {
"providers": [
{
@@ -176,23 +176,23 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/notification",
},
"order": true,
"payment": true,
"pricingService": true,
"productService": true,
"promotion": true,
"region": true,
"salesChannel": true,
"stockLocationService": true,
"store": true,
"tax": true,
"user": {
"Order": true,
"Payment": true,
"Pricing": true,
"Product": true,
"Promotion": true,
"Region": true,
"SalesChannel": true,
"StockLocation": true,
"Store": true,
"Tax": true,
"User": {
"options": {
"jwt_secret": "supersecret",
},
"resolve": "@medusajs/user",
},
"workflows": true,
"Workflows": true,
},
"plugins": [],
"projectConfig": {
@@ -225,8 +225,8 @@ describe("defineConfig", function () {
},
"featureFlags": {},
"modules": {
"apiKey": true,
"auth": {
"ApiKey": true,
"Auth": {
"options": {
"providers": [
{
@@ -237,12 +237,12 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/auth",
},
"cacheService": true,
"cart": true,
"currency": true,
"customer": true,
"eventBus": true,
"file": {
"Cache": true,
"Cart": true,
"Currency": true,
"Customer": true,
"EventBus": true,
"File": {
"options": {
"providers": [
{
@@ -253,7 +253,7 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/file",
},
"fulfillment": {
"Fulfillment": {
"options": {
"providers": [
{
@@ -264,8 +264,8 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/fulfillment",
},
"inventoryService": true,
"notification": {
"Inventory": true,
"Notification": {
"options": {
"providers": [
{
@@ -282,23 +282,23 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/notification",
},
"order": true,
"payment": true,
"pricingService": true,
"productService": true,
"promotion": true,
"region": true,
"salesChannel": true,
"stockLocationService": true,
"store": true,
"tax": true,
"user": {
"Order": true,
"Payment": true,
"Pricing": true,
"Product": true,
"Promotion": true,
"Region": true,
"SalesChannel": true,
"StockLocation": true,
"Store": true,
"Tax": true,
"User": {
"options": {
"jwt_secret": "supersecret",
},
"resolve": "@medusajs/user",
},
"workflows": true,
"Workflows": true,
},
"plugins": [],
"projectConfig": {
@@ -334,8 +334,8 @@ describe("defineConfig", function () {
},
"featureFlags": {},
"modules": {
"apiKey": true,
"auth": {
"ApiKey": true,
"Auth": {
"options": {
"providers": [
{
@@ -346,11 +346,11 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/auth",
},
"cacheService": true,
"currency": true,
"customer": true,
"eventBus": true,
"file": {
"Cache": true,
"Currency": true,
"Customer": true,
"EventBus": true,
"File": {
"options": {
"providers": [
{
@@ -361,7 +361,7 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/file",
},
"fulfillment": {
"Fulfillment": {
"options": {
"providers": [
{
@@ -372,8 +372,8 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/fulfillment",
},
"inventoryService": true,
"notification": {
"Inventory": true,
"Notification": {
"options": {
"providers": [
{
@@ -390,23 +390,23 @@ describe("defineConfig", function () {
},
"resolve": "@medusajs/notification",
},
"order": true,
"payment": true,
"pricingService": true,
"productService": true,
"promotion": true,
"region": true,
"salesChannel": true,
"stockLocationService": true,
"store": true,
"tax": true,
"user": {
"Order": true,
"Payment": true,
"Pricing": true,
"Product": true,
"Promotion": true,
"Region": true,
"SalesChannel": true,
"StockLocation": true,
"Store": true,
"Tax": true,
"User": {
"options": {
"jwt_secret": "supersecret",
},
"resolve": "@medusajs/user",
},
"workflows": true,
"Workflows": true,
},
"plugins": [],
"projectConfig": {