@medusajs/admin-sdk 3.0.0-snapshot-20250410112222 → 3.0.0-snapshot-20251104004624
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/package.json +4 -9
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -18,12 +18,12 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
|
-
var
|
|
22
|
-
__export(
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
23
|
defineRouteConfig: () => defineRouteConfig,
|
|
24
24
|
defineWidgetConfig: () => defineWidgetConfig
|
|
25
25
|
});
|
|
26
|
-
module.exports = __toCommonJS(
|
|
26
|
+
module.exports = __toCommonJS(index_exports);
|
|
27
27
|
|
|
28
28
|
// src/config/utils.ts
|
|
29
29
|
var import_zod = require("zod");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medusajs/admin-sdk",
|
|
3
3
|
"description": "SDK for building extension for the Medusa admin dashboard.",
|
|
4
|
-
"version": "3.0.0-snapshot-
|
|
4
|
+
"version": "3.0.0-snapshot-20251104004624",
|
|
5
5
|
"author": "Kasper Kristensen <kasper@medusajs.com>",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -16,16 +16,11 @@
|
|
|
16
16
|
"package.json"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "tsup"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@types/react": "^18.3.2",
|
|
23
|
-
"tsup": "^8.0.1",
|
|
24
|
-
"typescript": "^5.3.3"
|
|
19
|
+
"build": "yarn run -T tsup"
|
|
25
20
|
},
|
|
26
21
|
"dependencies": {
|
|
27
|
-
"@medusajs/admin-shared": "3.0.0-snapshot-
|
|
28
|
-
"zod": "3.
|
|
22
|
+
"@medusajs/admin-shared": "3.0.0-snapshot-20251104004624",
|
|
23
|
+
"zod": "3.25.76"
|
|
29
24
|
},
|
|
30
25
|
"packageManager": "yarn@3.2.1"
|
|
31
26
|
}
|