@gooddata/api-client-tiger 11.28.0-alpha.8 → 11.28.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.28.0-alpha.8";
1
+ export declare const LIB_VERSION = "11.28.0";
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
@@ -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,kDAAkD,CAAC;AAE/E,eAAO,MAAM,QAAQ,+BAA+B,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,kDAAkD,CAAC;AAE/E,eAAO,MAAM,QAAQ,+BAA+B,CAAC"}
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.28.0-alpha.8";
3
+ export const LIB_VERSION = "11.28.0";
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
@@ -1 +1 @@
1
- {"version":3,"file":"__version.js","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,6DAA6D;AAE7D,MAAM,CAAC,MAAM,WAAW,GAAG,iBAAiB,CAAC;AAE7C,MAAM,CAAC,MAAM,eAAe,GAAG,+CAA+C,CAAC;AAE/E,MAAM,CAAC,MAAM,QAAQ,GAAG,4BAA4B,CAAC"}
1
+ {"version":3,"file":"__version.js","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,6DAA6D;AAE7D,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAC;AAErC,MAAM,CAAC,MAAM,eAAe,GAAG,+CAA+C,CAAC;AAE/E,MAAM,CAAC,MAAM,QAAQ,GAAG,4BAA4B,CAAC"}
@@ -58119,17 +58119,27 @@ export declare interface ILiveFeatures {
58119
58119
  }
58120
58120
 
58121
58121
  /**
58122
- * Query parameters for the location style endpoint.
58122
+ * An item in the list of available map styles returned by the styles endpoint.
58123
58123
  */
