@nsshunt/stsconfig 1.27.49 → 1.27.51
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/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/types/commonTypes.d.ts +4 -0
- package/types/commonTypes.d.ts.map +1 -1
- package/types/stsconfig.d.ts.map +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1505,6 +1505,7 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1505
1505
|
stsfhirprometheusclusterport: process.env.STSFHIR_PROM_CLUSTER_PORT === void 0 ? "3015" : process.env.STSFHIR_PROM_CLUSTER_PORT,
|
|
1506
1506
|
stsfhirservicename: process.env.STSFHIR_SERVICE_NAME === void 0 ? "STSFHIR" : process.env.STSFHIR_SERVICE_NAME,
|
|
1507
1507
|
stsfhirserviceversion: process.env.STSFHIR_SERVICE_VERSION === void 0 ? "1.0.0" : process.env.STSFHIR_SERVICE_VERSION,
|
|
1508
|
+
stsfhirUseOperationalOutcomeForDelete: process.env.STSFHIR_USE_OPERATIONAL_OUTCOME_FOR_DELETE === void 0 ? true : process.env.STSFHIR_USE_OPERATIONAL_OUTCOME_FOR_DELETE === "true" ? true : false,
|
|
1508
1509
|
ststccendpoint: process.env.STSTCC_ENDPOINT === void 0 ? "https://localhost" : process.env.STSTCC_ENDPOINT,
|
|
1509
1510
|
ststcchostport: process.env.STSTCC_HOST_PORT === void 0 ? "3024" : process.env.STSTCC_HOST_PORT,
|
|
1510
1511
|
ststccport: process.env.STSTCC_PORT === void 0 ? "3024" : process.env.STSTCC_PORT,
|