@openhi/constructs 0.0.136 → 0.0.138
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/index.d.mts +51 -1
- package/lib/index.d.ts +51 -1
- package/lib/index.js +926 -828
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +948 -852
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/index.d.mts
CHANGED
|
@@ -1516,6 +1516,22 @@ declare class UserOnboardingWorkflow extends Construct {
|
|
|
1516
1516
|
/**
|
|
1517
1517
|
* @see sites/www-docs/content/packages/@openhi/constructs/services/open-hi-auth-service.md
|
|
1518
1518
|
*/
|
|
1519
|
+
/**
|
|
1520
|
+
* Localhost OAuth callback URLs auto-injected into the Cognito User Pool
|
|
1521
|
+
* Client on every non-prod (`stageType !== "prod"`) deploy. Both schemes
|
|
1522
|
+
* (`http`, `https`) on `localhost:3000` are covered so admin-console
|
|
1523
|
+
* previews running on `localhost` can complete the redirect flow.
|
|
1524
|
+
*
|
|
1525
|
+
* Excluded from prod on purpose — a prod Cognito client that accepts
|
|
1526
|
+
* `localhost` redirects is a phishing vector.
|
|
1527
|
+
*/
|
|
1528
|
+
declare const LOCALHOST_OAUTH_CALLBACK_URLS: ReadonlyArray<string>;
|
|
1529
|
+
/**
|
|
1530
|
+
* Localhost OAuth logout URLs auto-injected alongside
|
|
1531
|
+
* {@link LOCALHOST_OAUTH_CALLBACK_URLS} on non-prod deploys so the hosted
|
|
1532
|
+
* UI sign-out flow can redirect back to a local dev server.
|
|
1533
|
+
*/
|
|
1534
|
+
declare const LOCALHOST_OAUTH_LOGOUT_URLS: ReadonlyArray<string>;
|
|
1519
1535
|
interface OpenHiAuthServiceProps extends OpenHiServiceProps {
|
|
1520
1536
|
/**
|
|
1521
1537
|
* Optional props for the Cognito User Pool.
|
|
@@ -1658,10 +1674,33 @@ declare class OpenHiAuthService extends OpenHiService {
|
|
|
1658
1674
|
protected grantPostConfirmationPermissions(): void;
|
|
1659
1675
|
/**
|
|
1660
1676
|
* Creates the User Pool Client and exports its ID to SSM (AUTH service type).
|
|
1677
|
+
* OAuth flows are enabled with auto-injected callback/logout URLs derived
|
|
1678
|
+
* from this stack's branch context (see {@link resolveOAuthRedirectUrls}).
|
|
1661
1679
|
* Look up via {@link OpenHiAuthService.userPoolClientFromConstruct}.
|
|
1662
1680
|
* Override to customize.
|
|
1663
1681
|
*/
|
|
1664
1682
|
protected createUserPoolClient(): IUserPoolClient;
|
|
1683
|
+
/**
|
|
1684
|
+
* Returns the OAuth `callbackUrls` and `logoutUrls` the Cognito User Pool
|
|
1685
|
+
* Client should accept. Composed from the same branch context the website
|
|
1686
|
+
* service will see at synth time:
|
|
1687
|
+
*
|
|
1688
|
+
* - `https://admin{,-<childZonePrefix>}.<zone>/oauth/{callback,logout}`
|
|
1689
|
+
* - `https://www{,-<childZonePrefix>}.<zone>/oauth/{callback,logout}`
|
|
1690
|
+
*
|
|
1691
|
+
* Both deployed-host pairs are auto-injected on every stage. On non-prod
|
|
1692
|
+
* stages the localhost dev URLs from {@link LOCALHOST_OAUTH_CALLBACK_URLS}
|
|
1693
|
+
* / {@link LOCALHOST_OAUTH_LOGOUT_URLS} join the merge; on prod they are
|
|
1694
|
+
* deliberately excluded.
|
|
1695
|
+
*
|
|
1696
|
+
* If `zoneName` is absent (no-DNS test configurations), the deployed-host
|
|
1697
|
+
* pairs are skipped — only the localhost set survives, and only on
|
|
1698
|
+
* non-prod. Override to customize.
|
|
1699
|
+
*/
|
|
1700
|
+
protected resolveOAuthRedirectUrls(): {
|
|
1701
|
+
callbackUrls: Array<string>;
|
|
1702
|
+
logoutUrls: Array<string>;
|
|
1703
|
+
};
|
|
1665
1704
|
/**
|
|
1666
1705
|
* Creates the User Pool Domain (Cognito hosted UI) and exports domain name to SSM.
|
|
1667
1706
|
* Look up via {@link OpenHiAuthService.userPoolDomainFromConstruct}.
|
|
@@ -1983,6 +2022,17 @@ declare class OpenHiRestApiService extends OpenHiService {
|
|
|
1983
2022
|
* Override to customize.
|
|
1984
2023
|
*/
|
|
1985
2024
|
protected createRootHttpApi(domainName: DomainName): RootHttpApi;
|
|
2025
|
+
/**
|
|
2026
|
+
* Returns the admin-console and marketing-website origins this REST API
|
|
2027
|
+
* stack should accept by default, composed from the same branch context
|
|
2028
|
+
* the website service will see at synth time. Both hostnames are
|
|
2029
|
+
* `https://`-only — they always resolve to real DNS records.
|
|
2030
|
+
*
|
|
2031
|
+
* Auto-injected on every stage (no `isNonProd` gate) so the admin SPA can
|
|
2032
|
+
* call the API cross-origin without the caller having to predict the
|
|
2033
|
+
* per-deploy hostname. Override to customize the auto-injected set.
|
|
2034
|
+
*/
|
|
2035
|
+
protected resolveAutoInjectedCorsOrigins(): ReadonlyArray<string>;
|
|
1986
2036
|
/**
|
|
1987
2037
|
* Builds the full `CorsPreflightOptions` from a merged origins array,
|
|
1988
2038
|
* filling defaults for `allowMethods`/`allowHeaders`/`allowCredentials`/
|
|
@@ -2802,4 +2852,4 @@ declare class RenameCascadeWorkflow extends Construct {
|
|
|
2802
2852
|
constructor(scope: Construct, props: RenameCascadeWorkflowProps);
|
|
2803
2853
|
}
|
|
2804
2854
|
|
|
2805
|
-
export { ADMIN_DOMAIN_PREFIX, type BuildParameterNameProps, ChildHostedZone, type ChildHostedZoneProps, CognitoUserPool, CognitoUserPoolClient, CognitoUserPoolDomain, CognitoUserPoolKmsKey, type ComposeServiceDomainOptions, type ComputeBranchHashOptions, ControlEventBus, DATA_STORE_CHANGE_DETAIL_MAX_UTF8_BYTES, DATA_STORE_CHANGE_DETAIL_TYPE, DATA_STORE_CHANGE_EVENT_SOURCE, DEFAULT_PREVIEW_EXPIRATION_DAYS, DEMO_DATA_PLANE_FIXTURES, DEV_CORS_ALLOW_ORIGINS, DataEventBus, type DataEventBusOptions, DataStoreHistoricalArchive, type DataStoreHistoricalArchiveProps, DataStorePostgresReplica, type DataStorePostgresReplicaProps, type DemoWorkspaceDataPlaneFixtures, DiscoverableStringParameter, type DiscoverableStringParameterProps, DynamoDbDataStore, type DynamoDbDataStoreProps, type FhirCurrentResourceChangeDetail, type GrantConsumerOptions, HostingMode, OPENHI_TAG_SUFFIX_BRANCH_NAME, OPENHI_TAG_SUFFIX_REPO_NAME, OPENHI_TAG_SUFFIX_SERVICE_TYPE, OPENHI_TAG_SUFFIX_STAGE_TYPE, OpenHiApp, type OpenHiAppProps, OpenHiAuthService, type OpenHiAuthServiceProps, OpenHiDataService, type OpenHiDataServiceProps, OpenHiEnvironment, type OpenHiEnvironmentProps, OpenHiGlobalService, type OpenHiGlobalServiceProps, OpenHiGraphqlService, type OpenHiGraphqlServiceProps, OpenHiRestApiService, type OpenHiRestApiServiceProps, OpenHiService, type OpenHiServiceProps, type OpenHiServiceType, OpenHiStage, type OpenHiStageProps, OpenHiWebsiteService, type OpenHiWebsiteServiceProps, OpsEventBus, OwningDeleteCascadeLambdas, type OwningDeleteCascadeLambdasProps, OwningDeleteCascadeWorkflow, type OwningDeleteCascadeWorkflowProps, PER_BRANCH_PREVIEW_PREFIX, POSTGRES_REPLICA_CLUSTER_ARN_SSM_NAME, POSTGRES_REPLICA_DATABASE_NAME_SSM_NAME, POSTGRES_REPLICA_SECRET_ARN_SSM_NAME, PerBranchHostname, type PerBranchHostnameProps, PlatformDeployBridge, PlatformDeployBridgeLambda, type PlatformDeployBridgeLambdaProps, type PlatformDeployBridgeProps, PostAuthenticationLambda, PostConfirmationLambda, type PostConfirmationLambdaProps, PreTokenGenerationLambda, type PreTokenGenerationLambdaProps, ProvisionDefaultWorkspaceLambda, type ProvisionDefaultWorkspaceLambdaProps, REST_API_BASE_URL_SSM_NAME, REST_API_DOMAIN_NAME_SSM_NAME, RenameCascadeLambdas, type RenameCascadeLambdasProps, RenameCascadeWorkflow, type RenameCascadeWorkflowProps, RootGraphqlApi, type RootGraphqlApiProps, RootHostedZone, RootHttpApi, type RootHttpApiProps, RootWildcardCertificate, SEED_SYSTEM_DATA_ACTOR_SYSTEM, SEED_SYSTEM_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_CONTROL_BUS_ENV_VAR, SSM_PARAM_NAME_FULL_DOMAIN, STATIC_HOSTING_SERVICE_TYPE, SeedDemoDataLambda, type SeedDemoDataLambdaProps, SeedDemoDataWorkflow, type SeedDemoDataWorkflowProps, SeedSystemDataLambda, type SeedSystemDataLambdaProps, SeedSystemDataWorkflow, type SeedSystemDataWorkflowProps, StaticContent, type StaticContentProps, StaticHosting, type StaticHostingProps, UserOnboardingWorkflow, type UserOnboardingWorkflowProps, WorkflowDedupConsumerNameInvalidError, WorkflowDedupTable, WorkflowDedupTableDuplicateError, type WorkflowDedupTableProps, buildFhirCurrentResourceChangeDetail, computeBranchHash, getDynamoDbDataStoreTableName, getPostgresReplicaSchemaName, getWorkflowDedupTableName, openHiTagKey };
|
|
2855
|
+
export { ADMIN_DOMAIN_PREFIX, type BuildParameterNameProps, ChildHostedZone, type ChildHostedZoneProps, CognitoUserPool, CognitoUserPoolClient, CognitoUserPoolDomain, CognitoUserPoolKmsKey, type ComposeServiceDomainOptions, type ComputeBranchHashOptions, ControlEventBus, DATA_STORE_CHANGE_DETAIL_MAX_UTF8_BYTES, DATA_STORE_CHANGE_DETAIL_TYPE, DATA_STORE_CHANGE_EVENT_SOURCE, DEFAULT_PREVIEW_EXPIRATION_DAYS, DEMO_DATA_PLANE_FIXTURES, DEV_CORS_ALLOW_ORIGINS, DataEventBus, type DataEventBusOptions, DataStoreHistoricalArchive, type DataStoreHistoricalArchiveProps, DataStorePostgresReplica, type DataStorePostgresReplicaProps, type DemoWorkspaceDataPlaneFixtures, DiscoverableStringParameter, type DiscoverableStringParameterProps, DynamoDbDataStore, type DynamoDbDataStoreProps, type FhirCurrentResourceChangeDetail, type GrantConsumerOptions, HostingMode, LOCALHOST_OAUTH_CALLBACK_URLS, LOCALHOST_OAUTH_LOGOUT_URLS, OPENHI_TAG_SUFFIX_BRANCH_NAME, OPENHI_TAG_SUFFIX_REPO_NAME, OPENHI_TAG_SUFFIX_SERVICE_TYPE, OPENHI_TAG_SUFFIX_STAGE_TYPE, OpenHiApp, type OpenHiAppProps, OpenHiAuthService, type OpenHiAuthServiceProps, OpenHiDataService, type OpenHiDataServiceProps, OpenHiEnvironment, type OpenHiEnvironmentProps, OpenHiGlobalService, type OpenHiGlobalServiceProps, OpenHiGraphqlService, type OpenHiGraphqlServiceProps, OpenHiRestApiService, type OpenHiRestApiServiceProps, OpenHiService, type OpenHiServiceProps, type OpenHiServiceType, OpenHiStage, type OpenHiStageProps, OpenHiWebsiteService, type OpenHiWebsiteServiceProps, OpsEventBus, OwningDeleteCascadeLambdas, type OwningDeleteCascadeLambdasProps, OwningDeleteCascadeWorkflow, type OwningDeleteCascadeWorkflowProps, PER_BRANCH_PREVIEW_PREFIX, POSTGRES_REPLICA_CLUSTER_ARN_SSM_NAME, POSTGRES_REPLICA_DATABASE_NAME_SSM_NAME, POSTGRES_REPLICA_SECRET_ARN_SSM_NAME, PerBranchHostname, type PerBranchHostnameProps, PlatformDeployBridge, PlatformDeployBridgeLambda, type PlatformDeployBridgeLambdaProps, type PlatformDeployBridgeProps, PostAuthenticationLambda, PostConfirmationLambda, type PostConfirmationLambdaProps, PreTokenGenerationLambda, type PreTokenGenerationLambdaProps, ProvisionDefaultWorkspaceLambda, type ProvisionDefaultWorkspaceLambdaProps, REST_API_BASE_URL_SSM_NAME, REST_API_DOMAIN_NAME_SSM_NAME, RenameCascadeLambdas, type RenameCascadeLambdasProps, RenameCascadeWorkflow, type RenameCascadeWorkflowProps, RootGraphqlApi, type RootGraphqlApiProps, RootHostedZone, RootHttpApi, type RootHttpApiProps, RootWildcardCertificate, SEED_SYSTEM_DATA_ACTOR_SYSTEM, SEED_SYSTEM_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_CONTROL_BUS_ENV_VAR, SSM_PARAM_NAME_FULL_DOMAIN, STATIC_HOSTING_SERVICE_TYPE, SeedDemoDataLambda, type SeedDemoDataLambdaProps, SeedDemoDataWorkflow, type SeedDemoDataWorkflowProps, SeedSystemDataLambda, type SeedSystemDataLambdaProps, SeedSystemDataWorkflow, type SeedSystemDataWorkflowProps, StaticContent, type StaticContentProps, StaticHosting, type StaticHostingProps, UserOnboardingWorkflow, type UserOnboardingWorkflowProps, WorkflowDedupConsumerNameInvalidError, WorkflowDedupTable, WorkflowDedupTableDuplicateError, type WorkflowDedupTableProps, buildFhirCurrentResourceChangeDetail, computeBranchHash, getDynamoDbDataStoreTableName, getPostgresReplicaSchemaName, getWorkflowDedupTableName, openHiTagKey };
|
package/lib/index.d.ts
CHANGED
|
@@ -2153,6 +2153,22 @@ declare class UserOnboardingWorkflow extends Construct {
|
|
|
2153
2153
|
/**
|
|
2154
2154
|
* @see sites/www-docs/content/packages/@openhi/constructs/services/open-hi-auth-service.md
|
|
2155
2155
|
*/
|
|
2156
|
+
/**
|
|
2157
|
+
* Localhost OAuth callback URLs auto-injected into the Cognito User Pool
|
|
2158
|
+
* Client on every non-prod (`stageType !== "prod"`) deploy. Both schemes
|
|
2159
|
+
* (`http`, `https`) on `localhost:3000` are covered so admin-console
|
|
2160
|
+
* previews running on `localhost` can complete the redirect flow.
|
|
2161
|
+
*
|
|
2162
|
+
* Excluded from prod on purpose — a prod Cognito client that accepts
|
|
2163
|
+
* `localhost` redirects is a phishing vector.
|
|
2164
|
+
*/
|
|
2165
|
+
declare const LOCALHOST_OAUTH_CALLBACK_URLS: ReadonlyArray<string>;
|
|
2166
|
+
/**
|
|
2167
|
+
* Localhost OAuth logout URLs auto-injected alongside
|
|
2168
|
+
* {@link LOCALHOST_OAUTH_CALLBACK_URLS} on non-prod deploys so the hosted
|
|
2169
|
+
* UI sign-out flow can redirect back to a local dev server.
|
|
2170
|
+
*/
|
|
2171
|
+
declare const LOCALHOST_OAUTH_LOGOUT_URLS: ReadonlyArray<string>;
|
|
2156
2172
|
interface OpenHiAuthServiceProps extends OpenHiServiceProps {
|
|
2157
2173
|
/**
|
|
2158
2174
|
* Optional props for the Cognito User Pool.
|
|
@@ -2295,10 +2311,33 @@ declare class OpenHiAuthService extends OpenHiService {
|
|
|
2295
2311
|
protected grantPostConfirmationPermissions(): void;
|
|
2296
2312
|
/**
|
|
2297
2313
|
* Creates the User Pool Client and exports its ID to SSM (AUTH service type).
|
|
2314
|
+
* OAuth flows are enabled with auto-injected callback/logout URLs derived
|
|
2315
|
+
* from this stack's branch context (see {@link resolveOAuthRedirectUrls}).
|
|
2298
2316
|
* Look up via {@link OpenHiAuthService.userPoolClientFromConstruct}.
|
|
2299
2317
|
* Override to customize.
|
|
2300
2318
|
*/
|
|
2301
2319
|
protected createUserPoolClient(): IUserPoolClient;
|
|
2320
|
+
/**
|
|
2321
|
+
* Returns the OAuth `callbackUrls` and `logoutUrls` the Cognito User Pool
|
|
2322
|
+
* Client should accept. Composed from the same branch context the website
|
|
2323
|
+
* service will see at synth time:
|
|
2324
|
+
*
|
|
2325
|
+
* - `https://admin{,-<childZonePrefix>}.<zone>/oauth/{callback,logout}`
|
|
2326
|
+
* - `https://www{,-<childZonePrefix>}.<zone>/oauth/{callback,logout}`
|
|
2327
|
+
*
|
|
2328
|
+
* Both deployed-host pairs are auto-injected on every stage. On non-prod
|
|
2329
|
+
* stages the localhost dev URLs from {@link LOCALHOST_OAUTH_CALLBACK_URLS}
|
|
2330
|
+
* / {@link LOCALHOST_OAUTH_LOGOUT_URLS} join the merge; on prod they are
|
|
2331
|
+
* deliberately excluded.
|
|
2332
|
+
*
|
|
2333
|
+
* If `zoneName` is absent (no-DNS test configurations), the deployed-host
|
|
2334
|
+
* pairs are skipped — only the localhost set survives, and only on
|
|
2335
|
+
* non-prod. Override to customize.
|
|
2336
|
+
*/
|
|
2337
|
+
protected resolveOAuthRedirectUrls(): {
|
|
2338
|
+
callbackUrls: Array<string>;
|
|
2339
|
+
logoutUrls: Array<string>;
|
|
2340
|
+
};
|
|
2302
2341
|
/**
|
|
2303
2342
|
* Creates the User Pool Domain (Cognito hosted UI) and exports domain name to SSM.
|
|
2304
2343
|
* Look up via {@link OpenHiAuthService.userPoolDomainFromConstruct}.
|
|
@@ -2620,6 +2659,17 @@ declare class OpenHiRestApiService extends OpenHiService {
|
|
|
2620
2659
|
* Override to customize.
|
|
2621
2660
|
*/
|
|
2622
2661
|
protected createRootHttpApi(domainName: DomainName): RootHttpApi;
|
|
2662
|
+
/**
|
|
2663
|
+
* Returns the admin-console and marketing-website origins this REST API
|
|
2664
|
+
* stack should accept by default, composed from the same branch context
|
|
2665
|
+
* the website service will see at synth time. Both hostnames are
|
|
2666
|
+
* `https://`-only — they always resolve to real DNS records.
|
|
2667
|
+
*
|
|
2668
|
+
* Auto-injected on every stage (no `isNonProd` gate) so the admin SPA can
|
|
2669
|
+
* call the API cross-origin without the caller having to predict the
|
|
2670
|
+
* per-deploy hostname. Override to customize the auto-injected set.
|
|
2671
|
+
*/
|
|
2672
|
+
protected resolveAutoInjectedCorsOrigins(): ReadonlyArray<string>;
|
|
2623
2673
|
/**
|
|
2624
2674
|
* Builds the full `CorsPreflightOptions` from a merged origins array,
|
|
2625
2675
|
* filling defaults for `allowMethods`/`allowHeaders`/`allowCredentials`/
|
|
@@ -3439,5 +3489,5 @@ declare class RenameCascadeWorkflow extends Construct {
|
|
|
3439
3489
|
constructor(scope: Construct, props: RenameCascadeWorkflowProps);
|
|
3440
3490
|
}
|
|
3441
3491
|
|
|
3442
|
-
export { ADMIN_DOMAIN_PREFIX, BRIDGED_STATUSES, CLOUDFORMATION_EVENT_SOURCE, CLOUDFORMATION_STACK_STATUS_CHANGE_DETAIL_TYPE, CONTROL_EVENT_BUS_NAME_ENV_VAR, ChildHostedZone, CognitoUserPool, CognitoUserPoolClient, CognitoUserPoolDomain, CognitoUserPoolKmsKey, ControlEventBus, DATA_STORE_CHANGE_DETAIL_MAX_UTF8_BYTES, DATA_STORE_CHANGE_DETAIL_TYPE, DATA_STORE_CHANGE_EVENT_SOURCE, DEFAULT_PREVIEW_EXPIRATION_DAYS, DEMO_DATA_PLANE_FIXTURES, DEMO_PERIOD, DEMO_TENANT_SPECS, DEMO_URN_SYSTEM, DEV_CORS_ALLOW_ORIGINS, DEV_USERS, DataEventBus, DataStoreHistoricalArchive, DataStorePostgresReplica, DiscoverableStringParameter, DynamoDbDataStore, OPENHI_REPO_TAG_KEY_ENV_VAR, OPENHI_RESOURCE_URN_SYSTEM, OPENHI_TAG_KEY_PREFIX_ENV_VAR, OPENHI_TAG_SUFFIX_BRANCH_NAME, OPENHI_TAG_SUFFIX_REPO_NAME, OPENHI_TAG_SUFFIX_SERVICE_TYPE, OPENHI_TAG_SUFFIX_STAGE_TYPE, OWNING_DELETE_CASCADE_CONSUMER_NAME, OWNING_DELETE_CASCADE_DEFAULT_CONCURRENCY, OWNING_DELETE_CASCADE_STUCK_THRESHOLD_MINUTES, OWNING_DELETE_OPS_EVENT_BUS_ENV_VAR, OpenHiApp, OpenHiAuthService, OpenHiDataService, OpenHiEnvironment, OpenHiGlobalService, OpenHiGraphqlService, OpenHiRestApiService, OpenHiService, OpenHiStage, OpenHiWebsiteService, OpsEventBus, OwningDeleteCascadeLambdas, OwningDeleteCascadeWorkflow, PER_BRANCH_PREVIEW_PREFIX, PLACEHOLDER_TENANT_ID, PLACEHOLDER_WORKSPACE_ID, PLATFORM_DEPLOY_BRIDGE_ACTOR_SYSTEM, PLATFORM_SCOPE_TENANT_ID, POSTGRES_REPLICA_CLUSTER_ARN_SSM_NAME, POSTGRES_REPLICA_DATABASE_NAME_SSM_NAME, POSTGRES_REPLICA_SECRET_ARN_SSM_NAME, PROVISION_DEFAULT_WORKSPACE_DETAIL_TYPE, PerBranchHostname, PlatformDeployBridge, PlatformDeployBridgeLambda, PostAuthenticationLambda, PostConfirmationLambda, PreTokenGenerationLambda, ProvisionDefaultWorkspaceLambda, RENAME_CASCADE_CONSUMER_NAME, RENAME_CASCADE_DEFAULT_CONCURRENCY, RENAME_CASCADE_FAILED_THRESHOLD, RENAME_CASCADE_OPS_EVENT_BUS_ENV_VAR, RENAME_CASCADE_SLOW_THRESHOLD_SECONDS, REST_API_BASE_URL_SSM_NAME, REST_API_DOMAIN_NAME_SSM_NAME, RenameCascadeLambdas, RenameCascadeWorkflow, RootGraphqlApi, RootHostedZone, RootHttpApi, RootWildcardCertificate, SEED_DEMO_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_ACTOR_SYSTEM, SEED_SYSTEM_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_CONTROL_BUS_ENV_VAR, SSM_PARAM_NAME_FULL_DOMAIN, STATIC_HOSTING_SERVICE_TYPE, SeedDemoDataLambda, SeedDemoDataWorkflow, SeedSystemDataLambda, SeedSystemDataWorkflow, StaticContent, StaticHosting, USER_ONBOARDING_EVENT_SOURCE, UserOnboardingWorkflow, WorkflowDedupConsumerNameInvalidError, WorkflowDedupTable, WorkflowDedupTableDuplicateError, buildFhirCurrentResourceChangeDetail, buildProvisionDefaultWorkspaceRequestedDetail, computeBranchHash, demoMembershipId, demoRoleAssignmentId, demoRolesForUserInTenant, demoScenarioIdentifier, getDynamoDbDataStoreTableName, getPostgresReplicaSchemaName, getWorkflowDedupTableName, openHiTagKey, openhiResourceIdentifier };
|
|
3492
|
+
export { ADMIN_DOMAIN_PREFIX, BRIDGED_STATUSES, CLOUDFORMATION_EVENT_SOURCE, CLOUDFORMATION_STACK_STATUS_CHANGE_DETAIL_TYPE, CONTROL_EVENT_BUS_NAME_ENV_VAR, ChildHostedZone, CognitoUserPool, CognitoUserPoolClient, CognitoUserPoolDomain, CognitoUserPoolKmsKey, ControlEventBus, DATA_STORE_CHANGE_DETAIL_MAX_UTF8_BYTES, DATA_STORE_CHANGE_DETAIL_TYPE, DATA_STORE_CHANGE_EVENT_SOURCE, DEFAULT_PREVIEW_EXPIRATION_DAYS, DEMO_DATA_PLANE_FIXTURES, DEMO_PERIOD, DEMO_TENANT_SPECS, DEMO_URN_SYSTEM, DEV_CORS_ALLOW_ORIGINS, DEV_USERS, DataEventBus, DataStoreHistoricalArchive, DataStorePostgresReplica, DiscoverableStringParameter, DynamoDbDataStore, LOCALHOST_OAUTH_CALLBACK_URLS, LOCALHOST_OAUTH_LOGOUT_URLS, OPENHI_REPO_TAG_KEY_ENV_VAR, OPENHI_RESOURCE_URN_SYSTEM, OPENHI_TAG_KEY_PREFIX_ENV_VAR, OPENHI_TAG_SUFFIX_BRANCH_NAME, OPENHI_TAG_SUFFIX_REPO_NAME, OPENHI_TAG_SUFFIX_SERVICE_TYPE, OPENHI_TAG_SUFFIX_STAGE_TYPE, OWNING_DELETE_CASCADE_CONSUMER_NAME, OWNING_DELETE_CASCADE_DEFAULT_CONCURRENCY, OWNING_DELETE_CASCADE_STUCK_THRESHOLD_MINUTES, OWNING_DELETE_OPS_EVENT_BUS_ENV_VAR, OpenHiApp, OpenHiAuthService, OpenHiDataService, OpenHiEnvironment, OpenHiGlobalService, OpenHiGraphqlService, OpenHiRestApiService, OpenHiService, OpenHiStage, OpenHiWebsiteService, OpsEventBus, OwningDeleteCascadeLambdas, OwningDeleteCascadeWorkflow, PER_BRANCH_PREVIEW_PREFIX, PLACEHOLDER_TENANT_ID, PLACEHOLDER_WORKSPACE_ID, PLATFORM_DEPLOY_BRIDGE_ACTOR_SYSTEM, PLATFORM_SCOPE_TENANT_ID, POSTGRES_REPLICA_CLUSTER_ARN_SSM_NAME, POSTGRES_REPLICA_DATABASE_NAME_SSM_NAME, POSTGRES_REPLICA_SECRET_ARN_SSM_NAME, PROVISION_DEFAULT_WORKSPACE_DETAIL_TYPE, PerBranchHostname, PlatformDeployBridge, PlatformDeployBridgeLambda, PostAuthenticationLambda, PostConfirmationLambda, PreTokenGenerationLambda, ProvisionDefaultWorkspaceLambda, RENAME_CASCADE_CONSUMER_NAME, RENAME_CASCADE_DEFAULT_CONCURRENCY, RENAME_CASCADE_FAILED_THRESHOLD, RENAME_CASCADE_OPS_EVENT_BUS_ENV_VAR, RENAME_CASCADE_SLOW_THRESHOLD_SECONDS, REST_API_BASE_URL_SSM_NAME, REST_API_DOMAIN_NAME_SSM_NAME, RenameCascadeLambdas, RenameCascadeWorkflow, RootGraphqlApi, RootHostedZone, RootHttpApi, RootWildcardCertificate, SEED_DEMO_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_ACTOR_SYSTEM, SEED_SYSTEM_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_CONTROL_BUS_ENV_VAR, SSM_PARAM_NAME_FULL_DOMAIN, STATIC_HOSTING_SERVICE_TYPE, SeedDemoDataLambda, SeedDemoDataWorkflow, SeedSystemDataLambda, SeedSystemDataWorkflow, StaticContent, StaticHosting, USER_ONBOARDING_EVENT_SOURCE, UserOnboardingWorkflow, WorkflowDedupConsumerNameInvalidError, WorkflowDedupTable, WorkflowDedupTableDuplicateError, buildFhirCurrentResourceChangeDetail, buildProvisionDefaultWorkspaceRequestedDetail, computeBranchHash, demoMembershipId, demoRoleAssignmentId, demoRolesForUserInTenant, demoScenarioIdentifier, getDynamoDbDataStoreTableName, getPostgresReplicaSchemaName, getWorkflowDedupTableName, openHiTagKey, openhiResourceIdentifier };
|
|
3443
3493
|
export type { BridgedStatus, BuildParameterNameProps, CascadeChunkInput, CascadeFinalizeInput, CascadeFinalizeOutput, CascadeListInput, CascadeListOutput, ChildHostedZoneProps, CloudFormationStackStatusChangeDetail, ComposeServiceDomainOptions, ComputeBranchHashOptions, DataEventBusOptions, DataStoreHistoricalArchiveProps, DataStorePostgresReplicaProps, DemoDevUser, DemoTenantSpec, DemoWorkspaceDataPlaneFixtures, DemoWorkspaceSpec, DiscoverableStringParameterProps, DynamoDbDataStoreProps, FhirCurrentResourceChangeDetail, GrantConsumerOptions, HostingMode, OpenHiAppProps, OpenHiAuthServiceProps, OpenHiDataServiceProps, OpenHiEnvironmentProps, OpenHiGlobalServiceProps, OpenHiGraphqlServiceProps, OpenHiRestApiServiceProps, OpenHiServiceProps, OpenHiServiceType, OpenHiStageProps, OpenHiWebsiteServiceProps, OwningDeleteCascadeLambdasProps, OwningDeleteCascadeWorkflowProps, PerBranchHostnameProps, PlatformDeployBridgeLambdaProps, PlatformDeployBridgeProps, PostConfirmationLambdaProps, PreTokenGenerationLambdaProps, ProvisionDefaultWorkspaceLambdaProps, ProvisionDefaultWorkspaceRequestedDetail, RenameCascadeChunkInput, RenameCascadeFinalizeInput, RenameCascadeFinalizeOutput, RenameCascadeLambdasProps, RenameCascadeListInput, RenameCascadeListOutput, RenameCascadeWorkflowProps, RootGraphqlApiProps, RootHttpApiProps, SeedDemoDataLambdaProps, SeedDemoDataWorkflowProps, SeedSystemDataLambdaProps, SeedSystemDataWorkflowProps, StaticContentProps, StaticHostingProps, UserOnboardingWorkflowProps, WorkflowDedupTableProps };
|