@bygd/nc-report-ui 0.1.30 → 0.1.31

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.
@@ -46003,7 +46003,7 @@ var tokens = {
46003
46003
  "serdar.kizilkurt@gmail.com": "eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJXeFB6alpqaXJUcm5ienYwZW5iWHBhUjhoWklNQWRxb29FdEhaY0Nmbl9zIn0.eyJleHAiOjE3NjU5ODIzMjcsImlhdCI6MTc2NTk4MTQyNywianRpIjoiYjA4ZWMyMmYtN2IxMC00YzVjLWEwODgtNzA5MDhmNzJlNGIxIiwiaXNzIjoiaHR0cHM6Ly9pZHAubmV0Y2FwaXRhbC5wcm8vcmVhbG1zL25ldGNhcGl0YWwiLCJhdWQiOiJhY2NvdW50Iiwic3ViIjoiNjAzNGI5NzktNzkyNi00NjJlLTljYjQtYjJmZWMzYjNjYzhjIiwidHlwIjoiQmVhcmVyIiwiYXpwIjoiYXBwIiwic2lkIjoiMjczYzA0OTItYjQwZS00ZmIwLWEwYWItMTRmMDU5NzUzYTM2IiwiYWNyIjoiMSIsImFsbG93ZWQtb3JpZ2lucyI6WyJodHRwOi8vbG9jYWxob3N0OjMxMDIiLCJodHRwczovL2FwcC5uZXRjYXBpdGFsLnBybyIsImh0dHBzOi8vZGV2Lm5ldGNhcGl0YWwucHJvIl0sInJlYWxtX2FjY2VzcyI6eyJyb2xlcyI6WyJkZWZhdWx0LXJvbGVzLW5ldGNhcGl0YWwiLCJvZmZsaW5lX2FjY2VzcyIsInVtYV9hdXRob3JpemF0aW9uIl19LCJyZXNvdXJjZV9hY2Nlc3MiOnsiYWNjb3VudCI6eyJyb2xlcyI6WyJtYW5hZ2UtYWNjb3VudCIsIm1hbmFnZS1hY2NvdW50LWxpbmtzIiwidmlldy1wcm9maWxlIl19fSwic2NvcGUiOiJvcGVuaWQgZW1haWwgcHJvZmlsZSIsImVtYWlsX3ZlcmlmaWVkIjp0cnVlLCJuYW1lIjoiU2VyZGFyIFJlZFdvbGYiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJzZXJkYXIua2l6aWxrdXJ0QGdtYWlsLmNvbSIsImdpdmVuX25hbWUiOiJTZXJkYXIiLCJmYW1pbHlfbmFtZSI6IlJlZFdvbGYiLCJlbWFpbCI6InNlcmRhci5raXppbGt1cnRAZ21haWwuY29tIn0.mIrffBy6n4HmCnFJAX7Njl8fR-m-QQtsn2iGbyefXXK17lCP8b_lUlAvHHFaan7Te8OT8P8rHu9FgfSyPQkBMqZ0AVVf6VrhUmEO12wZx71Di59QNHjcZKfljNykPKLXXWEIWlulvScrLUsxuR5emufTJaxD9zU4fJzRh00vDCIuzIyl9o51asLmhNAtNnW8QUtT-rWOM6Fgh3pskP4yrGUe5dI17DpAYafcWgUNx86Qi9E09nzUE5IToKgXfQvVpPs7_ZwlcfOE95VNcO_pwRQQ85sJmFiUCg5_TWzNFJKoTui5barb74oBCP7OCJTb5yj5KeriL2ozg0e2IyVrHA"
46004
46004
  };
46005
46005
  var active_user = "s.kizilkurt@azerion.com";
46006
- var base_url$1 = "http://localhost:8081";
46006
+ var base_url$1 = "https://report-api.netcapital.pro";
46007
46007
  var config = {
46008
46008
  tokens: tokens,
46009
46009
  active_user: active_user,
@@ -92766,7 +92766,10 @@ const ReportBuilder = ({
92766
92766
  const reconstructMetricFromPath = (fullPath, providersData, rootProvider) => {
92767
92767
  try {
92768
92768
  // Parse: "ft_sa.financing_internal" -> ["ft", "sa"], "financing_internal"
92769
- const [aliasPath, metricName] = fullPath.split(".");
92769
+ // Also handles dotted metric names: "mc.dkpi.activeAgreementsCount" -> "mc", "dkpi.activeAgreementsCount"
92770
+ const dotIndex = fullPath.indexOf(".");
92771
+ const aliasPath = fullPath.substring(0, dotIndex);
92772
+ const metricName = fullPath.substring(dotIndex + 1);
92770
92773
  const aliases = aliasPath.split("_");
92771
92774
 
92772
92775
  // Walk the chain to build relations array
@@ -5264,7 +5264,10 @@ const ReportBuilder = ({
5264
5264
  const reconstructMetricFromPath = (fullPath, providersData, rootProvider) => {
5265
5265
  try {
5266
5266
  // Parse: "ft_sa.financing_internal" -> ["ft", "sa"], "financing_internal"
5267
- const [aliasPath, metricName] = fullPath.split(".");
5267
+ // Also handles dotted metric names: "mc.dkpi.activeAgreementsCount" -> "mc", "dkpi.activeAgreementsCount"
5268
+ const dotIndex = fullPath.indexOf(".");
5269
+ const aliasPath = fullPath.substring(0, dotIndex);
5270
+ const metricName = fullPath.substring(dotIndex + 1);
5268
5271
  const aliases = aliasPath.split("_");
5269
5272
 
5270
5273
  // Walk the chain to build relations array
@@ -5199,7 +5199,10 @@ const ReportBuilder = ({
5199
5199
  const reconstructMetricFromPath = (fullPath, providersData, rootProvider) => {
5200
5200
  try {
5201
5201
  // Parse: "ft_sa.financing_internal" -> ["ft", "sa"], "financing_internal"
5202
- const [aliasPath, metricName] = fullPath.split(".");
5202
+ // Also handles dotted metric names: "mc.dkpi.activeAgreementsCount" -> "mc", "dkpi.activeAgreementsCount"
5203
+ const dotIndex = fullPath.indexOf(".");
5204
+ const aliasPath = fullPath.substring(0, dotIndex);
5205
+ const metricName = fullPath.substring(dotIndex + 1);
5203
5206
  const aliases = aliasPath.split("_");
5204
5207
 
5205
5208
  // Walk the chain to build relations array
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bygd/nc-report-ui",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "files": [
5
5
  "dist/*",
6
6
  "fnet/input.yaml",