@shepherdjerred/helm-types 1.6.0-dev.9424 → 1.6.0-dev.9521

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/package.json +1 -1
  2. package/src/config.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepherdjerred/helm-types",
3
- "version": "1.6.0-dev.9424",
3
+ "version": "1.6.0-dev.9521",
4
4
  "description": "Generate TypeScript types from Helm chart values.yaml and values.schema.json",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/config.ts CHANGED
@@ -80,7 +80,7 @@ export const EXTENSIBLE_TYPE_PATTERNS: Record<string, string[]> = {
80
80
  "kube-prometheus-stack": [
81
81
  "grafana", // Allows "grafana.ini" and other quoted config keys
82
82
  "grafana.deploymentStrategy", // Allows Kubernetes Deployment strategy objects with flexible fields
83
- "alertmanager.config.receivers", // Allows various *_configs (pagerduty_configs, etc.) on array elements
83
+ "alertmanager.config.receivers", // Allows receiver-specific config blocks on array elements
84
84
  "prometheus-node-exporter", // Allows extraHostVolumeMounts and other node exporter specific configs
85
85
  "prometheusNodeExporter", // Also support camelCase variant
86
86
  ],