@openhi/constructs 0.0.156 → 0.0.157
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/lib/{chunk-ZVDVKCNC.mjs → chunk-BQMJSDOD.mjs} +12 -2
- package/lib/{chunk-ZVDVKCNC.mjs.map → chunk-BQMJSDOD.mjs.map} +1 -1
- package/lib/index.js +11 -1
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1 -1
- package/lib/seed-demo-data.handler.js +11 -1
- package/lib/seed-demo-data.handler.js.map +1 -1
- package/lib/seed-demo-data.handler.mjs +1 -1
- package/package.json +5 -5
package/lib/index.mjs
CHANGED
|
@@ -746,7 +746,17 @@ var DEV_USERS = [
|
|
|
746
746
|
{ id: "dev-drew", email: "drew@codedrifters.com" },
|
|
747
747
|
{ id: "dev-jessica", email: "jessica@codedrifters.com" },
|
|
748
748
|
{ id: "dev-jared", email: "jared@codedrifters.com" },
|
|
749
|
-
{ id: "dev-goddess", email: "goddess@codedrifters.com" }
|
|
749
|
+
{ id: "dev-goddess", email: "goddess@codedrifters.com" },
|
|
750
|
+
// Dedicated end-to-end test principal for admin-console Playwright
|
|
751
|
+
// specs (issue #1275). Reuses the standard DEV_USERS plumbing
|
|
752
|
+
// (Cognito user + DynamoDB User + per-tenant Memberships +
|
|
753
|
+
// tenant-admin RAs + platform-scoped system-admin RA) and the
|
|
754
|
+
// existing SSM-sourced password convention from #1249 — the
|
|
755
|
+
// operator provisions the SecureString at
|
|
756
|
+
// /openhi/seed/users/e2e-admin-console_at_codedrifters.com/password
|
|
757
|
+
// out of band, and the seeded Cognito user picks it up via
|
|
758
|
+
// AdminSetUserPassword on every seed run.
|
|
759
|
+
{ id: "dev-e2e-admin-console", email: "e2e-admin-console@codedrifters.com" }
|
|
750
760
|
];
|
|
751
761
|
var DEMO_TENANT_SPECS = [
|
|
752
762
|
{
|