@budibase/server 2.6.5 → 2.6.6
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/builder/assets/{index.666c917d.js → index.821e6877.js} +225 -225
- package/builder/assets/make.3cbeb1d5.svg +1 -0
- package/builder/index.html +1 -1
- package/dist/automations/actions.js +3 -3
- package/dist/automations/steps/{integromat.js → make.js} +4 -3
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/automations/actions.ts +3 -3
- package/src/automations/steps/{integromat.ts → make.ts} +4 -3
- package/builder/assets/integromat.42212f11.png +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/server",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "2.6.
|
|
4
|
+
"version": "2.6.6",
|
|
5
5
|
"description": "Budibase Web Server",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"license": "GPL-3.0",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@apidevtools/swagger-parser": "10.0.3",
|
|
48
|
-
"@budibase/backend-core": "^2.6.
|
|
49
|
-
"@budibase/client": "^2.6.
|
|
50
|
-
"@budibase/pro": "2.6.
|
|
51
|
-
"@budibase/shared-core": "^2.6.
|
|
52
|
-
"@budibase/string-templates": "^2.6.
|
|
53
|
-
"@budibase/types": "^2.6.
|
|
48
|
+
"@budibase/backend-core": "^2.6.6",
|
|
49
|
+
"@budibase/client": "^2.6.6",
|
|
50
|
+
"@budibase/pro": "2.6.5",
|
|
51
|
+
"@budibase/shared-core": "^2.6.6",
|
|
52
|
+
"@budibase/string-templates": "^2.6.6",
|
|
53
|
+
"@budibase/types": "^2.6.6",
|
|
54
54
|
"@bull-board/api": "3.7.0",
|
|
55
55
|
"@bull-board/koa": "3.9.4",
|
|
56
56
|
"@elastic/elasticsearch": "7.10.0",
|
|
@@ -176,5 +176,5 @@
|
|
|
176
176
|
"optionalDependencies": {
|
|
177
177
|
"oracledb": "5.3.0"
|
|
178
178
|
},
|
|
179
|
-
"gitHead": "
|
|
179
|
+
"gitHead": "10190c268354c5181da9150194a99964ce721bb5"
|
|
180
180
|
}
|
|
@@ -9,7 +9,7 @@ import * as serverLog from "./steps/serverLog"
|
|
|
9
9
|
import * as discord from "./steps/discord"
|
|
10
10
|
import * as slack from "./steps/slack"
|
|
11
11
|
import * as zapier from "./steps/zapier"
|
|
12
|
-
import * as
|
|
12
|
+
import * as make from "./steps/make"
|
|
13
13
|
import * as filter from "./steps/filter"
|
|
14
14
|
import * as delay from "./steps/delay"
|
|
15
15
|
import * as queryRow from "./steps/queryRows"
|
|
@@ -43,7 +43,7 @@ const ACTION_IMPLS: Record<
|
|
|
43
43
|
discord: discord.run,
|
|
44
44
|
slack: slack.run,
|
|
45
45
|
zapier: zapier.run,
|
|
46
|
-
integromat:
|
|
46
|
+
integromat: make.run,
|
|
47
47
|
}
|
|
48
48
|
export const BUILTIN_ACTION_DEFINITIONS: Record<string, AutomationStepSchema> =
|
|
49
49
|
{
|
|
@@ -63,7 +63,7 @@ export const BUILTIN_ACTION_DEFINITIONS: Record<string, AutomationStepSchema> =
|
|
|
63
63
|
discord: discord.definition,
|
|
64
64
|
slack: slack.definition,
|
|
65
65
|
zapier: zapier.definition,
|
|
66
|
-
integromat:
|
|
66
|
+
integromat: make.definition,
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
// don't add the bash script/definitions unless in self host
|
|
@@ -9,10 +9,11 @@ import {
|
|
|
9
9
|
} from "@budibase/types"
|
|
10
10
|
|
|
11
11
|
export const definition: AutomationStepSchema = {
|
|
12
|
-
name: "
|
|
13
|
-
|
|
12
|
+
name: "Make Integration",
|
|
13
|
+
stepTitle: "Make",
|
|
14
|
+
tagline: "Trigger a Make scenario",
|
|
14
15
|
description:
|
|
15
|
-
"Performs a webhook call to
|
|
16
|
+
"Performs a webhook call to Make and gets the response (if configured)",
|
|
16
17
|
icon: "ri-shut-down-line",
|
|
17
18
|
stepId: AutomationActionStepId.integromat,
|
|
18
19
|
type: AutomationStepType.ACTION,
|
|
Binary file
|