@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@plentymarkets/shop-core",
3
3
  "configKey": "shopCore",
4
- "version": "1.16.1",
4
+ "version": "1.16.2",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
@@ -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: import("@vue-storefront/sdk").SDKApi<{
7
- plentysystems: {
8
- connector: import("@vue-storefront/sdk").Methods<import("@vue-storefront/middleware").WithoutContext<typeof import("@plentymarkets/shop-api/lib/api")>>;
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: import("@vue-storefront/sdk").SDKApi<{
16
- plentysystems: {
17
- connector: import("@vue-storefront/sdk").Methods<import("@vue-storefront/middleware").WithoutContext<typeof import("@plentymarkets/shop-api/lib/api")>>;
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.1",
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.150.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",