97 lines
1.7 KiB
TypeScript
97 lines
1.7 KiB
TypeScript
|
import {
|
||
|
Environment,
|
||
|
commonApiUrls,
|
||
|
commonApiacceptableFileExtensions,
|
||
|
publicApiUrls,
|
||
|
externalApiUrls,
|
||
|
piUrls,
|
||
|
protocolUrls,
|
||
|
messageApiUrls
|
||
|
} from './environment.type';
|
||
|
import { DeviceType } from '@ucap-webmessenger/core';
|
||
|
|
||
|
export const environment: Environment = {
|
||
|
production: false,
|
||
|
title: `DS Talk`,
|
||
|
|
||
|
companyConfig: {
|
||
|
companyGroupCode: 'LG'
|
||
|
},
|
||
|
|
||
|
productConfig: {
|
||
|
productId: 'PRO_000482',
|
||
|
productName: 'EZMessenger',
|
||
|
authentication: {
|
||
|
usePrivateInformationAgree: false
|
||
|
},
|
||
|
updateCheckConfig: {
|
||
|
deviceType: DeviceType.Renderer,
|
||
|
intervalHour: 1
|
||
|
}
|
||
|
},
|
||
|
|
||
|
commonApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: 'messenger.daesang.com',
|
||
|
port: 8011
|
||
|
},
|
||
|
urls: commonApiUrls,
|
||
|
acceptableFileExtensions: commonApiacceptableFileExtensions
|
||
|
},
|
||
|
|
||
|
publicApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: 'messenger.daesang.com',
|
||
|
port: 8011
|
||
|
},
|
||
|
urls: publicApiUrls
|
||
|
},
|
||
|
|
||
|
externalApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: 'messenger.daesang.com',
|
||
|
port: 8011
|
||
|
},
|
||
|
urls: externalApiUrls
|
||
|
},
|
||
|
|
||
|
messageApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: 'messenger.daesang.com',
|
||
|
port: 9098
|
||
|
},
|
||
|
urls: messageApiUrls
|
||
|
},
|
||
|
|
||
|
piModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: 'messenger.daesang.com',
|
||
|
port: 9097
|
||
|
},
|
||
|
urls: piUrls
|
||
|
},
|
||
|
|
||
|
protocolModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'ws',
|
||
|
domain: 'messenger.daesang.com',
|
||
|
port: 8080
|
||
|
},
|
||
|
urls: protocolUrls,
|
||
|
reconnect: {
|
||
|
delay: 1000
|
||
|
},
|
||
|
requestId: {
|
||
|
min: 1,
|
||
|
max: 59999
|
||
|
}
|
||
|
},
|
||
|
|
||
|
nativeModuleConfig: {}
|
||
|
};
|