소스 리펙토링
This commit is contained in:
parent
1fbe8ac749
commit
1cc55c87f3
|
@ -1,4 +0,0 @@
|
|||
export interface CommonUserInfo {
|
||||
/** 업무 상태 */
|
||||
workstatus?: string;
|
||||
}
|
|
@ -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';
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
import { WorkStatusType } from '@ucap-webmessenger/protocol-status';
|
||||
|
||||
export interface CommonUserInfo {
|
||||
/** 업무 상태 */
|
||||
workstatus?: WorkStatusType;
|
||||
}
|
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user