@gooddata/api-client-tiger 11.19.0-alpha.4 → 11.19.0-alpha.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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.19.0-alpha.4";
1
+ export declare const LIB_VERSION = "11.19.0-alpha.6";
2
2
  export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/api-client-tiger";
4
4
  //# sourceMappingURL=__version.d.ts.map
package/esm/__version.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.19.0-alpha.4";
3
+ export const LIB_VERSION = "11.19.0-alpha.6";
4
4
  export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/api-client-tiger";
6
6
  //# sourceMappingURL=__version.js.map
package/package.json CHANGED
@@ -1,16 +1,24 @@
1
1
  {
2
2
  "name": "@gooddata/api-client-tiger",
3
- "version": "11.19.0-alpha.4",
3
+ "version": "11.19.0-alpha.6",
4
4
  "description": "API Client for GoodData Cloud and GoodData.CN",
5
+ "license": "MIT",
6
+ "author": "GoodData",
5
7
  "repository": {
6
8
  "type": "git",
7
9
  "url": "https://github.com/gooddata/gooddata-ui-sdk.git",
8
10
  "directory": "libs/api-client-tiger"
9
11
  },
10
- "license": "MIT",
11
- "author": "GoodData",
12
- "sideEffects": false,
12
+ "files": [
13
+ "esm/**/*.js",
14
+ "esm/**/*.json",
15
+ "esm/**/*.d.ts",
16
+ "esm/**/*.map"
17
+ ],
13
18
  "type": "module",
19
+ "sideEffects": false,
20
+ "browser": "./esm/index.js",
21
+ "types": "./esm/index.d.ts",
14
22
  "exports": {
15
23
  ".": "./esm/index.js",
16
24
  "./endpoints/aac": "./esm/endpoints/aac/index.js",
@@ -33,20 +41,12 @@
33
41
  "./endpoints/automation": "./esm/endpoints/automation/index.js",
34
42
  "./endpoints/smartFunctions": "./esm/endpoints/smartFunctions/index.js"
35
43
  },
36
- "browser": "./esm/index.js",
37
- "types": "./esm/index.d.ts",
38
- "files": [
39
- "esm/**/*.js",
40
- "esm/**/*.json",
41
- "esm/**/*.d.ts",
42
- "esm/**/*.map"
43
- ],
44
44
  "dependencies": {
45
45
  "axios": "^1.9.0",
46
46
  "axios-cache-interceptor": "^1.8.0",
47
47
  "lodash-es": "^4.17.23",
48
48
  "tslib": "2.8.1",
49
- "@gooddata/sdk-model": "11.19.0-alpha.4"
49
+ "@gooddata/sdk-model": "11.19.0-alpha.6"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-documenter": "^7.17.0",
@@ -69,11 +69,11 @@
69
69
  "fix-esm-import-path": "^1.4.0",
70
70
  "mkdirp": "^1.0.4",
71
71
  "npm-run-all": "^4.1.5",
72
- "prettier": "^3.6.2",
72
+ "oxfmt": "0.27.0",
73
73
  "typescript": "5.9.3",
74
74
  "vitest": "4.0.8",
75
- "@gooddata/eslint-config": "11.19.0-alpha.4",
76
- "@gooddata/reference-workspace": "11.19.0-alpha.4"
75
+ "@gooddata/eslint-config": "11.19.0-alpha.6",
76
+ "@gooddata/reference-workspace": "11.19.0-alpha.6"
77
77
  },
78
78
  "scripts": {
79
79
  "_phase:build": "npm run build",
@@ -91,11 +91,11 @@
91
91
  "eslint-fix": "eslint . --fix",
92
92
  "generate-client": "npm run openapi-generate && fix-esm-import-path ./src && npm run prettier-write",
93
93
  "openapi-generate": "./scripts/generate.js",
94
- "prettier-check": "prettier --check .",
95
- "prettier-write": "prettier --write .",
94
+ "oxfmt-check": "oxfmt --check .",
95
+ "oxfmt-write": "oxfmt .",
96
96
  "test": "vitest watch",
97
97
  "test-once": "vitest run",
98
- "validate": "npm run eslint && npm run dep-cruiser && npm run prettier-check",
98
+ "validate": "npm run eslint && npm run dep-cruiser && npm run oxfmt-check",
99
99
  "validate-esm": "node --input-type=module --eval 'import \"@gooddata/api-client-tiger\"' "
100
100
  }
101
101
  }