@open-mercato/sync-akeneo 0.6.7-develop.6646.1.be515f3d49 → 0.6.7-develop.6649.1.e507f22d71
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-mercato/sync-akeneo",
|
|
3
|
-
"version": "0.6.7-develop.
|
|
3
|
+
"version": "0.6.7-develop.6649.1.e507f22d71",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -53,18 +53,18 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@open-mercato/core": "0.6.7-develop.
|
|
57
|
-
"@open-mercato/ui": "0.6.7-develop.
|
|
56
|
+
"@open-mercato/core": "0.6.7-develop.6649.1.e507f22d71",
|
|
57
|
+
"@open-mercato/ui": "0.6.7-develop.6649.1.e507f22d71",
|
|
58
58
|
"node-html-markdown": "^2.0.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@mikro-orm/postgresql": "^7.0.14",
|
|
62
|
-
"@open-mercato/shared": "0.6.7-develop.
|
|
62
|
+
"@open-mercato/shared": "0.6.7-develop.6649.1.e507f22d71",
|
|
63
63
|
"react": "^19.0.0",
|
|
64
64
|
"react-dom": "^19.0.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@open-mercato/shared": "0.6.7-develop.
|
|
67
|
+
"@open-mercato/shared": "0.6.7-develop.6649.1.e507f22d71",
|
|
68
68
|
"@types/jest": "^30.0.0",
|
|
69
69
|
"@types/react": "^19.2.17",
|
|
70
70
|
"@types/react-dom": "^19.2.3",
|
|
@@ -191,7 +191,7 @@ describe('akeneo client security', () => {
|
|
|
191
191
|
: new Response('internal metadata leaked through redirect', { status: 500 })
|
|
192
192
|
))
|
|
193
193
|
|
|
194
|
-
const client =
|
|
194
|
+
const client = createTestAkeneoClient()
|
|
195
195
|
await expect(client.getSystemProbe()).rejects.toThrow('Akeneo authentication failed (302)')
|
|
196
196
|
})
|
|
197
197
|
|
|
@@ -206,7 +206,7 @@ describe('akeneo client security', () => {
|
|
|
206
206
|
: new Response('internal metadata leaked through redirect', { status: 500 })
|
|
207
207
|
})
|
|
208
208
|
|
|
209
|
-
const client =
|
|
209
|
+
const client = createTestAkeneoClient()
|
|
210
210
|
await expect(client.getSystemProbe()).rejects.toThrow('Akeneo request failed (302)')
|
|
211
211
|
})
|
|
212
212
|
|
|
@@ -233,7 +233,7 @@ describe('akeneo client security', () => {
|
|
|
233
233
|
: new Response('internal metadata leaked through redirect', { status: 500 })
|
|
234
234
|
})
|
|
235
235
|
|
|
236
|
-
const client =
|
|
236
|
+
const client = createTestAkeneoClient()
|
|
237
237
|
await expect(client.downloadMediaFile('asset-1')).rejects.toThrow('Akeneo request failed (302)')
|
|
238
238
|
})
|
|
239
239
|
|