58124
- export declare interface ILocationStyleParams {
58124
+ declare interface ILocationStyleListItem {
58125
58125
  /**
58126
- * Basemap identifier. Valid values: `standard`, `satellite`, `monochrome`, `hybrid`, `none`.
58126
+ * Unique style identifier (e.g. `standard-light`, `satellite`).
58127
58127
  */
58128
- basemap?: string;
58128
+ id: string;
58129
58129
  /**
58130
- * Color scheme. Valid values: `light`, `dark`. Ignored for `satellite` and `none` basemaps.
58130
+ * Human-readable title (e.g. `Standard (Light)`).
58131
58131
  */
58132
- colorScheme?: string;
58132
+ title: string;
58133
+ /**
58134
+ * URL to fetch the full MapLibre style document for this style.
58135
+ */
58136
+ link: string;
58137
+ }
58138
+
58139
+ /**
58140
+ * Query parameters for the location style endpoint.
58141
+ */
58142
+ export declare interface ILocationStyleParams {
58133
58143
  /**
58134
58144
  * Two-letter ISO 639-1 language code (e.g. `en`, `de`, `fr`).
58135
58145
  * When provided, map labels are returned in the requested language.
@@ -73392,13 +73402,24 @@ export declare interface LocalIdentifier {
73392
73402
  }
73393
73403
 
73394
73404
  /**
73395
- * Interface describing available operations for location service style endpoint.
73405
+ * Interface describing available operations for location service style endpoints.
73396
73406
  */
73397
73407
  export declare type LocationStyleApiInterface = {
73398
73408
  /**
73399
- * Loads the MapLibre style document for the given basemap and color scheme.
73409
+ * Loads the default MapLibre style document (no specific basemap selected).
73400
73410
  */
73401
73411
  getDefaultStyle(params?: ILocationStyleParams): Promise<LocationStyleDocument>;
73412
+ /**
73413
+ * Lists all available map styles.
73414
+ */
73415
+ getStyles(): Promise<ILocationStyleListItem[]>;
73416
+ /**
73417
+ * Loads the MapLibre style document for a specific style.
73418
+ *
73419
+ * @param styleId - Style identifier (e.g. `standard-light`).
73420
+ * @param params - Optional query parameters.
73421
+ */
73422
+ getStyleById(styleId: string, params?: ILocationStyleParams): Promise<LocationStyleDocument>;
73402
73423
  };
73403
73424
 
73404
73425
  /**
@@ -84235,7 +84256,7 @@ export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) =>
84235
84256
  export declare const tigerLayoutClientFactory: (axios: AxiosInstance) => LayoutApiInterface;
84236
84257
 
84237
84258
  /**
84238
- * Factory producing a typed client for interacting with the location style endpoint.
84259
+ * Factory producing a typed client for interacting with the location style endpoints.
84239
84260
  */
84240
84261
  export declare const tigerLocationStyleClientFactory: (axios: AxiosInstance) => LocationStyleApiInterface;
84241
84262
 
@@ -1,2 +1,2 @@
1
- export { LocationStyleApi_GetDefaultStyle, tigerLocationStyleClientFactory, type LocationStyleApiInterface, type LocationStyleDocument, } from "../../locationStyle.js";
1
+ export { LocationStyleApi_GetDefaultStyle, LocationStyleApi_GetStyleById, LocationStyleApi_GetStyles, tigerLocationStyleClientFactory, type ILocationStyleListItem, type LocationStyleApiInterface, type LocationStyleDocument, } from "../../locationStyle.js";
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/endpoints/locationStyle/index.ts"],"names":[],"mappings":"AAIA,OAAO,EACH,gCAAgC,EAChC,+BAA+B,EAC/B,KAAK,yBAAyB,EAC9B,KAAK,qBAAqB,GAC7B,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/endpoints/locationStyle/index.ts"],"names":[],"mappings":"AAIA,OAAO,EACH,gCAAgC,EAChC,6BAA6B,EAC7B,0BAA0B,EAC1B,+BAA+B,EAC/B,KAAK,sBAAsB,EAC3B,KAAK,yBAAyB,EAC9B,KAAK,qBAAqB,GAC7B,MAAM,wBAAwB,CAAC"}
@@ -1,4 +1,4 @@
1
1
  // (C) 2025-2026 GoodData Corporation
2
2
  /* oxlint-disable no-barrel-files/no-barrel-files */
3
- export { LocationStyleApi_GetDefaultStyle, tigerLocationStyleClientFactory, } from "../../locationStyle.js";
3
+ export { LocationStyleApi_GetDefaultStyle, LocationStyleApi_GetStyleById, LocationStyleApi_GetStyles, tigerLocationStyleClientFactory, } from "../../locationStyle.js";
4
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/endpoints/locationStyle/index.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,oDAAoD;AAEpD,OAAO,EACH,gCAAgC,EAChC,+BAA+B,GAGlC,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/endpoints/locationStyle/index.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,oDAAoD;AAEpD,OAAO,EACH,gCAAgC,EAChC,6BAA6B,EAC7B,0BAA0B,EAC1B,+BAA+B,GAIlC,MAAM,wBAAwB,CAAC"}
@@ -4,17 +4,26 @@ import { type AxiosInstance } from "axios";
4
4
  */
5
5
  export type LocationStyleDocument = Record<string, unknown>;
6
6
  /**
7
- * Query parameters for the location style endpoint.
7
+ * An item in the list of available map styles returned by the styles endpoint.
8
8
  */
9
- export interface ILocationStyleParams {
9
+ export interface ILocationStyleListItem {
10
10
  /**
11
- * Basemap identifier. Valid values: `standard`, `satellite`, `monochrome`, `hybrid`, `none`.
11
+ * Unique style identifier (e.g. `standard-light`, `satellite`).
12
12
  */
13
- basemap?: string;
13
+ id: string;
14
14
  /**
15
- * Color scheme. Valid values: `light`, `dark`. Ignored for `satellite` and `none` basemaps.
15
+ * Human-readable title (e.g. `Standard (Light)`).
16
16
  */
17
- colorScheme?: string;
17
+ title: string;
18
+ /**
19
+ * URL to fetch the full MapLibre style document for this style.
20
+ */
21
+ link: string;
22
+ }
23
+ /**
24
+ * Query parameters for the location style endpoint.
25
+ */
26
+ export interface ILocationStyleParams {
18
27
  /**
19
28
  * Two-letter ISO 639-1 language code (e.g. `en`, `de`, `fr`).
20
29
  * When provided, map labels are returned in the requested language.
@@ -22,23 +31,39 @@ export interface ILocationStyleParams {
22
31
  language?: string;
23
32
  }
24
33
  /**
25
- * Interface describing available operations for location service style endpoint.
34
+ * Interface describing available operations for location service style endpoints.
26
35
  */
27
36
  export type LocationStyleApiInterface = {
28
37
  /**
29
- * Loads the MapLibre style document for the given basemap and color scheme.
38
+ * Loads the default MapLibre style document (no specific basemap selected).
30
39
  */
31
40
  getDefaultStyle(params?: ILocationStyleParams): Promise<LocationStyleDocument>;
41
+ /**
42
+ * Lists all available map styles.
43
+ */
44
+ getStyles(): Promise<ILocationStyleListItem[]>;
45
+ /**
46
+ * Loads the MapLibre style document for a specific style.
47
+ *
48
+ * @param styleId - Style identifier (e.g. `standard-light`).
49
+ * @param params - Optional query parameters.
50
+ */
51
+ getStyleById(styleId: string, params?: ILocationStyleParams): Promise<LocationStyleDocument>;
32
52
  };
33
53
  /**
34
- * Factory producing a typed client for interacting with the location style endpoint.
54
+ * Factory producing a typed client for interacting with the location style endpoints.
35
55
  */
36
56
  export declare const tigerLocationStyleClientFactory: (axios: AxiosInstance) => LocationStyleApiInterface;
37
57
  /**
38
- * Low-level request that retrieves the MapLibre style configuration.
39
- *
40
- * @remarks
41
- * Passes `basemap` and `colorScheme` as query parameters when provided.
58
+ * Low-level request that retrieves the default MapLibre style configuration.
42
59
  */
43
60
  export declare function LocationStyleApi_GetDefaultStyle(axios: AxiosInstance, params?: ILocationStyleParams): Promise<LocationStyleDocument>;
61
+ /**
62
+ * Low-level request that lists all available map styles.
63
+ */
64
+ export declare function LocationStyleApi_GetStyles(axios: AxiosInstance): Promise<ILocationStyleListItem[]>;
65
+ /**
66
+ * Low-level request that retrieves the MapLibre style for a specific style ID.
67
+ */
68
+ export declare function LocationStyleApi_GetStyleById(axios: AxiosInstance, styleId: string, params?: ILocationStyleParams): Promise<LocationStyleDocument>;
44
69
  //# sourceMappingURL=locationStyle.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"locationStyle.d.ts","sourceRoot":"","sources":["../src/locationStyle.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AAE3C;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACpC;;OAEG;IACH,eAAe,CAAC,MAAM,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;CAClF,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,+BAA+B,qDAI3C,CAAC;AAEF;;;;;GAKG;AACH,wBAAsB,gCAAgC,CAClD,KAAK,EAAE,aAAa,EACpB,MAAM,CAAC,EAAE,oBAAoB,GAC9B,OAAO,CAAC,qBAAqB,CAAC,CAWhC"}
1
+ {"version":3,"file":"locationStyle.d.ts","sourceRoot":"","sources":["../src/locationStyle.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AAE3C;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACpC;;OAEG;IACH,eAAe,CAAC,MAAM,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAE/E;;OAEG;IACH,SAAS,IAAI,OAAO,CAAC,sBAAsB,EAAE,CAAC,CAAC;IAE/C;;;;;OAKG;IACH,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;CAChG,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,+BAA+B,qDAM3C,CAAC;AAEF;;GAEG;AACH,wBAAsB,gCAAgC,CAClD,KAAK,EAAE,aAAa,EACpB,MAAM,CAAC,EAAE,oBAAoB,GAC9B,OAAO,CAAC,qBAAqB,CAAC,CAShC;AAED;;GAEG;AACH,wBAAsB,0BAA0B,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAAC,sBAAsB,EAAE,CAAC,CAGxG;AAED;;GAEG;AACH,wBAAsB,6BAA6B,CAC/C,KAAK,EAAE,aAAa,EACpB,OAAO,EAAE,MAAM,EACf,MAAM,CAAC,EAAE,oBAAoB,GAC9B,OAAO,CAAC,qBAAqB,CAAC,CAUhC"}
@@ -1,22 +1,19 @@
1
1
  // (C) 2025-2026 GoodData Corporation
2
2
  /**
3
- * Factory producing a typed client for interacting with the location style endpoint.
3
+ * Factory producing a typed client for interacting with the location style endpoints.
4
4
  */
5
5
  export const tigerLocationStyleClientFactory = (axios) => {
6
6
  return {
7
7
  getDefaultStyle: async (params) => LocationStyleApi_GetDefaultStyle(axios, params),
8
+ getStyles: async () => LocationStyleApi_GetStyles(axios),
9
+ getStyleById: async (styleId, params) => LocationStyleApi_GetStyleById(axios, styleId, params),
8
10
  };
9
11
  };
10
12
  /**
11
- * Low-level request that retrieves the MapLibre style configuration.
12
- *
13
- * @remarks
14
- * Passes `basemap` and `colorScheme` as query parameters when provided.
13
+ * Low-level request that retrieves the default MapLibre style configuration.
15
14
  */
16
15
  export async function LocationStyleApi_GetDefaultStyle(axios, params) {
17
16
  const queryParams = {
18
- ...(params?.basemap === undefined ? {} : { basemap: params.basemap }),
19
- ...(params?.colorScheme === undefined ? {} : { colorScheme: params.colorScheme }),
20
17
  ...(params?.language === undefined ? {} : { language: params.language }),
21
18
  };
22
19
  const response = await axios.get("/api/v1/location/style", {
@@ -24,4 +21,21 @@ export async function LocationStyleApi_GetDefaultStyle(axios, params) {
24
21
  });
25
22
  return response.data;
26
23
  }
24
+ /**
25
+ * Low-level request that lists all available map styles.
26
+ */
27
+ export async function LocationStyleApi_GetStyles(axios) {
28
+ const response = await axios.get("/api/v1/location/styles");
29
+ return response.data;
30
+ }
31
+ /**
32
+ * Low-level request that retrieves the MapLibre style for a specific style ID.
33
+ */
34
+ export async function LocationStyleApi_GetStyleById(axios, styleId, params) {
35
+ const queryParams = {
36
+ ...(params?.language === undefined ? {} : { language: params.language }),
37
+ };
38
+ const response = await axios.get(`/api/v1/location/styles/${encodeURIComponent(styleId)}`, { params: queryParams });
39
+ return response.data;
40
+ }
27
41
  //# sourceMappingURL=locationStyle.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"locationStyle.js","sourceRoot":"","sources":["../src/locationStyle.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAwCrC;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,KAAoB,EAA6B,EAAE,CAAC;IAChG,OAAO;QACH,eAAe,EAAE,KAAK,EAAE,MAAO,EAAE,EAAE,CAAC,gCAAgC,CAAC,KAAK,EAAE,MAAM,CAAC;KACtF,CAAC;AAAA,CACL,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,KAAK,UAAU,gCAAgC,CAClD,KAAoB,EACpB,MAA6B,EACC;IAC9B,MAAM,WAAW,GAAG;QAChB,GAAG,CAAC,MAAM,EAAE,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC,OAAO,EAAE,CAAC;QACrE,GAAG,CAAC,MAAM,EAAE,WAAW,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE,MAAM,CAAC,WAAW,EAAE,CAAC;QACjF,GAAG,CAAC,MAAM,EAAE,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC;KAC3E,CAAC;IAEF,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAAwB,wBAAwB,EAAE;QAC9E,MAAM,EAAE,WAAW;KACtB,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AAAA,CACxB"}
1
+ {"version":3,"file":"locationStyle.js","sourceRoot":"","sources":["../src/locationStyle.ts"],"names":[],"mappings":"AAAA,qCAAqC;AA+DrC;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,KAAoB,EAA6B,EAAE,CAAC;IAChG,OAAO;QACH,eAAe,EAAE,KAAK,EAAE,MAAO,EAAE,EAAE,CAAC,gCAAgC,CAAC,KAAK,EAAE,MAAM,CAAC;QACnF,SAAS,EAAE,KAAK,IAAI,EAAE,CAAC,0BAA0B,CAAC,KAAK,CAAC;QACxD,YAAY,EAAE,KAAK,EAAE,OAAO,EAAE,MAAO,EAAE,EAAE,CAAC,6BAA6B,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;KAClG,CAAC;AAAA,CACL,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,gCAAgC,CAClD,KAAoB,EACpB,MAA6B,EACC;IAC9B,MAAM,WAAW,GAAG;QAChB,GAAG,CAAC,MAAM,EAAE,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC;KAC3E,CAAC;IAEF,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAAwB,wBAAwB,EAAE;QAC9E,MAAM,EAAE,WAAW;KACtB,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AAAA,CACxB;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,0BAA0B,CAAC,KAAoB,EAAqC;IACtG,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAA2B,yBAAyB,CAAC,CAAC;IACtF,OAAO,QAAQ,CAAC,IAAI,CAAC;AAAA,CACxB;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,6BAA6B,CAC/C,KAAoB,EACpB,OAAe,EACf,MAA6B,EACC;IAC9B,MAAM,WAAW,GAAG;QAChB,GAAG,CAAC,MAAM,EAAE,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC;KAC3E,CAAC;IAEF,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAC5B,2BAA2B,kBAAkB,CAAC,OAAO,CAAC,EAAE,EACxD,EAAE,MAAM,EAAE,WAAW,EAAE,CAC1B,CAAC;IACF,OAAO,QAAQ,CAAC,IAAI,CAAC;AAAA,CACxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/api-client-tiger",
3
- "version": "11.28.0-alpha.8",
3
+ "version": "11.28.0",
4
4
  "description": "API Client for GoodData Cloud and GoodData.CN",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -46,7 +46,7 @@
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.28.0-alpha.8"
49
+ "@gooddata/sdk-model": "11.28.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-documenter": "^7.17.0",
@@ -75,9 +75,8 @@
75
75
  "oxlint-tsgolint": "0.11.4",
76
76
  "typescript": "5.9.3",
77
77
  "vitest": "4.1.0",
78
- "@gooddata/eslint-config": "11.28.0-alpha.8",
79
- "@gooddata/oxlint-config": "11.28.0-alpha.8",
80
- "@gooddata/reference-workspace": "11.28.0-alpha.8"
78
+ "@gooddata/oxlint-config": "11.28.0",
79
+ "@gooddata/eslint-config": "11.28.0"
81
80
  },
82
81
  "scripts": {
83
82
  "_phase:build": "npm run build",