@devite/shopware-client 1.7.6 → 1.7.7

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.cjs CHANGED
@@ -648,13 +648,13 @@ class MailClient extends Client {
648
648
  /** Rest Endpoints **/
649
649
  headerFooters = createRestEndpoint(
650
650
  this,
651
- "header-footer",
651
+ "mail-header-footer",
652
652
  "mail header/footer"
653
653
  );
654
- templates = createRestEndpoint(this, "template", "mail template");
654
+ templates = createRestEndpoint(this, "mail-template", "mail template");
655
655
  templateTypes = createRestEndpoint(
656
656
  this,
657
- "template-type",
657
+ "mail-template-type",
658
658
  "mail template type"
659
659
  );
660
660
  }
package/dist/index.d.cts CHANGED
@@ -2938,7 +2938,7 @@ interface CustomerWishlist {
2938
2938
 
2939
2939
  type Product = Product$1 & {
2940
2940
  featureSetId?: string;
2941
- price?: CalculatedPrice;
2941
+ price?: Array<CalculatedPrice>;
2942
2942
  readonly autoIncrement?: number;
2943
2943
  variantRestrictions?: object;
2944
2944
  purchasePrices?: Array<CalculatedPrice>;
package/dist/index.d.mts CHANGED
@@ -2938,7 +2938,7 @@ interface CustomerWishlist {
2938
2938
 
2939
2939
  type Product = Product$1 & {
2940
2940
  featureSetId?: string;
2941
- price?: CalculatedPrice;
2941
+ price?: Array<CalculatedPrice>;
2942
2942
  readonly autoIncrement?: number;
2943
2943
  variantRestrictions?: object;
2944
2944
  purchasePrices?: Array<CalculatedPrice>;
package/dist/index.d.ts CHANGED
@@ -2938,7 +2938,7 @@ interface CustomerWishlist {
2938
2938
 
2939
2939
  type Product = Product$1 & {
2940
2940
  featureSetId?: string;
2941
- price?: CalculatedPrice;
2941
+ price?: Array<CalculatedPrice>;
2942
2942
  readonly autoIncrement?: number;
2943
2943
  variantRestrictions?: object;
2944
2944
  purchasePrices?: Array<CalculatedPrice>;
package/dist/index.mjs CHANGED
@@ -646,13 +646,13 @@ class MailClient extends Client {
646
646
  /** Rest Endpoints **/
647
647
  headerFooters = createRestEndpoint(
648
648
  this,
649
- "header-footer",
649
+ "mail-header-footer",
650
650
  "mail header/footer"
651
651
  );
652
- templates = createRestEndpoint(this, "template", "mail template");
652
+ templates = createRestEndpoint(this, "mail-template", "mail template");
653
653
  templateTypes = createRestEndpoint(
654
654
  this,
655
- "template-type",
655
+ "mail-template-type",
656
656
  "mail template type"
657
657
  );
658
658
  }
@@ -25,7 +25,7 @@ import { CustomFieldSet } from "../custom/field/set/CustomFieldSet";
25
25
  import { CalculatedPrice } from "#types/api/store/price/CalculatedPrice";
26
26
  export type Product = StoreApiProduct & {
27
27
  featureSetId?: string;
28
- price?: CalculatedPrice;
28
+ price?: Array<CalculatedPrice>;
29
29
  readonly autoIncrement?: number;
30
30
  variantRestrictions?: object;
31
31
  purchasePrices?: Array<CalculatedPrice>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devite/shopware-client",
3
- "version": "1.7.6",
3
+ "version": "1.7.7",
4
4
  "description": "Third party API client for Shopware 6.",
5
5
  "repository": "devite-io/shopware-client",
6
6
  "license": "MIT",