@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"> <g id="Make-App-Icon-Circle" transform="translate(3757 -1767)"> <circle id="Ellipse_10" data-name="Ellipse 10" cx="256" cy="256" r="256" transform="translate(-3757 1767)" fill="#6d00cc"/> <path id="Path_141560" data-name="Path 141560" d="M244.78,14.544a7.187,7.187,0,0,0-7.186,7.192V213.927a7.19,7.19,0,0,0,7.186,7.192h52.063a7.187,7.187,0,0,0,7.186-7.192V21.736a7.183,7.183,0,0,0-7.186-7.192ZM92.066,17.083,5.77,188.795a7.191,7.191,0,0,0,3.192,9.654l46.514,23.379a7.184,7.184,0,0,0,9.654-3.2l86.3-171.711a7.184,7.184,0,0,0-3.2-9.654L101.719,13.886a7.2,7.2,0,0,0-9.654,3.2m72.592.614L127.731,204.876a7.189,7.189,0,0,0,5.632,8.442l51.028,10.306a7.2,7.2,0,0,0,8.481-5.665L229.8,30.786a7.19,7.19,0,0,0-5.637-8.442L173.133,12.038a7.391,7.391,0,0,0-1.427-.144,7.194,7.194,0,0,0-7.048,5.8" transform="translate(-3676.356 1905.425)" fill="#fff"/> </g> </svg>
|
package/builder/index.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
|
|
10
10
|
rel="stylesheet" />
|
|
11
|
-
<script type="module" crossorigin src="/builder/assets/index.
|
|
11
|
+
<script type="module" crossorigin src="/builder/assets/index.821e6877.js"></script>
|
|
12
12
|
<link rel="stylesheet" href="/builder/assets/index.a8e7f825.css">
|
|
13
13
|
</head>
|
|
14
14
|
|
|
@@ -47,7 +47,7 @@ const serverLog = __importStar(require("./steps/serverLog"));
|
|
|
47
47
|
const discord = __importStar(require("./steps/discord"));
|
|
48
48
|
const slack = __importStar(require("./steps/slack"));
|
|
49
49
|
const zapier = __importStar(require("./steps/zapier"));
|
|
50
|
-
const
|
|
50
|
+
const make = __importStar(require("./steps/make"));
|
|
51
51
|
const filter = __importStar(require("./steps/filter"));
|
|
52
52
|
const delay = __importStar(require("./steps/delay"));
|
|
53
53
|
const queryRow = __importStar(require("./steps/queryRows"));
|
|
@@ -72,7 +72,7 @@ const ACTION_IMPLS = {
|
|
|
72
72
|
discord: discord.run,
|
|
73
73
|
slack: slack.run,
|
|
74
74
|
zapier: zapier.run,
|
|
75
|
-
integromat:
|
|
75
|
+
integromat: make.run,
|
|
76
76
|
};
|
|
77
77
|
exports.BUILTIN_ACTION_DEFINITIONS = {
|
|
78
78
|
SEND_EMAIL_SMTP: sendSmtpEmail.definition,
|
|
@@ -91,7 +91,7 @@ exports.BUILTIN_ACTION_DEFINITIONS = {
|
|
|
91
91
|
discord: discord.definition,
|
|
92
92
|
slack: slack.definition,
|
|
93
93
|
zapier: zapier.definition,
|
|
94
|
-
integromat:
|
|
94
|
+
integromat: make.definition,
|
|
95
95
|
};
|
|
96
96
|
// don't add the bash script/definitions unless in self host
|
|
97
97
|
// the fact this isn't included in any definitions means it cannot be
|
|
@@ -17,9 +17,10 @@ const node_fetch_1 = __importDefault(require("node-fetch"));
|
|
|
17
17
|
const utils_1 = require("./utils");
|
|
18
18
|
const types_1 = require("@budibase/types");
|
|
19
19
|
exports.definition = {
|
|
20
|
-
name: "
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
name: "Make Integration",
|
|
21
|
+
stepTitle: "Make",
|
|
22
|
+
tagline: "Trigger a Make scenario",
|
|
23
|
+
description: "Performs a webhook call to Make and gets the response (if configured)",
|
|
23
24
|
icon: "ri-shut-down-line",
|
|
24
25
|
stepId: types_1.AutomationActionStepId.integromat,
|
|
25
26
|
type: types_1.AutomationStepType.ACTION,
|