@geins/cms 0.3.5 → 0.3.6

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 8.4s
6
- Done in 9.31s.
5
+ created dist/index.cjs, dist/index.esm.js in 9s
6
+ Done in 9.83s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @geins/cms
2
2
 
3
+ ## 0.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - c081d36: Added value of a menu item to cms package
8
+ - Updated dependencies [c081d36]
9
+ - @geins/core@0.3.6
10
+
3
11
  ## 0.3.5
4
12
 
5
13
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -22398,7 +22398,6 @@ var MenuService = /** @class */ (function (_super) {
22398
22398
  };
22399
22399
  MenuService.prototype.parseMenuItem = function (item) {
22400
22400
  var _this = this;
22401
- console.log('item', item);
22402
22401
  return {
22403
22402
  id: item.id,
22404
22403
  label: item.label,
package/dist/index.esm.js CHANGED
@@ -22396,7 +22396,6 @@ var MenuService = /** @class */ (function (_super) {
22396
22396
  };
22397
22397
  MenuService.prototype.parseMenuItem = function (item) {
22398
22398
  var _this = this;
22399
- console.log('item', item);
22400
22399
  return {
22401
22400
  id: item.id,
22402
22401
  label: item.label,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geins/cms",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
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-canary-848c93a8f7473b2be21671e5c82eb3dca0788613",
24
+ "@geins/eslint-config": "0.1.6",
25
25
  "typescript": "^5.6.2",
26
26
  "eslint": "^9.11.1"
27
27
  }
@@ -1,7 +1,7 @@
1
1
  import type { MenuVariables } from '@geins/types';
2
2
  import { BaseApiService, logWrite } from '@geins/core';
3
3
  import { queries } from '../graphql';
4
- import { valueFromAST } from 'graphql';
4
+
5
5
  export class MenuService extends BaseApiService {
6
6
  private async generateVars(variables: MenuVariables) {
7
7
  if (!variables.menuLocationId) {
@@ -42,7 +42,6 @@ export class MenuService extends BaseApiService {
42
42
  }
43
43
 
44
44
  protected parseMenuItem(item: any): any {
45
- console.log('item', item);
46
45
  return {
47
46
  id: item.id,
48
47
  label: item.label,