소스 리펙토링

This commit is contained in:
leejinho 2020-01-06 10:33:47 +09:00
parent 1fbe8ac749
commit 1cc55c87f3
8 changed files with 13 additions and 10 deletions

View File

@ -1,4 +0,0 @@
export interface CommonUserInfo {
/** 업무 상태 */
workstatus?: string;
}

View File

@ -2,8 +2,6 @@
* Public API Surface of ucap-webmessenger-core
*/
export * from './lib/models/common-user-info';
export * from './lib/types/app-type.type';
export * from './lib/types/call-alarm.type';
export * from './lib/types/call-forward.type';

View File

@ -1,5 +1,5 @@
import { RoleCode } from '@ucap-webmessenger/protocol-authentication';
import { CommonUserInfo } from '@ucap-webmessenger/core';
import { CommonUserInfo } from '@ucap-webmessenger/protocol';
export interface UserInfoDN extends CommonUserInfo {
/** 사용자SEQ */

View File

@ -1,6 +1,6 @@
import { EmployeeType } from '@ucap-webmessenger/protocol-room';
import { RoleCode } from '@ucap-webmessenger/protocol-authentication';
import { CommonUserInfo } from '@ucap-webmessenger/core';
import { CommonUserInfo } from '@ucap-webmessenger/protocol';
export interface UserInfoF extends CommonUserInfo {
/** 사용자SEQ */

View File

@ -1,5 +1,6 @@
import { RoleCode } from '@ucap-webmessenger/protocol-authentication';
import { CallMode, CommonUserInfo } from '@ucap-webmessenger/core';
import { CallMode } from '@ucap-webmessenger/core';
import { CommonUserInfo } from '@ucap-webmessenger/protocol';
import { EmployeeType } from '@ucap-webmessenger/protocol-room';
import { WorkStatusType } from '@ucap-webmessenger/protocol-status';

View File

@ -1,6 +1,6 @@
import { RoleCode } from '@ucap-webmessenger/protocol-authentication';
import { EmployeeType } from '@ucap-webmessenger/protocol-room';
import { CommonUserInfo } from '@ucap-webmessenger/core';
import { CommonUserInfo } from '@ucap-webmessenger/protocol';
export interface UserInfo extends CommonUserInfo {
/** 사용자SEQ */

View File

@ -0,0 +1,6 @@
import { WorkStatusType } from '@ucap-webmessenger/protocol-status';
export interface CommonUserInfo {
/** 업무 상태 */
workstatus?: WorkStatusType;
}

View File

@ -2,6 +2,8 @@
* Public API Surface of ucap-webmessenger-protocol
*/
export * from './lib/models/common-user-info';
export * from './lib/protocols/packet';
export * from './lib/protocols/protocol';