@openhi/constructs 0.0.106 → 0.0.108

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 (54) hide show
  1. package/lib/{chunk-CHPEQRXU.mjs → chunk-6J7NQ6A4.mjs} +2 -2
  2. package/lib/{chunk-YU2HRNUP.mjs → chunk-AJ3G3THO.mjs} +2 -2
  3. package/lib/{chunk-L6UAP4KP.mjs → chunk-EST32BJ2.mjs} +3 -3
  4. package/lib/chunk-GT7SFZLP.mjs +126 -0
  5. package/lib/chunk-GT7SFZLP.mjs.map +1 -0
  6. package/lib/{chunk-QMIOLLAS.mjs → chunk-L3QHWDHB.mjs} +16 -18
  7. package/lib/chunk-L3QHWDHB.mjs.map +1 -0
  8. package/lib/chunk-LKG3I536.mjs +1383 -0
  9. package/lib/chunk-LKG3I536.mjs.map +1 -0
  10. package/lib/{chunk-VYDIGFIX.mjs → chunk-QR5JVSCF.mjs} +11 -1
  11. package/lib/chunk-QR5JVSCF.mjs.map +1 -0
  12. package/lib/{chunk-AO3E22CS.mjs → chunk-WWGJZNXJ.mjs} +74 -4
  13. package/lib/chunk-WWGJZNXJ.mjs.map +1 -0
  14. package/lib/chunk-ZGOHB4RA.mjs +96 -0
  15. package/lib/chunk-ZGOHB4RA.mjs.map +1 -0
  16. package/lib/{events-DGep6C7w.d.mts → events-DPodvl07.d.mts} +3 -3
  17. package/lib/{events-DGep6C7w.d.ts → events-DPodvl07.d.ts} +3 -3
  18. package/lib/index.d.mts +2 -2
  19. package/lib/index.d.ts +4 -4
  20. package/lib/index.js +1045 -9
  21. package/lib/index.js.map +1 -1
  22. package/lib/index.mjs +9 -11
  23. package/lib/index.mjs.map +1 -1
  24. package/lib/pre-token-generation.handler.js +1356 -10
  25. package/lib/pre-token-generation.handler.js.map +1 -1
  26. package/lib/pre-token-generation.handler.mjs +103 -5
  27. package/lib/pre-token-generation.handler.mjs.map +1 -1
  28. package/lib/provision-default-workspace.handler.js +1172 -1
  29. package/lib/provision-default-workspace.handler.js.map +1 -1
  30. package/lib/provision-default-workspace.handler.mjs +5 -5
  31. package/lib/rest-api-lambda.handler.js +2769 -2434
  32. package/lib/rest-api-lambda.handler.js.map +1 -1
  33. package/lib/rest-api-lambda.handler.mjs +630 -1464
  34. package/lib/rest-api-lambda.handler.mjs.map +1 -1
  35. package/lib/seed-demo-data.handler.d.mts +2 -2
  36. package/lib/seed-demo-data.handler.d.ts +2 -2
  37. package/lib/seed-demo-data.handler.js +1174 -10
  38. package/lib/seed-demo-data.handler.js.map +1 -1
  39. package/lib/seed-demo-data.handler.mjs +5 -5
  40. package/lib/seed-system-data.handler.js +15 -5
  41. package/lib/seed-system-data.handler.js.map +1 -1
  42. package/lib/seed-system-data.handler.mjs +9 -9
  43. package/lib/seed-system-data.handler.mjs.map +1 -1
  44. package/package.json +1 -1
  45. package/lib/chunk-AO3E22CS.mjs.map +0 -1
  46. package/lib/chunk-JUNL76HF.mjs +0 -428
  47. package/lib/chunk-JUNL76HF.mjs.map +0 -1
  48. package/lib/chunk-QMIOLLAS.mjs.map +0 -1
  49. package/lib/chunk-VYDIGFIX.mjs.map +0 -1
  50. package/lib/chunk-YZZDUJHI.mjs +0 -37
  51. package/lib/chunk-YZZDUJHI.mjs.map +0 -1
  52. /package/lib/{chunk-CHPEQRXU.mjs.map → chunk-6J7NQ6A4.mjs.map} +0 -0
  53. /package/lib/{chunk-YU2HRNUP.mjs.map → chunk-AJ3G3THO.mjs.map} +0 -0
  54. /package/lib/{chunk-L6UAP4KP.mjs.map → chunk-EST32BJ2.mjs.map} +0 -0
@@ -1,6 +1,6 @@
1
1
  import { WorkflowDedupClient } from '@openhi/workflows';
2
2
  import { EventBridgeEvent } from 'aws-lambda';
3
- import { d as DemoDevUser } from './events-DGep6C7w.mjs';
3
+ import { d as DemoDevUser } from './events-DPodvl07.mjs';
4
4
  import { O as OpenHiContext } from './openhi-context-CaBH8SFo.mjs';
5
5
  import '@openhi/types';
6
6
 
@@ -38,7 +38,7 @@ interface CognitoProvisioner {
38
38
  interface SeedDemoDataDependencies {
39
39
  readonly dedupClient: WorkflowDedupClient;
40
40
  /**
41
- * Reads every id in `CONTROL_PLANE_ROLE_IDS`. Throws when any Role
41
+ * Reads every id in `PLATFORM_ROLE_IDS`. Throws when any Role
42
42
  * record is missing — that means `seed-system-data` has not yet
43
43
  * run on this environment, and emitting demo RoleAssignments that
44
44
  * reference non-existent Roles would produce orphaned records.
@@ -1,6 +1,6 @@
1
1
  import { WorkflowDedupClient } from '@openhi/workflows';
2
2
  import { EventBridgeEvent } from 'aws-lambda';
3
- import { d as DemoDevUser } from './events-DGep6C7w.js';
3
+ import { d as DemoDevUser } from './events-DPodvl07.js';
4
4
  import { O as OpenHiContext } from './openhi-context-CaBH8SFo.js';
5
5
  import '@openhi/types';
6
6
 
@@ -38,7 +38,7 @@ interface CognitoProvisioner {
38
38
  interface SeedDemoDataDependencies {
39
39
  readonly dedupClient: WorkflowDedupClient;
40
40
  /**
41
- * Reads every id in `CONTROL_PLANE_ROLE_IDS`. Throws when any Role
41
+ * Reads every id in `PLATFORM_ROLE_IDS`. Throws when any Role
42
42
  * record is missing — that means `seed-system-data` has not yet
43
43
  * run on this environment, and emitting demo RoleAssignments that
44
44
  * reference non-existent Roles would produce orphaned records.