@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.
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
|
|
2
|
-
> @botpress/cli@0.9.
|
|
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.
|
|
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.
|
|
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.
|
|
14
|
-
š¤ Botpress CLI v0.9.
|
|
15
|
-
š¤ Botpress CLI v0.9.
|
|
16
|
-
š¤ Botpress CLI v0.9.
|
|
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
|
-
[2K[1Gā Generating typings for integration webhook-message...[2K[1Gā Generating typings for integration
|
|
18
|
+
[2K[1Gā Generating typings for integration webhook-message...[2K[1Gā Generating typings for integration empty-integration...[2K[1Gā Generating typings for integration hello-world...[2K[1Gā Typings available at .botpress
|
|
19
19
|
[2K[1Gā Typings available at .botpress
|
|
20
20
|
[2K[1Gā Typings available at .botpress
|
package/package.json
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|