-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
157 changed files
with
1,373 additions
and
987 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
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 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 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
interface AuthCodeTokenRequest { | ||
/** | ||
* Grant type | ||
* Required | ||
*/ | ||
grant_type?: 'authorization_code'; | ||
|
||
|
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
10 changes: 10 additions & 0 deletions
10
packages/core/src/definitions/CallFlipNumberListResource.ts
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,10 @@ | ||
import type CallFlipNumberResource from './CallFlipNumberResource'; | ||
|
||
interface CallFlipNumberListResource { | ||
/** | ||
* List of call flip numbers | ||
*/ | ||
records?: CallFlipNumberResource[]; | ||
} | ||
|
||
export default CallFlipNumberListResource; |
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,33 @@ | ||
interface CallFlipNumberResource { | ||
/** | ||
* Internal identifier of a call flip number | ||
* Example: 409926525004 | ||
*/ | ||
id?: string; | ||
|
||
/** | ||
* Flip number in E.164 format with '+' | ||
* Example: +16502096935 | ||
*/ | ||
phoneNumber?: string; | ||
|
||
/** | ||
* Flip number type | ||
* Example: PhoneLine | ||
*/ | ||
type?: 'PhoneLine' | 'External'; | ||
|
||
/** | ||
* Flip number label, device name for Digital Line case | ||
* Example: My Mobile Number | ||
*/ | ||
label?: string; | ||
|
||
/** | ||
* Speed dial/flip number, the range is 1-8 | ||
* Example: 5 | ||
*/ | ||
flipNumber?: string; | ||
} | ||
|
||
export default CallFlipNumberResource; |
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
45 changes: 45 additions & 0 deletions
45
packages/core/src/definitions/CallQueueDetailsForUpdate.ts
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,45 @@ | ||
import type SiteReference from './SiteReference'; | ||
import type CallQueueServiceLevelSettings from './CallQueueServiceLevelSettings'; | ||
|
||
interface CallQueueDetailsForUpdate { | ||
/** | ||
* Extension number of a call queue | ||
*/ | ||
extensionNumber?: string; | ||
|
||
/** | ||
* Name of a call queue | ||
*/ | ||
name?: string; | ||
|
||
/** | ||
* Group extension status | ||
*/ | ||
status?: 'Enabled' | 'Disabled' | 'NotActivated'; | ||
|
||
/** | ||
* Indicates whether it is an emergency call queue extension or not | ||
*/ | ||
subType?: 'Emergency'; | ||
|
||
/** | ||
*/ | ||
site?: SiteReference; | ||
|
||
/** | ||
*/ | ||
serviceLevelSettings?: CallQueueServiceLevelSettings; | ||
|
||
/** | ||
* Allows members to change their queue status | ||
*/ | ||
editableMemberStatus?: boolean; | ||
|
||
/** | ||
* Alert timer or pickup setting. Delay time in seconds before call queue group members are notified when calls are queued | ||
* Format: int32 | ||
*/ | ||
alertTimer?: number; | ||
} | ||
|
||
export default CallQueueDetailsForUpdate; |
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
Oops, something went wrong.