-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sync features and bugfixs from 7698f10 (#1606)
* sync features and bugfixs from 7698f10 * remove unused file
- Loading branch information
Showing
1,233 changed files
with
27,587 additions
and
18,983 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ac165a0f343a29ede4aad1fb555aff401f3dfea7 | ||
7698f1018c89580fc352022f2b6da694f5533b77 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
export declare const DEFAULT_LOCALE = "en-US"; | ||
export declare const PSEUDO_LOCALE = "en-ZZ"; | ||
export declare const DEFAULT_LOCALE = 'en-US'; | ||
export declare const PSEUDO_LOCALE = 'en-ZZ'; | ||
export declare const RUNTIME: { | ||
locale: string; | ||
defaultLocale: string; | ||
instances: Set<any>; | ||
padRatio: number; | ||
locale: string; | ||
defaultLocale: string; | ||
instances: Set<any>; | ||
padRatio: number; | ||
}; | ||
declare function setLocale(locale: any): Promise<void>; | ||
export default class I18n { | ||
_loadLocale: any; | ||
_cache: any; | ||
constructor(loadLocale: any); | ||
_load(locale: any): Promise<void>; | ||
load(): Promise<void>; | ||
_getString(key: any, locale: any): any; | ||
getString(key: any, locale?: string): any; | ||
readonly currentLocale: string; | ||
readonly setLocale: typeof setLocale; | ||
_loadLocale: any; | ||
_cache: any; | ||
constructor(loadLocale: any); | ||
_load(locale: any): Promise<void>; | ||
load(): Promise<void>; | ||
_getString(key: any, locale: any): any; | ||
getString(key: any, locale?: string): any; | ||
readonly currentLocale: string; | ||
static readonly setLocale: typeof setLocale; | ||
} | ||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { createHashMap } from '../lib/HashMap'; | ||
|
||
const callDirection = createHashMap({ | ||
inbound: 'Inbound', | ||
outbound: 'Outbound', | ||
}); | ||
|
||
export default callDirection; |
6 changes: 6 additions & 0 deletions
6
packages/ringcentral-integration/enums/conversationLogStatus.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import Enum from 'ringcentral-integration/lib/Enum'; | ||
|
||
export default new Enum( | ||
['loggedSuccess', 'loggedFailure'], | ||
'conversationLogStatus', | ||
); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { createHashMap } from '../lib/HashMap'; | ||
|
||
const messageTypes = createHashMap({ | ||
all: 'All', | ||
fax: 'Fax', | ||
sms: 'SMS', | ||
voiceMail: 'VoiceMail', | ||
pager: 'Pager', | ||
text: 'Text', | ||
}); | ||
|
||
export default messageTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import HashMap from '../lib/HashMap'; | ||
import { createHashMap } from '../lib/HashMap'; | ||
|
||
export default new HashMap({ | ||
const telephonyStatus = createHashMap({ | ||
noCall: 'NoCall', | ||
onHold: 'OnHold', | ||
ringing: 'Ringing', | ||
callConnected: 'CallConnected', | ||
parkedCall: 'ParkedCall', | ||
}); | ||
|
||
export default telephonyStatus; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.