// 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`. import { Environment } from "./environment.interface"; export const CLIENT_ID = 'MyArrowUI'; const API_GATEWAY_HTTP = 'https://dev-myarrow-api.arrow.com'; export const TIMESTAMP = new Date().getTime(); export const environment: Environment = { production: false, devTool: true, baseUrls: { serviceSecurity: API_GATEWAY_HTTP + '/security' }, bomConfig: { target: 'myarrow', clientId: 'MyArrowUI', apis: { security: { protocol: 'https', domain: 'arrow.com', subdomain: 'dev-myarrow-api', path: 'security' }, cart: { protocol: 'https', domain: 'arrow.com', subdomain: 'dev-myarrow-api', path: 'shoppingcarts' }, user: { protocol: 'https', domain: 'arrow.com', subdomain: 'dev-myarrow-api', path: 'users' }, bom: { domain: 'arrow.{topDomain}', subdomain: 'dev-design', path: 'bom/v2' }, myprojects: { protocol: 'https', domain: 'arrow.com', subdomain: 'dev', path: 'projects/api/v3' } } } };