Skip to content

Commit

Permalink
# 1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Dec 2, 2024
1 parent bc96df1 commit 9a2fa62
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### **Copyrigth**:
*Tiledesk SRL*

# 1.23.2
# 1.23.1

# 1.23.0
Expand Down
4 changes: 2 additions & 2 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,7 +1,7 @@
{
"name": "@tiledesk/cds",
"author": "Tiledesk SRL",
"version": "1.23.1",
"version": "1.23.2",
"license": "MIT",
"homepage": "https://www.tiledesk.com",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/app/models/action-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class ActionWebRequest extends Action {
constructor(){
super();
this.url = '';
this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent": BRAND_BASE_INFO['BRAND_NAME']+" BotRuntime", "Accept":"*/*"};
this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent": BRAND_BASE_INFO['BRAND_NAME']+"BotRuntime", "Accept":"*/*"};
this.jsonBody = JSON.stringify({});
this.assignTo = '';
this.assignments = {};
Expand All @@ -198,7 +198,7 @@ export class ActionWebRequestV2 extends Action {
constructor(){
super();
this.url = '';
this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent":"TiledeskBotRuntime", "Accept":"*/*"};
this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent":BRAND_BASE_INFO['BRAND_NAME']+"BotRuntime", "Accept":"*/*"};
this.settings = { timeout: 20000 }
this.jsonBody = null
this.bodyType = 'none'
Expand Down

0 comments on commit 9a2fa62

Please sign in to comment.