@maioradv/cms-basic-lib 1.5.5 → 1.5.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.
@@ -46,6 +46,7 @@ exports.ConfigsResolvers = {
46
46
  accountsApiToken
47
47
  allowAdvancedMenu
48
48
  allowDiscounts
49
+ allowBundles
49
50
  allowLocalization
50
51
  allowPopup
51
52
  allowProductVideo
@@ -10,6 +10,7 @@ export interface TiDelizioConfig extends ServiceConfig {
10
10
  allowGoogleTagManager?: boolean;
11
11
  allowAdvancedMenu?: boolean;
12
12
  allowDiscounts?: boolean;
13
+ allowBundles?: boolean;
13
14
  allowCustomProductModal?: boolean;
14
15
  allowLocalization?: boolean;
15
16
  allowProductVideo?: boolean;
@@ -20,6 +20,7 @@ exports.LanguagesResolvers = {
20
20
  iso
21
21
  locale
22
22
  published
23
+ default
23
24
  translations {
24
25
  key
25
26
  locale
@@ -9,6 +9,7 @@ export type Language = {
9
9
  iso: string;
10
10
  locale: string;
11
11
  published: boolean;
12
+ default: boolean;
12
13
  translations: Translation[];
13
14
  createdAt: Date;
14
15
  updatedAt: Date;
@@ -25,5 +26,6 @@ export type ClausesLanguageDto = WhereClausesDto<{
25
26
  locale?: StringClause;
26
27
  active?: BooleanClause;
27
28
  published?: BooleanClause;
29
+ default?: BooleanClause;
28
30
  }>;
29
31
  export type QueryLanguageDto = QueryParamsDto<SortingLanguageDto, ClausesLanguageDto>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maioradv/cms-basic-lib",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
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",