@gooddata/sdk-code-convertors 11.29.0-alpha.1 → 11.29.0-alpha.10

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-code-convertors",
3
- "version": "11.29.0-alpha.1",
3
+ "version": "11.29.0-alpha.10",
4
4
  "description": "GoodData AAC declarative converters",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -26,16 +26,16 @@
26
26
  "dependencies": {
27
27
  "uuid": "11.1.0",
28
28
  "yaml": "^2.2.2",
29
- "@gooddata/api-client-tiger": "11.29.0-alpha.1",
30
- "@gooddata/sdk-code-schemas": "11.29.0-alpha.1",
31
- "@gooddata/sdk-model": "11.29.0-alpha.1"
29
+ "@gooddata/api-client-tiger": "11.29.0-alpha.10",
30
+ "@gooddata/sdk-model": "11.29.0-alpha.10",
31
+ "@gooddata/sdk-code-schemas": "11.29.0-alpha.10"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@microsoft/api-extractor": "^7.55.2",
35
- "@typescript-eslint/eslint-plugin": "8.52.0",
36
- "@typescript-eslint/parser": "8.52.0",
35
+ "@typescript-eslint/eslint-plugin": "8.58.0",
36
+ "@typescript-eslint/parser": "8.58.0",
37
37
  "@typescript/native-preview": "7.0.0-dev.20260202.1",
38
- "dependency-cruiser": "^14.1.2",
38
+ "dependency-cruiser": "17.3.10",
39
39
  "eslint": "^9.39.2",
40
40
  "eslint-import-resolver-typescript": "4.4.4",
41
41
  "eslint-plugin-headers": "1.3.3",
@@ -50,8 +50,8 @@
50
50
  "oxlint-tsgolint": "0.11.4",
51
51
  "typescript": "5.9.3",
52
52
  "vitest": "4.1.0",
53
- "@gooddata/eslint-config": "11.29.0-alpha.1",
54
- "@gooddata/oxlint-config": "11.29.0-alpha.1"
53
+ "@gooddata/eslint-config": "11.29.0-alpha.10",
54
+ "@gooddata/oxlint-config": "11.29.0-alpha.10"
55
55
  },
56
56
  "scripts": {
57
57
  "_phase:build": "npm run build",
@@ -65,12 +65,15 @@
65
65
  "format-check": "oxfmt --check .",
66
66
  "format-write": "oxfmt .",
67
67
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
68
- "validate": "npm run lint && npm run dep-cruiser && npm run format-check",
68
+ "validate": "npm run lint && npm run dep-cruiser && npm run format-check && npm run check-python-types",
69
+ "check-python-types": "node scripts/check-python-types.mjs",
69
70
  "lint": "oxlint . --type-aware --quiet && eslint .",
70
71
  "lint-fix": "oxlint . --type-aware --quiet --fix && eslint . --fix",
71
72
  "test": "vitest watch",
72
73
  "test-once": "vitest run",
73
74
  "build-wasm": "bash wasm/build.sh",
74
- "test-wasm": "bash wasm/test.sh"
75
+ "test-wasm": "bash wasm/test.sh",
76
+ "generate-python-types": "uv run --no-project --with datamodel-code-generator python python/scripts/generate_types.py",
77
+ "generate-python-types-check": "uv run --no-project --with datamodel-code-generator python python/scripts/generate_types.py --check"
75
78
  }
76
79
  }