@plentymarkets/shop-core 1.16.1 → 1.16.2
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/module.json +1 -1
- package/dist/runtime/plugins/sdk.d.ts +7 -16
- package/package.json +2 -2
package/dist/module.json
CHANGED
|
@@ -1,24 +1,15 @@
|
|
|
1
|
+
import type { Endpoints } from '@plentymarkets/shop-api';
|
|
1
2
|
/**
|
|
2
3
|
* Plugin to provide the SDK instance globally via $sdk singleton
|
|
3
4
|
* The SDK is initialized once and reused across requests using the NuxtApp instance
|
|
4
5
|
*/
|
|
5
6
|
declare const _default: import("#app").Plugin<{
|
|
6
|
-
sdk:
|
|
7
|
-
plentysystems:
|
|
8
|
-
|
|
9
|
-
context: {
|
|
10
|
-
requestSender: import("@vue-storefront/sdk").RequestSender;
|
|
11
|
-
};
|
|
12
|
-
} & object;
|
|
13
|
-
}>;
|
|
7
|
+
sdk: {
|
|
8
|
+
plentysystems: Endpoints;
|
|
9
|
+
};
|
|
14
10
|
}> & import("#app").ObjectPlugin<{
|
|
15
|
-
sdk:
|
|
16
|
-
plentysystems:
|
|
17
|
-
|
|
18
|
-
context: {
|
|
19
|
-
requestSender: import("@vue-storefront/sdk").RequestSender;
|
|
20
|
-
};
|
|
21
|
-
} & object;
|
|
22
|
-
}>;
|
|
11
|
+
sdk: {
|
|
12
|
+
plentysystems: Endpoints;
|
|
13
|
+
};
|
|
23
14
|
}>;
|
|
24
15
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plentymarkets/shop-core",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.2",
|
|
4
4
|
"description": "Core module for PlentyONE Shop",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test:types": "vue-tsc --noEmit"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@plentymarkets/shop-api": "^0.
|
|
48
|
+
"@plentymarkets/shop-api": "^0.151.0",
|
|
49
49
|
"@vue-storefront/sdk": "^3.4.1",
|
|
50
50
|
"cookie": "^1.0.2",
|
|
51
51
|
"js-sha256": "^0.11.0",
|