Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
// The list of which env maps to which file can be found in `.angular-cli.json`.
export const environment = {
production: false,
ehrServices: {
details: '/ampl-api/dstu2/v1/patients/<patientID>',
allergies: '/ampl-api/dstu2/v1/patients/<patientID>/allergies',
appointments: '/ampl-api/dstu2/v1/patients/<patientID>/appointments',
consults: '/ampl-api/dstu2/v1/patients/<patientID>/consults',
observations: '/ampl-api/dstu2/v1/patients/<patientID>/measurements',
progressNotes: '/ampl-api/dstu2/v1/patients/<patientID>/progress-notes',
immunizations: '/ampl-api/dstu2/v1/patients/<patientID>/immunizations',
problemList: '/ampl-api/dstu2/v1/patients/<patientID>/problem-list'
},
sessionServices: {
userProfiles: 'assets/mocks/identities.json',
appInfo: '/ampl-api/info/build/details',
appVersion: require('../../package.json').version,
appEnv: 'integration'
}
};