@botpress/cli 0.9.2 → 0.9.3

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.
@@ -1,20 +1,20 @@
1
1
 
2
- > @botpress/cli@0.9.2 build /home/runner/work/botpress/botpress/packages/cli
2
+ > @botpress/cli@0.9.3 build /home/runner/work/botpress/botpress/packages/cli
3
3
  > pnpm run bundle && pnpm run template:gen
4
4
 
5
5
 
6
- > @botpress/cli@0.9.2 bundle /home/runner/work/botpress/botpress/packages/cli
6
+ > @botpress/cli@0.9.3 bundle /home/runner/work/botpress/botpress/packages/cli
7
7
  > ts-node -T build.ts
8
8
 
9
9
 
10
- > @botpress/cli@0.9.2 template:gen /home/runner/work/botpress/botpress/packages/cli
10
+ > @botpress/cli@0.9.3 template:gen /home/runner/work/botpress/botpress/packages/cli
11
11
  > pnpm -r --stream -F @bp-templates/* exec bp gen
12
12
 
13
- šŸ¤– Botpress CLI v0.9.2
14
- šŸ¤– Botpress CLI v0.9.2
15
- šŸ¤– Botpress CLI v0.9.2
16
- šŸ¤– Botpress CLI v0.9.2
13
+ šŸ¤– Botpress CLI v0.9.3
14
+ šŸ¤– Botpress CLI v0.9.3
15
+ šŸ¤– Botpress CLI v0.9.3
16
+ šŸ¤– Botpress CLI v0.9.3
17
17
  ⚠ No typings to generate for bot projects
18
- ā—‹ Generating typings for integration webhook-message...ā—‹ Generating typings for integration hello-world...ā—‹ Generating typings for integration empty-integration...āœ“ Typings available at .botpress
18
+ ā—‹ Generating typings for integration webhook-message...ā—‹ Generating typings for integration empty-integration...ā—‹ Generating typings for integration hello-world...āœ“ Typings available at .botpress
19
19
  āœ“ Typings available at .botpress
20
20
  āœ“ Typings available at .botpress
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/cli",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Botpress CLI",
5
5
  "scripts": {
6
6
  "build": "pnpm run bundle && pnpm run template:gen",
@@ -4,7 +4,7 @@ import * as bp from '.botpress'
4
4
  export default new bp.Integration({
5
5
  register: async () => {
6
6
  /**
7
- * This is called when a bot installs the integration.
7
+ * This is called when an integration configuration is saved.
8
8
  * You should use this handler to instanciate ressources in the external service and ensure that the configuration is valid.
9
9
  */
10
10
  throw new sdk.RuntimeError('Invalid configuration') // replace this with your own validation logic
@@ -4,7 +4,7 @@ import * as bp from '.botpress'
4
4
  export default new bp.Integration({
5
5
  register: async () => {
6
6
  /**
7
- * This is called when a bot installs the integration.
7
+ * This is called when an integration configuration is saved.
8
8
  * You should use this handler to instanciate ressources in the external service and ensure that the configuration is valid.
9
9
  */
10
10
  throw new sdk.RuntimeError('Invalid configuration') // replace this with your own validation logic
@@ -11,7 +11,7 @@ const reqBodySchema = sdk.z.object({
11
11
  export default new bp.Integration({
12
12
  register: async () => {
13
13
  /**
14
- * This is called when a bot installs the integration.
14
+ * This is called when an integration configuration is saved.
15
15
  * You should use this handler to instanciate ressources in the external service and ensure that the configuration is valid.
16
16
  */
17
17
  throw new sdk.RuntimeError('Invalid configuration') // replace this with your own validation logic