@fjall/components-infrastructure 2.32.0 → 2.33.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.
@@ -453,7 +453,9 @@ export type IPatternProps = IPayloadProps | IStaticSiteProps;
453
453
  * Note the vocabulary is wider than `IPatternProps`: `nextjs` is declared in
454
454
  * `PATTERN_REGISTRY` but has no construct, so it is deliberately absent from the
455
455
  * union above and `PatternFactory.build` will not accept it — the omission here
456
- * is the single enforcement of that gap.
456
+ * is the compile-time enforcement of that gap. The registry's `deployable`
457
+ * flag mirrors it for runtime consumers (the CLI picker/validation cannot read
458
+ * this union); when adding the construct, extend the union AND flip the flag.
457
459
  */
458
460
  export type { PatternType };
459
461
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fjall/components-infrastructure",
3
- "version": "2.32.0",
3
+ "version": "2.33.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "type": "module",
6
6
  "bin": {
@@ -67,8 +67,8 @@
67
67
  },
68
68
  "dependencies": {
69
69
  "@aws-sdk/client-organizations": "^3.1038.0",
70
- "@fjall/generator": "^2.32.0",
71
- "@fjall/util": "^2.32.0",
70
+ "@fjall/generator": "^2.33.0",
71
+ "@fjall/util": "^2.33.0",
72
72
  "constructs": "^10.6.0"
73
73
  },
74
74
  "overrides": {
@@ -82,5 +82,5 @@
82
82
  "engines": {
83
83
  "node": ">=18.0.0"
84
84
  },
85
- "gitHead": "876a79a9ad0031a5919019c86867c28c1ab9dc92"
85
+ "gitHead": "61c0d1917597c6d02e8e78b03420afdd194eaafc"
86
86
  }