@friggframework/core 2.0.0--canary.611.6896bfd.0 → 2.0.0--canary.611.3311e90.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/core",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0--canary.611.6896bfd.0",
4
+ "version": "2.0.0--canary.611.3311e90.0",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-apigatewaymanagementapi": "^3.588.0",
7
7
  "@aws-sdk/client-kms": "^3.588.0",
@@ -38,9 +38,9 @@
38
38
  }
39
39
  },
40
40
  "devDependencies": {
41
- "@friggframework/eslint-config": "2.0.0--canary.611.6896bfd.0",
42
- "@friggframework/prettier-config": "2.0.0--canary.611.6896bfd.0",
43
- "@friggframework/test": "2.0.0--canary.611.6896bfd.0",
41
+ "@friggframework/eslint-config": "2.0.0--canary.611.3311e90.0",
42
+ "@friggframework/prettier-config": "2.0.0--canary.611.3311e90.0",
43
+ "@friggframework/test": "2.0.0--canary.611.3311e90.0",
44
44
  "@prisma/client": "^6.19.3",
45
45
  "@types/lodash": "4.17.15",
46
46
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "6896bfd8ea418cf45008dd0b826cb1c60b9917ba"
83
+ "gitHead": "3311e905855689c7a28b405d8397e494a0bb3a72"
84
84
  }
@@ -60,7 +60,8 @@ Optional query params (all strings): `status` (an `IntegrationStatus`), `type`
60
60
  older app that doesn't register it). Additive — `type` is unchanged.
61
61
  - `metrics.typeLabels` — map of `type` slug → human-readable label, so callers can
62
62
  label `integrations[].type` rows without bloating each row. Contains only types
63
- whose registered class supplies a `display.label`.
63
+ whose registered class supplies a non-default `display.label` (classes still
64
+ carrying the IntegrationBase default `'Integration Name'` are excluded).
64
65
  - `metrics.integrations[]` — lightweight per-integration rows (`id`, `type`,
65
66
  `status`, `userId`, `version`, `moduleCount`, `errorCount`, `mappedRecordCount`,
66
67
  `createdAt`, `updatedAt`). These rows carry `type` only — resolve display names
@@ -88,7 +88,7 @@ class ListIntegrationsReport {
88
88
  total: integrations.length,
89
89
  byStatus,
90
90
  byType: Array.from(byTypeMap.values()),
91
- typeLabels: this.typeLabels,
91
+ typeLabels: { ...this.typeLabels },
92
92
  integrations,
93
93
  },
94
94
  };