@wildix/wim-tools-client 0.0.26 → 0.0.28
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.
|
@@ -127,8 +127,8 @@ declare const CreateToolCommand_base: {
|
|
|
127
127
|
* userId: "<ToolStringValue>",
|
|
128
128
|
* },
|
|
129
129
|
* text: "<ToolStringValue>", // required
|
|
130
|
-
* mentions: "<ToolStringValue>",
|
|
131
130
|
* botName: "<ToolStringValue>", // required
|
|
131
|
+
* botId: "STRING_VALUE", // required
|
|
132
132
|
* },
|
|
133
133
|
* },
|
|
134
134
|
* },
|
|
@@ -230,8 +230,8 @@ declare const CreateToolCommand_base: {
|
|
|
230
230
|
* // userId: "<ToolStringValue>",
|
|
231
231
|
* // },
|
|
232
232
|
* // text: "<ToolStringValue>", // required
|
|
233
|
-
* // mentions: "<ToolStringValue>",
|
|
234
233
|
* // botName: "<ToolStringValue>", // required
|
|
234
|
+
* // botId: "STRING_VALUE", // required
|
|
235
235
|
* // },
|
|
236
236
|
* // },
|
|
237
237
|
* // },
|
|
@@ -135,8 +135,8 @@ declare const GetToolCommand_base: {
|
|
|
135
135
|
* // userId: "<ToolStringValue>",
|
|
136
136
|
* // },
|
|
137
137
|
* // text: "<ToolStringValue>", // required
|
|
138
|
-
* // mentions: "<ToolStringValue>",
|
|
139
138
|
* // botName: "<ToolStringValue>", // required
|
|
139
|
+
* // botId: "STRING_VALUE", // required
|
|
140
140
|
* // },
|
|
141
141
|
* // },
|
|
142
142
|
* // },
|
|
@@ -135,8 +135,8 @@ declare const ListToolsCommand_base: {
|
|
|
135
135
|
* // userId: "<ToolStringValue>",
|
|
136
136
|
* // },
|
|
137
137
|
* // text: "<ToolStringValue>", // required
|
|
138
|
-
* // mentions: "<ToolStringValue>",
|
|
139
138
|
* // botName: "<ToolStringValue>", // required
|
|
139
|
+
* // botId: "STRING_VALUE", // required
|
|
140
140
|
* // },
|
|
141
141
|
* // },
|
|
142
142
|
* // },
|
|
@@ -128,8 +128,8 @@ declare const UpdateToolCommand_base: {
|
|
|
128
128
|
* userId: "<ToolStringValue>",
|
|
129
129
|
* },
|
|
130
130
|
* text: "<ToolStringValue>", // required
|
|
131
|
-
* mentions: "<ToolStringValue>",
|
|
132
131
|
* botName: "<ToolStringValue>", // required
|
|
132
|
+
* botId: "STRING_VALUE", // required
|
|
133
133
|
* },
|
|
134
134
|
* },
|
|
135
135
|
* },
|
|
@@ -231,8 +231,8 @@ declare const UpdateToolCommand_base: {
|
|
|
231
231
|
* // userId: "<ToolStringValue>",
|
|
232
232
|
* // },
|
|
233
233
|
* // text: "<ToolStringValue>", // required
|
|
234
|
-
* // mentions: "<ToolStringValue>",
|
|
235
234
|
* // botName: "<ToolStringValue>", // required
|
|
235
|
+
* // botId: "STRING_VALUE", // required
|
|
236
236
|
* // },
|
|
237
237
|
* // },
|
|
238
238
|
* // },
|
|
@@ -145,15 +145,15 @@ export interface ToolChatConfig {
|
|
|
145
145
|
*/
|
|
146
146
|
text: ToolStringValue;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* Name of the system bot that will send the message.
|
|
149
149
|
* @public
|
|
150
150
|
*/
|
|
151
|
-
|
|
151
|
+
botName: ToolStringValue;
|
|
152
152
|
/**
|
|
153
|
-
*
|
|
153
|
+
* ID of the system bot that will send the message.
|
|
154
154
|
* @public
|
|
155
155
|
*/
|
|
156
|
-
|
|
156
|
+
botId: string;
|
|
157
157
|
}
|
|
158
158
|
/**
|
|
159
159
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wim-tools-client",
|
|
3
3
|
"description": "@wildix/wim-tools-client client",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.28",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|