@jaypie/constructs 1.2.56 → 1.2.58

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/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Jaypie Constructs 🐦‍⬛
2
+
3
+ CDK constructs for Jaypie applications.
4
+
5
+ See [jaypie.net](https://jaypie.net) for documentation.
6
+
7
+ ## 📜 License
8
+
9
+ [MIT License](./LICENSE.txt). Published by Finlayson Studio.
@@ -1022,7 +1022,12 @@ class JaypieEnvSecret extends constructs.Construct {
1022
1022
  this._envKey = envKey;
1023
1023
  let exportName;
1024
1024
  if (!exportParam) {
1025
- exportName = exportEnvName$1(envKey || id, process.env, consumer);
1025
+ // When shorthand detection is active, use the full construct id (which
1026
+ // includes the "EnvSecret_" prefix) so the export name matches what was
1027
+ // produced by earlier versions of this construct. Using the raw envKey
1028
+ // here produces a shorter name that breaks existing cross-stack imports.
1029
+ const exportSource = treatAsEnvKey ? id : envKey || id;
1030
+ exportName = exportEnvName$1(exportSource, process.env, consumer);
1026
1031
  }
1027
1032
  else {
1028
1033
  exportName = cleanName$1(exportParam);
@@ -4199,6 +4204,9 @@ class JaypieSsoPermissions extends constructs.Construct {
4199
4204
  {
4200
4205
  Effect: "Allow",
4201
4206
  Action: [
4207
+ "bedrock-agent:*",
4208
+ "bedrock-agentcore:*",
4209
+ "bedrock:*",
4202
4210
  "budgets:*",
4203
4211
  "ce:*",
4204
4212
  "cloudformation:*",