Skip to content

Commit 0d26738

Browse files
committed
fix: Force commited bp modules
1 parent e8ce25d commit 0d26738

File tree

26 files changed

+972
-0
lines changed

26 files changed

+972
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* eslint-disable */
2+
/* tslint:disable */
3+
// This file is generated. Do not edit it manually.
4+
import * as input from "./input";
5+
export * as input from "./input";
6+
import * as output from "./output";
7+
export * as output from "./output";
8+
9+
export const createUser = {
10+
"input": input.input,
11+
"output": output.output,
12+
"title": "Create external user",
13+
"description": "Create an end user in the external service and in Botpress",
14+
"billable": false,
15+
"cacheable": false,
16+
"attributes": { "bpActionHiddenInStudio": "true" },
17+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/* eslint-disable */
2+
/* tslint:disable */
3+
// This file is generated. Do not edit it manually.
4+
5+
import { z } from "@botpress/sdk";
6+
export const input = {
7+
schema: z
8+
.object({
9+
name: z
10+
.string()
11+
.title("Display name")
12+
.describe("Display name of the end user"),
13+
pictureUrl: z
14+
.optional(
15+
z
16+
.string()
17+
.title("Picture URL")
18+
.describe("URL of the end user\'s avatar"),
19+
)
20+
.describe("URL of the end user\'s avatar"),
21+
email: z
22+
.optional(
23+
z
24+
.string()
25+
.title("Email address")
26+
.describe("Email address of the end user"),
27+
)
28+
.describe("Email address of the end user"),
29+
})
30+
.catchall(z.never()),
31+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* eslint-disable */
2+
/* tslint:disable */
3+
// This file is generated. Do not edit it manually.
4+
5+
import { z } from "@botpress/sdk";
6+
export const output = {
7+
schema: z
8+
.object({
9+
userId: z
10+
.string()
11+
.title("Botpress user ID")
12+
.describe("ID of the Botpress user representing the end user"),
13+
})
14+
.catchall(z.never()),
15+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* eslint-disable */
2+
/* tslint:disable */
3+
// This file is generated. Do not edit it manually.
4+
import * as createUser from "./createUser/index";
5+
export * as createUser from "./createUser/index";
6+
import * as startHitl from "./startHitl/index";
7+
export * as startHitl from "./startHitl/index";
8+
import * as stopHitl from "./stopHitl/index";
9+
export * as stopHitl from "./stopHitl/index";
10+
11+
export const actions = {
12+
"createUser": createUser.createUser,
13+
"startHitl": startHitl.startHitl,
14+
"stopHitl": stopHitl.stopHitl,
15+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* eslint-disable */
2+
/* tslint:disable */
3+
// This file is generated. Do not edit it manually.
4+
import * as input from "./input";
5+
export * as input from "./input";
6+
import * as output from "./output";
7+
export * as output from "./output";
8+
9+
export const startHitl = {
10+
"input": input.input,
11+
"output": output.output,
12+
"title": "Start new HITL session",
13+
"description": "Create a new HITL session in the external service and in Botpress",
14+
"billable": false,
15+
"cacheable": false,
16+
"attributes": { "bpActionHiddenInStudio": "true" },
17+
}

0 commit comments

Comments
 (0)