@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.
- package/lib/{chunk-CHPEQRXU.mjs → chunk-6J7NQ6A4.mjs} +2 -2
- package/lib/{chunk-YU2HRNUP.mjs → chunk-AJ3G3THO.mjs} +2 -2
- package/lib/{chunk-L6UAP4KP.mjs → chunk-EST32BJ2.mjs} +3 -3
- package/lib/chunk-GT7SFZLP.mjs +126 -0
- package/lib/chunk-GT7SFZLP.mjs.map +1 -0
- package/lib/{chunk-QMIOLLAS.mjs → chunk-L3QHWDHB.mjs} +16 -18
- package/lib/chunk-L3QHWDHB.mjs.map +1 -0
- package/lib/chunk-LKG3I536.mjs +1383 -0
- package/lib/chunk-LKG3I536.mjs.map +1 -0
- package/lib/{chunk-VYDIGFIX.mjs → chunk-QR5JVSCF.mjs} +11 -1
- package/lib/chunk-QR5JVSCF.mjs.map +1 -0
- package/lib/{chunk-AO3E22CS.mjs → chunk-WWGJZNXJ.mjs} +74 -4
- package/lib/chunk-WWGJZNXJ.mjs.map +1 -0
- package/lib/chunk-ZGOHB4RA.mjs +96 -0
- package/lib/chunk-ZGOHB4RA.mjs.map +1 -0
- package/lib/{events-DGep6C7w.d.mts → events-DPodvl07.d.mts} +3 -3
- package/lib/{events-DGep6C7w.d.ts → events-DPodvl07.d.ts} +3 -3
- package/lib/index.d.mts +2 -2
- package/lib/index.d.ts +4 -4
- package/lib/index.js +1045 -9
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +9 -11
- package/lib/index.mjs.map +1 -1
- package/lib/pre-token-generation.handler.js +1356 -10
- package/lib/pre-token-generation.handler.js.map +1 -1
- package/lib/pre-token-generation.handler.mjs +103 -5
- package/lib/pre-token-generation.handler.mjs.map +1 -1
- package/lib/provision-default-workspace.handler.js +1172 -1
- package/lib/provision-default-workspace.handler.js.map +1 -1
- package/lib/provision-default-workspace.handler.mjs +5 -5
- package/lib/rest-api-lambda.handler.js +2769 -2434
- package/lib/rest-api-lambda.handler.js.map +1 -1
- package/lib/rest-api-lambda.handler.mjs +630 -1464
- package/lib/rest-api-lambda.handler.mjs.map +1 -1
- package/lib/seed-demo-data.handler.d.mts +2 -2
- package/lib/seed-demo-data.handler.d.ts +2 -2
- package/lib/seed-demo-data.handler.js +1174 -10
- package/lib/seed-demo-data.handler.js.map +1 -1
- package/lib/seed-demo-data.handler.mjs +5 -5
- package/lib/seed-system-data.handler.js +15 -5
- package/lib/seed-system-data.handler.js.map +1 -1
- package/lib/seed-system-data.handler.mjs +9 -9
- package/lib/seed-system-data.handler.mjs.map +1 -1
- package/package.json +1 -1
- package/lib/chunk-AO3E22CS.mjs.map +0 -1
- package/lib/chunk-JUNL76HF.mjs +0 -428
- package/lib/chunk-JUNL76HF.mjs.map +0 -1
- package/lib/chunk-QMIOLLAS.mjs.map +0 -1
- package/lib/chunk-VYDIGFIX.mjs.map +0 -1
- package/lib/chunk-YZZDUJHI.mjs +0 -37
- package/lib/chunk-YZZDUJHI.mjs.map +0 -1
- /package/lib/{chunk-CHPEQRXU.mjs.map → chunk-6J7NQ6A4.mjs.map} +0 -0
- /package/lib/{chunk-YU2HRNUP.mjs.map → chunk-AJ3G3THO.mjs.map} +0 -0
- /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-
|
|
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 `
|
|
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-
|
|
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 `
|
|
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.
|