@gooddata/sdk-backend-tiger 11.47.0-alpha.4 → 11.47.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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.47.0-alpha.4";
1
+ export declare const LIB_VERSION = "11.47.0";
2
2
  export declare const LIB_DESCRIPTION = "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/sdk-backend-tiger";
4
4
  //# sourceMappingURL=__version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"__version.d.ts","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,oBAAoB,CAAC;AAE7C,eAAO,MAAM,eAAe,2EAA2E,CAAC;AAExG,eAAO,MAAM,QAAQ,gCAAgC,CAAC"}
1
+ {"version":3,"file":"__version.d.ts","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,YAAY,CAAC;AAErC,eAAO,MAAM,eAAe,2EAA2E,CAAC;AAExG,eAAO,MAAM,QAAQ,gCAAgC,CAAC"}
package/esm/__version.js CHANGED
@@ -1,5 +1,5 @@
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.47.0-alpha.4";
3
+ export const LIB_VERSION = "11.47.0";
4
4
  export const LIB_DESCRIPTION = "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/sdk-backend-tiger";
@@ -196,10 +196,10 @@ function convertSearchResults(results) {
196
196
  modifiedAt: result.modifiedAt ?? undefined,
197
197
  visualizationUrl: result.visualizationUrl ?? undefined,
198
198
  score: result.score,
199
- certification: result.certification?.status === "CERTIFIED"
199
+ certification: result.certification === "CERTIFIED"
200
200
  ? {
201
201
  status: "CERTIFIED",
202
- certificationMessage: result.certification.certificationMessage ?? undefined,
202
+ certificationMessage: result.certificationMessage ?? undefined,
203
203
  }
204
204
  : undefined,
205
205
  }));
@@ -75,6 +75,9 @@ async function tryParseError(error) {
75
75
  if (!isAxiosErrorWithBlob(error)) {
76
76
  throw error;
77
77
  }
78
+ if (error.status === 504) {
79
+ throw new TimeoutError(error.message);
80
+ }
78
81
  if (!error.response?.data) {
79
82
  throw error;
80
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-backend-tiger",
3
- "version": "11.47.0-alpha.4",
3
+ "version": "11.47.0",
4
4
  "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -33,12 +33,12 @@
33
33
  "ts-invariant": "0.10.3",
34
34
  "tslib": "2.8.1",
35
35
  "uuid": "11.1.1",
36
- "@gooddata/api-client-tiger": "11.47.0-alpha.4",
37
- "@gooddata/sdk-backend-spi": "11.47.0-alpha.4",
38
- "@gooddata/sdk-backend-base": "11.47.0-alpha.4",
39
- "@gooddata/sdk-code-convertors": "11.47.0-alpha.4",
40
- "@gooddata/sdk-model": "11.47.0-alpha.4",
41
- "@gooddata/util": "11.47.0-alpha.4"
36
+ "@gooddata/api-client-tiger": "11.47.0",
37
+ "@gooddata/sdk-backend-base": "11.47.0",
38
+ "@gooddata/sdk-code-convertors": "11.47.0",
39
+ "@gooddata/sdk-backend-spi": "11.47.0",
40
+ "@gooddata/sdk-model": "11.47.0",
41
+ "@gooddata/util": "11.47.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@gooddata/fixtures": "3.7.0",
@@ -65,10 +65,10 @@
65
65
  "oxlint-tsgolint": "0.15.0",
66
66
  "typescript": "5.9.3",
67
67
  "vitest": "4.1.8",
68
- "@gooddata/catalog-export": "11.47.0-alpha.4",
69
- "@gooddata/oxlint-config": "11.47.0-alpha.4",
70
- "@gooddata/reference-workspace": "11.47.0-alpha.4",
71
- "@gooddata/eslint-config": "11.47.0-alpha.4"
68
+ "@gooddata/catalog-export": "11.47.0",
69
+ "@gooddata/eslint-config": "11.47.0",
70
+ "@gooddata/oxlint-config": "11.47.0",
71
+ "@gooddata/reference-workspace": "11.47.0"
72
72
  },
73
73
  "scripts": {
74
74
  "_phase:build": "npm run build",