@maioradv/cms-basic-lib 1.6.1 → 1.6.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.
@@ -22,12 +22,18 @@ exports.BundlesResolvers = {
22
22
  tags
23
23
  BundleVariant {
24
24
  id
25
+ title
26
+ subtitle
25
27
  description
26
28
  translations {
27
29
  key
28
30
  locale
29
31
  value
30
32
  }
33
+ metafields {
34
+ key
35
+ value
36
+ }
31
37
  price
32
38
  fullPrice
33
39
  bundleId
@@ -19,8 +19,11 @@ export type Bundle = {
19
19
  };
20
20
  export type BundleVariant = {
21
21
  id: number;
22
+ title: string | null;
23
+ subtitle: string | null;
22
24
  description: string | null;
23
25
  translations: Translation[];
26
+ metafields: Metafield[];
24
27
  price: number | null;
25
28
  fullPrice: number | null;
26
29
  bundleId: number;
@@ -23,12 +23,18 @@ exports.ProductsResolvers = {
23
23
  externalId
24
24
  ProductVariant {
25
25
  id
26
+ title
27
+ subtitle
26
28
  description
27
29
  translations {
28
30
  key
29
31
  locale
30
32
  value
31
33
  }
34
+ metafields {
35
+ key
36
+ value
37
+ }
32
38
  price
33
39
  fullPrice
34
40
  productId
@@ -21,8 +21,11 @@ export type Product = {
21
21
  };
22
22
  export type ProductVariant = {
23
23
  id: number;
24
+ title: string | null;
25
+ subtitle: string | null;
24
26
  description: string | null;
25
27
  translations: Translation[];
28
+ metafields: Metafield[];
26
29
  price: number | null;
27
30
  fullPrice: number | null;
28
31
  productId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maioradv/cms-basic-lib",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "JS lib for Maior CMS Basic Api",
5
5
  "repository": "https://github.com/maioradv/cms-basic-lib.git",
6
6
  "author": "Maior ADV Srl",