@gooddata/api-client-tiger 10.41.0-alpha.1 → 10.41.0-alpha.3

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,7 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/api-client-tiger",
3
- "version": "10.41.0-alpha.1",
4
- "author": "GoodData",
3
+ "version": "10.41.0-alpha.3",
5
4
  "description": "API Client for GoodData Cloud and GoodData.CN",
6
5
  "repository": {
7
6
  "type": "git",
@@ -9,11 +8,12 @@
9
8
  "directory": "libs/api-client-tiger"
10
9
  },
11
10
  "license": "MIT",
11
+ "author": "GoodData",
12
+ "sideEffects": false,
12
13
  "type": "module",
13
- "browser": "./esm/index.js",
14
14
  "exports": "./esm/index.js",
15
+ "browser": "./esm/index.js",
15
16
  "types": "./esm/index.d.ts",
16
- "sideEffects": false,
17
17
  "files": [
18
18
  "esm/**/*.js",
19
19
  "esm/**/*.json",
@@ -22,10 +22,10 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "axios": "^1.9.0",
25
+ "axios-cache-interceptor": "^1.8.0",
25
26
  "lodash": "^4.17.21",
26
27
  "tslib": "2.8.1",
27
- "axios-cache-interceptor": "^1.8.0",
28
- "@gooddata/sdk-model": "10.41.0-alpha.1"
28
+ "@gooddata/sdk-model": "10.41.0-alpha.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@gooddata/eslint-config": "^4.1.1",
@@ -55,30 +55,30 @@
55
55
  "prettier": "^3.6.2",
56
56
  "typescript": "5.8.3",
57
57
  "vitest": "3.2.4",
58
- "@gooddata/reference-workspace": "10.41.0-alpha.1"
58
+ "@gooddata/reference-workspace": "10.41.0-alpha.3"
59
59
  },
60
60
  "scripts": {
61
61
  "_phase:build": "npm run build",
62
- "_phase:test": "npm run test-once",
63
62
  "_phase:post-build": "npm run build-dynamic-files",
63
+ "_phase:test": "npm run test-once",
64
64
  "_phase:validate": "npm run validate",
65
- "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
65
+ "api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
66
66
  "build": "bash scripts/build.sh",
67
67
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
68
- "openapi-generate": "./scripts/generate.js",
69
- "generate-client": "rm -rf src/generated/* && npm run openapi-generate && fix-esm-import-path ./src && npm run prettier-write",
70
- "api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
71
- "test": "vitest watch",
72
- "test-once": "vitest run",
73
- "test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
74
- "validate-esm": "node --input-type=module --eval 'import \"@gooddata/api-client-tiger\"' ",
68
+ "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
69
+ "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
70
+ "dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
75
71
  "eslint": "eslint -c .eslintrc.cjs src/",
76
- "eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
77
72
  "eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml -c .eslintrc.cjs src/",
73
+ "eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
74
+ "generate-client": "rm -rf src/generated/* && npm run openapi-generate && fix-esm-import-path ./src && npm run prettier-write",
75
+ "openapi-generate": "./scripts/generate.js",
78
76
  "prettier-check": "prettier --check '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
79
77
  "prettier-write": "prettier --write '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
80
- "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
81
- "dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
82
- "validate": "npm run dep-cruiser && npm run eslint && npm run prettier-check"
78
+ "test": "vitest watch",
79
+ "test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
80
+ "test-once": "vitest run",
81
+ "validate": "npm run dep-cruiser && npm run eslint && npm run prettier-check",
82
+ "validate-esm": "node --input-type=module --eval 'import \"@gooddata/api-client-tiger\"' "
83
83
  }
84
84
  }