Skip to content

Commit

Permalink
Merge branch 'master-PRE' into features/KB-URLS-PRE-4
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Oct 14, 2024
2 parents 8368044 + 68b1dec commit 57e05d7
Show file tree
Hide file tree
Showing 82 changed files with 2,192 additions and 2,936 deletions.
77 changes: 74 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
# tiledesk-dashboard

### 2.7.33
- Adds, on the History page, the ability to filter by conversation duration
### 2.7.34-rc4
- Refactors table in Monitor page
- Improves handling of alert windows display

### 2.7.32
### 2.7.34-rc3
- AI settings and KB preview bug fixing

### 2.7.34-rc2
- Minor improvements

### 2.7.34-rc1
- Adds the ability to select the indexing type for Knowledge Base URL contents
- Adds to AI models used by knowledge bases the ability to add an advanced context and to visualize the contents sources

### 2.7.33-rc1
- Adds, on the History page, the ability to filter by conversation duration

### 2.7.32-rc1
- Moves the menu item "Apps" from the sidebar to the setting sidebar

### 2.7.31
Expand Down Expand Up @@ -48,9 +62,15 @@
- Adds the ability to select the launch block when a conversation is manually assigned to a chatbot
- Improves the method to get the number of conversations in the monitor page

### 2.7.19-rc1
- Adds the ability to select the launch block when a conversation is manually assigned to a chatbot

### 2.7.18
- Minor improvements and bug fixing

### 2.7.18-rc1
- Improves the method to get the number of conversations in the monitor page

### 2.7.17
- Removes the ability to customize the quotas email template
- Implements the icons for the SMS channel
Expand Down Expand Up @@ -99,6 +119,9 @@
- Deploys in production
- Adds the knowledge base walkthrough on the knowledge base page

### 2.7.7-rc1
- Adds the knowledge base walkthrough on the knowledge base page

### 2.7.6
- Deploys in production
- Adds a warning banner to the home page that displays when the user has used up one or more of his monthly resources
Expand All @@ -110,10 +133,21 @@
### 2.7.4
- Added Time Slots in Operating Hours page

### 2.7.4-rc1
- Fix saving operation hours bug

### 2.7.3
- Adds the ability, during onboarding, to create a chatbot that automatically answers questions based on the contents of the Knowledge Base
- Improves the knowledge base page

### 2.7.3-rc2
- Adds the ability, during onboarding, to create a chatbot that automatically answers questions based on the contents of the Knowledge Base
- Improves the knowledge base page
- Improves time slots UI

### 2.7.3-rc1
- Kb onboarding

### 2.7.2
- Deploys in production
- Adds GPT-4o mini language model
Expand All @@ -127,24 +161,61 @@
- Adds the ability to edit the "Quota checkpoint notification" email template
- Adds Twilio SMS channel integration

### 2.6.45-rc2
- Improves time slots UI
- Added translations for time slots

### 2.6.45-rc1
- Added time slots in Operating Hours

### 2.6.44
- Deploys in production
- Adds the option "Teammates can only see their own conversations" in the Project Settings > Advanced tab
- Improvements and bug fixing

### 2.6.44-rc4
- Improvements and bug fixing

### 2.6.44-rc3
- Adds the option "Teammates can only see their own conversations" in the Project Settings > Advanced tab

### 2.6.44-rc2
- Fix vxml voice integration visibility

### 2.6.44-rc1
- Added vxml voice integration
- Added twilio sms integration

### 2.6.43
- Deploys in production
- Improves the quota usage widget
- Minor improvements

### 2.6.43-rc2
- Improves Knowledge Bases page

### 2.6.43-rc1
- Improves quotes widget
- Added voice-vxml and sms-twilio channel in analytics

### 2.6.42
- Deploys in production
- Displays all the indexed chunks of a content on the "Manage your Knowledge Bases" page

### 2.6.42-rc1
- Displays all the indexed chunks of a content on the "Manage your Knowledge Bases" page

### 2.6.41
- Deploys in production
- Displays information about the Voice channel

### 2.6.41-rc2
- Adds the Voice Channel integration

### 2.6.41-rc1
- Deploys in production
- Displays information about the Voice channel

### 2.6.40
- Deploys in production
- Displays a dialog box that allows to update the plan when the knowledge bases limit is reached
Expand Down
5 changes: 1 addition & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiledesk/tiledesk-dashboard",
"version": "2.7.33",
"version": "2.7.34-rc4",
"scripts": {
"ng": "ng",
"start": "ng serve --aot",
Expand Down
12 changes: 8 additions & 4 deletions src/app/app-store/app-store.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,16 +123,20 @@ <h4 class="card-create-app-text">

<ng-container
*ngIf="projectProfileData?.extra3 && projectProfileData?.extra3 !== 'tiledesk_tier3' && projectProfileData?.extra3 !== 'tiledesk_tier4'">
<div class="available-from-b-plan-badge b-plan-badge-color"
<div class="available-from-b-plan-badge"
*ngIf="(app?.title === 'Zapier') || (app?.title === 'WhatsApp Business') || (app?.title === 'Facebook Messenger') || (app?.title === 'Help Center')">
{{ 'AvailableFromThePlan' | translate: tParamsAvailableFromAppSumoTier3 }}
<div class="b--plan-badge-color">
{{ 'AvailableFromThePlan' | translate: tParamsAvailableFromAppSumoTier3 }}
</div>
</div>
</ng-container>

<ng-container *ngIf="dispayBadgeAvaibleFromInAppStore ">
<div class="available-from-b-plan-badge b-plan-badge-color"
<div class="available-from-b-plan-badge"
*ngIf="((app?.title === 'Zapier') || (app?.title === 'WhatsApp Business') || (app?.title === 'Facebook Messenger') || (app?.title === 'Help Center') || (app?.title === 'Send transcript by email'))">
{{ 'AvailableFromThePlans' | translate: tParamsAvailableFromTier2 }}
<div class="b--plan-badge-color">
{{ 'AvailableFromThePlans' | translate: tParamsAvailableFromTier2 }}
</div>
</div>
</ng-container>

Expand Down
23 changes: 21 additions & 2 deletions src/app/app-store/app-store.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
}

.card-app-store {
box-shadow: unset;
border: 1px solid #e5effe;
box-shadow: 0 0 #0000,0 0 #0000,0 1px 3px #0000001a,0 1px 2px -1px #0000001a !important ;
// border: 1px solid #e5effe;
margin-top: 15px !important;
border-radius: 12px !important;
// transition: border 0s,box-shadow 0.4s ease-out,transform 0.4s ease-out,opacity 0.4s ease-out;
// transition-delay: 0.1s;
// transform: translateZ(0);
Expand Down Expand Up @@ -85,6 +86,7 @@
.app-installed-wpr {
background-color: #7aeb8d;
height: 41px;
border-bottom-right-radius: 12px;
}

.app-not-installed-wpr {
Expand Down Expand Up @@ -210,6 +212,23 @@
text-decoration: underline;
}

.available-from-b-plan-badge {
position: relative;

}

.b--plan-badge-color {
color: #00a1c2;
background: rgba(0, 161, 194, .3);
width: fit-content;
padding: 0px 3px;
border-radius: 4px;
font-weight: 400;
font-size: 12px;
position: absolute;
top: -23px;
}

// .app-alert>div>.link-to-integrations:hover {
// font-weight: 600;
// text-decoration: underline;
Expand Down
Loading

0 comments on commit 57e05d7

Please sign in to comment.