@gravitee/gamma-lib-observability 1.30.1 → 1.31.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6698,8 +6698,8 @@ function Fl(e, t) {
6698
6698
  let s = await o.json();
6699
6699
  return {
6700
6700
  data: s.data.map((e) => ({
6701
- value: e.id ?? e.value,
6702
- label: e.value
6701
+ value: e.value,
6702
+ label: e.label ?? e.value
6703
6703
  })),
6704
6704
  hasNextPage: s.pagination.page < s.pagination.pageCount
6705
6705
  };
@@ -7183,8 +7183,8 @@ function iu(e, t) {
7183
7183
  let c = await s.json();
7184
7184
  return {
7185
7185
  data: c.data.map((e) => ({
7186
- value: e.id ?? e.value,
7187
- label: e.value
7186
+ value: e.value,
7187
+ label: e.label ?? e.value
7188
7188
  })),
7189
7189
  hasNextPage: c.pagination.page < c.pagination.pageCount
7190
7190
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/gamma-lib-observability",
3
- "version": "1.30.1",
3
+ "version": "1.31.0",
4
4
  "description": "Shared observability library for Gamma modules — dashboards, logs, tracing UI components and integration with business rules.",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@4.14.1",