@gooddata/sdk-backend-mockingbird 11.19.0-alpha.9 → 11.19.0

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/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2019-2026 GoodData Corporation
2
- /* eslint-disable no-barrel-files/no-barrel-files */
2
+ /* oxlint-disable no-barrel-files/no-barrel-files */
3
3
  /**
4
4
  * This package provides a mock Analytical Backend implementation used mainly for testing.
5
5
  *
@@ -180,7 +180,7 @@ class RecordedAvailableCatalogFactory {
180
180
  // availability not implemented yet
181
181
  return this;
182
182
  };
183
- // eslint-disable-next-line sonarjs/no-identical-functions
183
+ // oxlint-disable-next-line sonarjs/no-identical-functions
184
184
  withGroups(loadGroups) {
185
185
  return this.withOptions({
186
186
  loadGroups,
@@ -1,4 +1,4 @@
1
- // (C) 2019-2025 GoodData Corporation
1
+ // (C) 2019-2026 GoodData Corporation
2
2
  import { invariant } from "ts-invariant";
3
3
  import { InMemoryPaging } from "@gooddata/sdk-backend-base";
4
4
  import { NotImplemented, UnexpectedResponseError, } from "@gooddata/sdk-backend-spi";
@@ -103,7 +103,7 @@ class RecordedFilterElements {
103
103
  this.recordings = recordings;
104
104
  this.ref = filterObjRef(filter);
105
105
  }
106
- // eslint-disable-next-line sonarjs/no-identical-functions
106
+ // oxlint-disable-next-line sonarjs/no-identical-functions
107
107
  withLimit(limit) {
108
108
  invariant(limit > 0, "Limit must be positive number");
109
109
  this.limit = limit;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-backend-mockingbird",
3
- "version": "11.19.0-alpha.9",
3
+ "version": "11.19.0",
4
4
  "description": "Mock GoodData Backend SPI implementation",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -25,10 +25,10 @@
25
25
  "ts-invariant": "^0.7.5",
26
26
  "tslib": "2.8.1",
27
27
  "uuid": "^11.1.0",
28
- "@gooddata/sdk-backend-base": "11.19.0-alpha.9",
29
- "@gooddata/sdk-backend-spi": "11.19.0-alpha.9",
30
- "@gooddata/sdk-model": "11.19.0-alpha.9",
31
- "@gooddata/util": "11.19.0-alpha.9"
28
+ "@gooddata/sdk-backend-base": "11.19.0",
29
+ "@gooddata/sdk-backend-spi": "11.19.0",
30
+ "@gooddata/sdk-model": "11.19.0",
31
+ "@gooddata/util": "11.19.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@microsoft/api-documenter": "^7.17.0",
@@ -39,19 +39,21 @@
39
39
  "dependency-cruiser": "^14.1.2",
40
40
  "eslint": "^9.39.2",
41
41
  "eslint-import-resolver-typescript": "4.4.4",
42
- "eslint-plugin-header": "3.1.1",
42
+ "eslint-plugin-headers": "1.3.3",
43
43
  "eslint-plugin-import-esm": "1.2.1",
44
44
  "eslint-plugin-import-x": "4.16.1",
45
45
  "eslint-plugin-jsdoc": "62.1.0",
46
46
  "eslint-plugin-no-barrel-files": "1.2.2",
47
- "eslint-plugin-no-only-tests": "3.3.0",
48
47
  "eslint-plugin-sonarjs": "3.0.6",
49
48
  "npm-run-all": "^4.1.5",
50
49
  "oxfmt": "0.27.0",
50
+ "oxlint": "^1.43.0",
51
+ "oxlint-tsgolint": "0.11.4",
51
52
  "typescript": "5.9.3",
52
53
  "vitest": "4.0.8",
53
- "@gooddata/eslint-config": "11.19.0-alpha.9",
54
- "@gooddata/reference-workspace": "11.19.0-alpha.9"
54
+ "@gooddata/eslint-config": "11.19.0",
55
+ "@gooddata/oxlint-config": "11.19.0",
56
+ "@gooddata/reference-workspace": "11.19.0"
55
57
  },
56
58
  "scripts": {
57
59
  "_phase:build": "npm run build",
@@ -69,7 +71,11 @@
69
71
  "oxfmt-write": "oxfmt .",
70
72
  "test": "vitest watch",
71
73
  "test-once": "vitest run",
72
- "validate": "npm run eslint && npm run dep-cruiser && npm run oxfmt-check",
73
- "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-backend-mockingbird\"'"
74
+ "validate": "npm run lint && npm run dep-cruiser && npm run oxfmt-check",
75
+ "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-backend-mockingbird\"'",
76
+ "lint": "npm run oxlint && npm run eslint",
77
+ "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
78
+ "oxlint": "oxlint . --type-aware",
79
+ "oxlint-fix": "oxlint . --type-aware --fix"
74
80
  }
75
81
  }