@apteva/integrations 0.3.21 → 0.3.23
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/dist/http-executor.js +12 -5
- package/dist/http-executor.js.map +1 -1
- package/package.json +1 -1
- package/src/apps/airtable.json +12 -0
- package/src/apps/alpaca-trading.json +5 -0
- package/src/apps/aws-cloudfront.json +10 -0
- package/src/apps/aws-dynamodb.json +10 -0
- package/src/apps/aws-ec2.json +10 -0
- package/src/apps/aws-lambda.json +10 -0
- package/src/apps/aws-route53.json +10 -0
- package/src/apps/aws-s3.json +10 -0
- package/src/apps/aws-ses.json +10 -0
- package/src/apps/aws-sns.json +10 -0
- package/src/apps/aws-sqs.json +10 -0
- package/src/apps/axiom.json +5 -0
- package/src/apps/binance-trading.json +5 -0
- package/src/apps/bluesky.json +5 -0
- package/src/apps/blynk.json +5 -0
- package/src/apps/bunny-stream.json +4 -0
- package/src/apps/callrail.json +5 -0
- package/src/apps/castbase.json +5 -0
- package/src/apps/clipkit.json +5 -0
- package/src/apps/cloudflare.json +5 -0
- package/src/apps/convertkit.json +5 -0
- package/src/apps/discord.json +16 -0
- package/src/apps/dnsimple.json +5 -0
- package/src/apps/docusign.json +12 -0
- package/src/apps/dropbox.json +12 -0
- package/src/apps/dynadot.json +5 -0
- package/src/apps/eventbrite-events.json +8 -0
- package/src/apps/facebook-ads.json +8 -0
- package/src/apps/facebook-api.json +8 -0
- package/src/apps/gemini.json +5 -0
- package/src/apps/gigs-marketplace.json +86 -3
- package/src/apps/github.json +8 -0
- package/src/apps/gitlab.json +5 -0
- package/src/apps/gmail.json +12 -0
- package/src/apps/gohighlevel.json +5 -0
- package/src/apps/google-ads.json +16 -0
- package/src/apps/google-calendar.json +12 -0
- package/src/apps/google-docs.json +12 -0
- package/src/apps/google-drive.json +12 -0
- package/src/apps/google-sheets.json +12 -0
- package/src/apps/gravity-forms.json +4 -0
- package/src/apps/hubspot.json +12 -0
- package/src/apps/instagram-api.json +12 -0
- package/src/apps/jira.json +16 -0
- package/src/apps/linear.json +12 -0
- package/src/apps/linkedin.json +4 -0
- package/src/apps/lnk-bio.json +12 -0
- package/src/apps/mailchimp.json +12 -0
- package/src/apps/meetup-events.json +12 -0
- package/src/apps/microsoft-teams.json +20 -0
- package/src/apps/monday.json +8 -0
- package/src/apps/namecheap.json +10 -0
- package/src/apps/notion.json +12 -0
- package/src/apps/openai-api.json +5 -0
- package/src/apps/paidkit.json +5 -0
- package/src/apps/plaid.json +4 -0
- package/src/apps/polymarket.json +10 -0
- package/src/apps/portfolio.json +10 -0
- package/src/apps/printful.json +5 -0
- package/src/apps/producthunt.json +12 -0
- package/src/apps/quickbooks.json +12 -0
- package/src/apps/salesforce-crm.json +20 -0
- package/src/apps/shopify.json +8 -0
- package/src/apps/skai.json +8 -0
- package/src/apps/slack.json +12 -0
- package/src/apps/socialcast.json +5 -1
- package/src/apps/stripe-payments.json +10 -0
- package/src/apps/stripe.json +10 -0
- package/src/apps/taskflow.json +5 -0
- package/src/apps/thinger.json +5 -0
- package/src/apps/tiktok-api.json +12 -0
- package/src/apps/twilio.json +5 -0
- package/src/apps/twitter-ads.json +12 -0
- package/src/apps/twitter-api.json +12 -0
- package/src/apps/youtube-api.json +16 -0
- package/src/apps/zoom.json +12 -0
package/dist/http-executor.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export async function executeTool(opts) {
|
|
7
7
|
const { app, tool, credentials, input, timeout = 30000 } = opts;
|
|
8
|
-
// 1. Build the URL with path parameter interpolation
|
|
9
|
-
const url = buildUrl(app.base_url, tool.path, input);
|
|
8
|
+
// 1. Build the URL with path parameter + credential interpolation
|
|
9
|
+
const url = buildUrl(app.base_url, tool.path, input, credentials);
|
|
10
10
|
// 2. Build headers from app auth config + credentials
|
|
11
11
|
const headers = buildHeaders(app, credentials);
|
|
12
12
|
// 3. Build request options
|
|
@@ -92,12 +92,19 @@ export async function executeTool(opts) {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
// ─── Helpers ───
|
|
95
|
-
function buildUrl(baseUrl, path, input) {
|
|
96
|
-
// Replace {param} placeholders with actual values
|
|
95
|
+
function buildUrl(baseUrl, path, input, credentials) {
|
|
97
96
|
let resolved = path;
|
|
97
|
+
// Replace {{credential.X}} placeholders with credential values
|
|
98
|
+
if (credentials) {
|
|
99
|
+
resolved = resolved.replace(/\{\{credential\.(\w+)\}\}/g, (_match, key) => {
|
|
100
|
+
const value = credentials.fields?.[key] || credentials[key] || "";
|
|
101
|
+
return encodeURIComponent(String(value));
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
// Replace {param} placeholders with input values
|
|
98
105
|
const paramRegex = /\{(\w+)\}/g;
|
|
99
106
|
let match;
|
|
100
|
-
while ((match = paramRegex.exec(
|
|
107
|
+
while ((match = paramRegex.exec(resolved)) !== null) {
|
|
101
108
|
const key = match[1];
|
|
102
109
|
const value = input[key];
|
|
103
110
|
if (value !== undefined) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http-executor.js","sourceRoot":"","sources":["../src/http-executor.ts"],"names":[],"mappings":"AAsBA;;;;GAIG;AACH,MAAM,CAAC,KAAK,UAAU,WAAW,CAC/B,IAAwB;IAExB,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,OAAO,GAAG,KAAK,EAAE,GAAG,IAAI,CAAC;IAEhE,
|
|
1
|
+
{"version":3,"file":"http-executor.js","sourceRoot":"","sources":["../src/http-executor.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
|
|
5
5
|
"author": "Apteva <hello@apteva.com>",
|
|
6
6
|
"license": "Elastic-2.0",
|
package/src/apps/airtable.json
CHANGED
|
@@ -24,6 +24,18 @@
|
|
|
24
24
|
{
|
|
25
25
|
"name": "token",
|
|
26
26
|
"label": "access_token"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "refresh_token",
|
|
30
|
+
"label": "refresh_token"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "expires_in",
|
|
34
|
+
"label": "expires_in"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "token_type",
|
|
38
|
+
"label": "token_type"
|
|
27
39
|
}
|
|
28
40
|
],
|
|
29
41
|
"oauth2": {
|
|
@@ -34,6 +34,11 @@
|
|
|
34
34
|
"name": "api_secret",
|
|
35
35
|
"label": "Api_secret",
|
|
36
36
|
"description": "Your Alpaca Secret Key"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "base_url",
|
|
40
|
+
"label": "Base_url",
|
|
41
|
+
"description": "Default: https://paper-api.alpaca.markets — set to https://api.alpaca.markets for live trading"
|
|
37
42
|
}
|
|
38
43
|
]
|
|
39
44
|
},
|
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
package/src/apps/aws-ec2.json
CHANGED
|
@@ -29,6 +29,16 @@
|
|
|
29
29
|
"name": "secret_access_key",
|
|
30
30
|
"label": "Secret_access_key",
|
|
31
31
|
"description": "Your AWS Secret Access Key"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "region",
|
|
35
|
+
"label": "Region",
|
|
36
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "session_token",
|
|
40
|
+
"label": "Session_token",
|
|
41
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
32
42
|
}
|
|
33
43
|
]
|
|
34
44
|
},
|
package/src/apps/aws-lambda.json
CHANGED
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
package/src/apps/aws-s3.json
CHANGED
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
package/src/apps/aws-ses.json
CHANGED
|
@@ -27,6 +27,16 @@
|
|
|
27
27
|
"name": "secret_access_key",
|
|
28
28
|
"label": "Secret_access_key",
|
|
29
29
|
"description": "Your AWS Secret Access Key"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "region",
|
|
33
|
+
"label": "Region",
|
|
34
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "session_token",
|
|
38
|
+
"label": "Session_token",
|
|
39
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
30
40
|
}
|
|
31
41
|
]
|
|
32
42
|
},
|
package/src/apps/aws-sns.json
CHANGED
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
package/src/apps/aws-sqs.json
CHANGED
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"name": "secret_access_key",
|
|
29
29
|
"label": "Secret_access_key",
|
|
30
30
|
"description": "Your AWS Secret Access Key"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "region",
|
|
34
|
+
"label": "Region",
|
|
35
|
+
"description": "AWS Region (e.g., us-east-1)"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "session_token",
|
|
39
|
+
"label": "Session_token",
|
|
40
|
+
"description": "Temporary session token (for temporary credentials)"
|
|
31
41
|
}
|
|
32
42
|
]
|
|
33
43
|
},
|
package/src/apps/axiom.json
CHANGED
package/src/apps/bluesky.json
CHANGED
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"name": "accessToken",
|
|
24
24
|
"label": "Access Token",
|
|
25
25
|
"description": "Bluesky access JWT (obtain via com.atproto.server.createSession)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "handle",
|
|
29
|
+
"label": "Handle",
|
|
30
|
+
"description": "Your Bluesky handle (e.g. user.bsky.social)"
|
|
26
31
|
}
|
|
27
32
|
]
|
|
28
33
|
},
|
package/src/apps/blynk.json
CHANGED
|
@@ -24,6 +24,11 @@
|
|
|
24
24
|
"name": "auth_token",
|
|
25
25
|
"label": "Auth_token",
|
|
26
26
|
"description": "Blynk Auth Token (from device template or organization settings)"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "server_url",
|
|
30
|
+
"label": "Server_url",
|
|
31
|
+
"description": "Blynk server URL (default: blynk.cloud)"
|
|
27
32
|
}
|
|
28
33
|
]
|
|
29
34
|
},
|
package/src/apps/callrail.json
CHANGED
package/src/apps/castbase.json
CHANGED
package/src/apps/clipkit.json
CHANGED
|
@@ -28,6 +28,11 @@
|
|
|
28
28
|
"name": "api_key",
|
|
29
29
|
"label": "Api Key",
|
|
30
30
|
"description": "Your ClipKit API Key for authentication"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "projectId",
|
|
34
|
+
"label": "Project Id",
|
|
35
|
+
"description": "Default project ID for all operations (can be overridden per request)"
|
|
31
36
|
}
|
|
32
37
|
]
|
|
33
38
|
},
|
package/src/apps/cloudflare.json
CHANGED
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"name": "apiToken",
|
|
24
24
|
"label": "Api Token",
|
|
25
25
|
"description": "Cloudflare API token (create at dash.cloudflare.com/profile/api-tokens)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "accountId",
|
|
29
|
+
"label": "Account Id",
|
|
30
|
+
"description": "Cloudflare Account ID (found on your dashboard overview page)"
|
|
26
31
|
}
|
|
27
32
|
]
|
|
28
33
|
},
|
package/src/apps/convertkit.json
CHANGED
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"name": "token",
|
|
24
24
|
"label": "Api Key",
|
|
25
25
|
"description": "ConvertKit API key (find at app.convertkit.com/account_settings/advanced_settings)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "apiSecret",
|
|
29
|
+
"label": "Api Secret",
|
|
30
|
+
"description": "ConvertKit API secret (for subscriber management endpoints)"
|
|
26
31
|
}
|
|
27
32
|
]
|
|
28
33
|
},
|
package/src/apps/discord.json
CHANGED
|
@@ -22,6 +22,22 @@
|
|
|
22
22
|
{
|
|
23
23
|
"name": "token",
|
|
24
24
|
"label": "access_token"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "refresh_token",
|
|
28
|
+
"label": "refresh_token"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "expires_in",
|
|
32
|
+
"label": "expires_in"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "token_type",
|
|
36
|
+
"label": "token_type"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "scope",
|
|
40
|
+
"label": "scope"
|
|
25
41
|
}
|
|
26
42
|
],
|
|
27
43
|
"oauth2": {
|
package/src/apps/dnsimple.json
CHANGED
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"name": "accessToken",
|
|
24
24
|
"label": "Access Token",
|
|
25
25
|
"description": "DNSimple API access token (generate at dnsimple.com/a/{account}/account/access_tokens)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "accountId",
|
|
29
|
+
"label": "Account Id",
|
|
30
|
+
"description": "DNSimple Account ID (numeric, found in your account URL)"
|
|
26
31
|
}
|
|
27
32
|
]
|
|
28
33
|
},
|
package/src/apps/docusign.json
CHANGED
|
@@ -22,6 +22,18 @@
|
|
|
22
22
|
{
|
|
23
23
|
"name": "token",
|
|
24
24
|
"label": "access_token"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "refresh_token",
|
|
28
|
+
"label": "refresh_token"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "expires_in",
|
|
32
|
+
"label": "expires_in"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "token_type",
|
|
36
|
+
"label": "token_type"
|
|
25
37
|
}
|
|
26
38
|
],
|
|
27
39
|
"oauth2": {
|
package/src/apps/dropbox.json
CHANGED
|
@@ -23,6 +23,18 @@
|
|
|
23
23
|
{
|
|
24
24
|
"name": "token",
|
|
25
25
|
"label": "access_token"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "refresh_token",
|
|
29
|
+
"label": "refresh_token"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "expires_in",
|
|
33
|
+
"label": "expires_in"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "account_id",
|
|
37
|
+
"label": "account_id"
|
|
26
38
|
}
|
|
27
39
|
],
|
|
28
40
|
"oauth2": {
|
package/src/apps/dynadot.json
CHANGED
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"name": "token",
|
|
24
24
|
"label": "Api Key",
|
|
25
25
|
"description": "Dynadot API key (generate at dynadot.com/account/domain/setting/api.html)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "apiKey",
|
|
29
|
+
"label": "Api Key",
|
|
30
|
+
"description": "Dynadot API key (generate at dynadot.com/account/domain/setting/api.html)"
|
|
26
31
|
}
|
|
27
32
|
]
|
|
28
33
|
},
|
package/src/apps/gemini.json
CHANGED
|
@@ -27,6 +27,11 @@
|
|
|
27
27
|
"name": "api_key",
|
|
28
28
|
"label": "Api Key",
|
|
29
29
|
"description": "Your Google AI API Key (get from https://aistudio.google.com/apikey)"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "apiKey",
|
|
33
|
+
"label": "Api Key",
|
|
34
|
+
"description": "Your Google AI API Key (get from https://aistudio.google.com/apikey)"
|
|
30
35
|
}
|
|
31
36
|
]
|
|
32
37
|
},
|