@openhi/constructs 0.0.159 → 0.0.160
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-EFB5OFM7.mjs +500 -0
- package/lib/chunk-EFB5OFM7.mjs.map +1 -0
- package/lib/chunk-QFHYTCVY.mjs +4616 -0
- package/lib/chunk-QFHYTCVY.mjs.map +1 -0
- package/lib/{events-DTgo2dcW.d.mts → events-TG654e7L.d.mts} +68 -19
- package/lib/{events-DTgo2dcW.d.ts → events-TG654e7L.d.ts} +68 -19
- package/lib/index.d.mts +1144 -3
- package/lib/index.d.ts +1248 -21
- package/lib/index.js +3570 -74
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +244 -4
- package/lib/index.mjs.map +1 -1
- package/lib/provision-default-workspace.handler.js +4 -4
- package/lib/provision-default-workspace.handler.js.map +1 -1
- package/lib/provision-default-workspace.handler.mjs +4 -4
- package/lib/provision-default-workspace.handler.mjs.map +1 -1
- package/lib/rest-api-lambda.handler.mjs +259 -531
- package/lib/rest-api-lambda.handler.mjs.map +1 -1
- package/lib/seed-demo-data.handler.d.mts +1 -1
- package/lib/seed-demo-data.handler.d.ts +1 -1
- package/lib/seed-demo-data.handler.js +3713 -107
- package/lib/seed-demo-data.handler.js.map +1 -1
- package/lib/seed-demo-data.handler.mjs +2 -2
- package/package.json +1 -1
- package/lib/chunk-BQMJSDOD.mjs +0 -1136
- package/lib/chunk-BQMJSDOD.mjs.map +0 -1
- package/lib/chunk-E6MCKJVS.mjs +0 -212
- package/lib/chunk-E6MCKJVS.mjs.map +0 -1
|
@@ -3710,13 +3710,13 @@ var handler = async (event) => {
|
|
|
3710
3710
|
};
|
|
3711
3711
|
const tenantResource = {
|
|
3712
3712
|
id: tenantId,
|
|
3713
|
-
|
|
3714
|
-
|
|
3713
|
+
name: `${displayName}'s Practice`,
|
|
3714
|
+
active: true
|
|
3715
3715
|
};
|
|
3716
3716
|
const workspaceResource = {
|
|
3717
3717
|
id: workspaceId,
|
|
3718
|
-
|
|
3719
|
-
|
|
3718
|
+
name: "Default Workspace",
|
|
3719
|
+
active: true,
|
|
3720
3720
|
tenant: { reference: `Tenant/${tenantId}` }
|
|
3721
3721
|
};
|
|
3722
3722
|
const userResource = {
|