@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/server",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.6.5",
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.5",
49
- "@budibase/client": "^2.6.5",
50
- "@budibase/pro": "2.6.4",
51
- "@budibase/shared-core": "^2.6.5",
52
- "@budibase/string-templates": "^2.6.5",
53
- "@budibase/types": "^2.6.5",
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": "df1d2f33515739050a3f5dee971dfa6c3d711a17"
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 integromat from "./steps/integromat"
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: integromat.run,
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: integromat.definition,
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: "Integromat Integration",
13
- tagline: "Trigger an Integromat scenario",
12
+ name: "Make Integration",
13
+ stepTitle: "Make",
14
+ tagline: "Trigger a Make scenario",
14
15
  description:
15
- "Performs a webhook call to Integromat and gets the response (if configured)",
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,