- All schemas have been rewritten to a relational model - All services have been rewritten to accommodate the new data model - Adds idempotency keys to core endpoints allowing you to retry requests with no additional side effects - Adds staged jobs to avoid putting jobs in the queue when transactions abort - Adds atomic transactions to all methods with access to the data layer Co-authored-by: Oliver Windall Juhl <oliver@mrbltech.com>
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "medusa-plugin-ip-lookup",
|
|
"version": "1.0.12-alpha.787+0646bd3",
|
|
"description": "IP lookup middleware for Medusa core",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/medusa-plugin-ip-lookup"
|
|
},
|
|
"scripts": {
|
|
"build": "babel src --out-dir . --ignore **/__tests__",
|
|
"prepare": "cross-env NODE_ENV=production npm run build",
|
|
"watch": "babel -w src --out-dir . --ignore **/__tests__",
|
|
"test": "jest"
|
|
},
|
|
"author": "Oliver Juhl",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.7.5",
|
|
"@babel/core": "^7.7.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
|
"@babel/plugin-transform-classes": "^7.9.5",
|
|
"@babel/plugin-transform-instanceof": "^7.8.3",
|
|
"@babel/plugin-transform-runtime": "^7.7.6",
|
|
"@babel/preset-env": "^7.7.5",
|
|
"@babel/runtime": "^7.7.6",
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^25.5.2"
|
|
},
|
|
"peerDependencies": {
|
|
"medusa-interfaces": "1.x"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.20.0",
|
|
"mongoose": "^5.8.0"
|
|
},
|
|
"gitHead": "0646bd395a6056657cb0aa93c13699c4a9dbbcdd"
|
|
}
|