@maioradv/cms-basic-lib 1.5.2 → 1.5.4

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.
@@ -17,6 +17,7 @@ exports.ConfigsResolvers = {
17
17
  id
18
18
  name
19
19
  value
20
+ customValue
20
21
  description
21
22
  translations {
22
23
  key
@@ -48,11 +49,13 @@ exports.ConfigsResolvers = {
48
49
  allowLocalization
49
50
  allowPopup
50
51
  allowProductVideo
52
+ allowCustomProductModal
51
53
  allowCustomTheme
52
54
  dashboardId
53
55
  maxMenuCollectionNumber
54
56
  maxProductImageNumber
55
57
  maxProductsCollectionNumber
58
+ maxAdditionalLanguages
56
59
  plan
57
60
  qrLinkRedirect
58
61
  }
@@ -75,6 +78,7 @@ exports.ConfigsResolvers = {
75
78
  id
76
79
  name
77
80
  value
81
+ customValue
78
82
  description
79
83
  translations {
80
84
  key
@@ -10,6 +10,7 @@ export interface TiDelizioConfig extends ServiceConfig {
10
10
  allowGoogleTagManager?: boolean;
11
11
  allowAdvancedMenu?: boolean;
12
12
  allowDiscounts?: boolean;
13
+ allowCustomProductModal?: boolean;
13
14
  allowLocalization?: boolean;
14
15
  allowProductVideo?: boolean;
15
16
  allowPopup?: boolean;
@@ -19,4 +20,5 @@ export interface TiDelizioConfig extends ServiceConfig {
19
20
  maxMenuCollectionNumber?: number;
20
21
  maxProductsCollectionNumber?: number;
21
22
  maxProductImageNumber?: number;
23
+ maxAdditionalLanguages?: number;
22
24
  }
@@ -6,6 +6,7 @@ export type Config = {
6
6
  id: number;
7
7
  name: string;
8
8
  value: string;
9
+ customValue: string | null;
9
10
  description: string | null;
10
11
  translations: Translation[];
11
12
  createdAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maioradv/cms-basic-lib",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
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",