@geins/cms 0.3.6 → 0.3.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.
@@ -2,5 +2,5 @@ yarn run v1.22.22
2
2
  $ rollup -c
3
3
  
4
4
  src/index.ts → dist/index.cjs, dist/index.esm.js...
5
- created dist/index.cjs, dist/index.esm.js in 9s
6
- Done in 9.83s.
5
+ created dist/index.cjs, dist/index.esm.js in 9.1s
6
+ Done in 9.98s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @geins/cms
2
2
 
3
+ ## 0.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 3109e0f: Added value of a menu item to cms package
8
+ - Updated dependencies [3109e0f]
9
+ - @geins/core@0.3.7
10
+
3
11
  ## 0.3.6
4
12
 
5
13
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -20723,7 +20723,7 @@ var GraphQLService = /** @class */ (function (_super) {
20723
20723
  return [4 /*yield*/, this.verifyQueryOptions(options)];
20724
20724
  case 1:
20725
20725
  queryOptions = _b.sent();
20726
- if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
20726
+ if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
20727
20727
  console.log('[Geins] queryOptions:', queryOptions);
20728
20728
  }
20729
20729
  _a = this.cleanObject;
@@ -20753,7 +20753,7 @@ var GraphQLService = /** @class */ (function (_super) {
20753
20753
  switch (_a.label) {
20754
20754
  case 0:
20755
20755
  _a.trys.push([0, 2, , 3]);
20756
- if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
20756
+ if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
20757
20757
  console.log('[Geins] mutation options:', options);
20758
20758
  }
20759
20759
  return [4 /*yield*/, this.runMutation(options)];
package/dist/index.esm.js CHANGED
@@ -20721,7 +20721,7 @@ var GraphQLService = /** @class */ (function (_super) {
20721
20721
  return [4 /*yield*/, this.verifyQueryOptions(options)];
20722
20722
  case 1:
20723
20723
  queryOptions = _b.sent();
20724
- if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
20724
+ if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
20725
20725
  console.log('[Geins] queryOptions:', queryOptions);
20726
20726
  }
20727
20727
  _a = this.cleanObject;
@@ -20751,7 +20751,7 @@ var GraphQLService = /** @class */ (function (_super) {
20751
20751
  switch (_a.label) {
20752
20752
  case 0:
20753
20753
  _a.trys.push([0, 2, , 3]);
20754
- if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
20754
+ if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
20755
20755
  console.log('[Geins] mutation options:', options);
20756
20756
  }
20757
20757
  return [4 /*yield*/, this.runMutation(options)];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geins/cms",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  "@rollup/plugin-commonjs": "^28.0.0",
22
22
  "@rollup/plugin-node-resolve": "^15.3.0",
23
23
  "@rollup/plugin-typescript": "^12.1.0",
24
- "@geins/eslint-config": "0.1.6",
24
+ "@geins/eslint-config": "0.1.7",
25
25
  "typescript": "^5.6.2",
26
26
  "eslint": "^9.11.1"
27
27
  }