-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Chore: Migrate LivechatEditView to Typescript #3499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
acb76df
Chore: Migrate LivechatEditView to Typescript
reinaldonetof 40ff437
refactor: minor tweak
AlexAlexandre bdf2820
Merge branch 'develop' into chore.ts-livechateditview
AlexAlexandre 81d9794
refactor: fix the interfaces for input
AlexAlexandre abd9fbb
refactor: fix lint erros
AlexAlexandre b03f078
Merge branch 'develop' into chore.ts-livechateditview
gerzonc 84fc5f4
Merge branch 'develop' into chore.ts-livechateditview
reinaldonetof 3fbeffb
Merge branch 'develop' into chore.ts-livechateditview
diegolmello 7ca1fed
minor tweak with new navigation types
reinaldonetof eb4916c
Merge branch 'develop' into chore.ts-livechateditview
gerzonc 77d3f6a
function
reinaldonetof c7232d3
iroom tweak
reinaldonetof 5326604
livechateditview tweak
reinaldonetof 549eb2c
TextInput tweak
reinaldonetof 3a4e7b9
Merge branch 'develop' into chore.ts-livechateditview
AlexAlexandre 75848a7
refactor: update new types and interfaces for use ISubscription
AlexAlexandre c47c111
Merge branch 'develop' into chore.ts-livechateditview
reinaldonetof 1a0655c
refactor to default useState type
reinaldonetof a7bdc55
Merge branch 'develop' into chore.ts-livechateditview
reinaldonetof 6582cc0
Merge branch 'develop' into chore.ts-livechateditview
reinaldonetof ddc2432
Merge branch 'develop' into chore.ts-livechateditview
reinaldonetof 2db152c
change the component name in SearchBox
reinaldonetof 77e78fb
changed state type
reinaldonetof File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,5 @@ | ||
| export interface ITagsOmnichannel { | ||
| _id: string; | ||
| name: string; | ||
| departments: string[]; | ||
| } |
This file contains hidden or 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,24 @@ | ||
| export interface IVisitorEmail { | ||
| address: string; | ||
| } | ||
|
|
||
| export interface IVisitorPhone { | ||
| phoneNumber: string; | ||
| } | ||
|
|
||
| export interface IVisitor { | ||
| _id?: string; | ||
| token: string; | ||
| username: string; | ||
| updatedAt?: Date; | ||
| name: string; | ||
| department?: string; | ||
| phone?: IVisitorPhone[]; | ||
| visitorEmails?: IVisitorEmail[]; | ||
| customFields?: { | ||
| [key: string]: any; | ||
| }; | ||
| livechatData: { | ||
| [key: string]: any; | ||
| }; | ||
| } |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.