@tiledesk/tiledesk-tybot-connector 2.0.10-rc8 → 2.0.10-rc9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -78,6 +78,7 @@ class DirAddKbContent {
|
|
|
78
78
|
|
|
79
79
|
const filler = new Filler();
|
|
80
80
|
const filled_content = filler.fill(content, requestVariables);
|
|
81
|
+
const filled_name = filler.fill(name, requestVariables);
|
|
81
82
|
|
|
82
83
|
const kb_endpoint = process.env.API_ENDPOINT;
|
|
83
84
|
winston.verbose("[DirAddKbContent] KbEndpoint URL: " + kb_endpoint);
|
|
@@ -154,8 +155,8 @@ class DirAddKbContent {
|
|
|
154
155
|
content: filled_content,
|
|
155
156
|
namespace: namespace,
|
|
156
157
|
type: type,
|
|
157
|
-
name:
|
|
158
|
-
source:
|
|
158
|
+
name: filled_name,
|
|
159
|
+
source: filled_name
|
|
159
160
|
};
|
|
160
161
|
|
|
161
162
|
winston.debug("[DirAddKbContent] json:", json);
|