@automate.ax/catalog 0.83.3 → 0.85.0
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/catalog.d.ts +134 -38
- package/dist/catalog.js +26 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/index.d.ts +640 -0
- package/dist/triggers/index.js +4 -0
- package/dist/triggers/stripe.d.ts +262 -0
- package/dist/triggers/stripe.js +107 -0
- package/dist/triggers/webflow.d.ts +63 -0
- package/dist/triggers/webflow.js +86 -0
- package/package.json +14 -2
- package/src/catalog.ts +31 -1
- package/src/index.ts +2 -0
- package/src/triggers/index.ts +4 -0
- package/src/triggers/stripe.ts +110 -0
- package/src/triggers/webflow.ts +92 -0
package/dist/catalog.js
CHANGED
|
@@ -322,6 +322,21 @@ export const slackService = defineIntegrationService({
|
|
|
322
322
|
id: "slack",
|
|
323
323
|
name: "Slack",
|
|
324
324
|
});
|
|
325
|
+
export const stripeService = defineApiKeyService({
|
|
326
|
+
connectionNotice: {
|
|
327
|
+
action: {
|
|
328
|
+
href: "https://docs.stripe.com/keys#limit-access",
|
|
329
|
+
label: "Review permissions",
|
|
330
|
+
},
|
|
331
|
+
description: "Restricted keys need read access to Account for connection checks. Managed triggers also need write access to Webhook Endpoints.",
|
|
332
|
+
title: "Stripe restricted-key permissions",
|
|
333
|
+
},
|
|
334
|
+
credentialUrl: "https://dashboard.stripe.com/apikeys",
|
|
335
|
+
description: "Connect a Stripe account with a secret or restricted API key.",
|
|
336
|
+
id: "stripe",
|
|
337
|
+
name: "Stripe",
|
|
338
|
+
placeholder: "sk_test_... or rk_test_...",
|
|
339
|
+
});
|
|
325
340
|
export const tidycalService = defineIntegrationService({
|
|
326
341
|
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
327
342
|
description: "Connect a TidyCal account.",
|
|
@@ -376,6 +391,12 @@ export const whatsappService = defineIntegrationService({
|
|
|
376
391
|
id: "whatsapp",
|
|
377
392
|
name: "WhatsApp",
|
|
378
393
|
});
|
|
394
|
+
export const webflowService = defineIntegrationService({
|
|
395
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
396
|
+
description: "Connect Webflow sites and workspaces.",
|
|
397
|
+
id: "webflow",
|
|
398
|
+
name: "Webflow",
|
|
399
|
+
});
|
|
379
400
|
export const xaiService = defineApiKeyService({
|
|
380
401
|
description: "Connect an xAI API key.",
|
|
381
402
|
id: "xai",
|
|
@@ -414,11 +435,13 @@ export const integrationCatalog = defineIntegrationCatalog([
|
|
|
414
435
|
resendService,
|
|
415
436
|
scrapflyService,
|
|
416
437
|
slackService,
|
|
438
|
+
stripeService,
|
|
417
439
|
tidycalService,
|
|
418
440
|
togetheraiService,
|
|
419
441
|
trelloService,
|
|
420
442
|
vercelAiGatewayService,
|
|
421
443
|
vercelService,
|
|
444
|
+
webflowService,
|
|
422
445
|
whatsappService,
|
|
423
446
|
xaiService,
|
|
424
447
|
]);
|
|
@@ -453,6 +476,9 @@ function defineApiKeyService(service) {
|
|
|
453
476
|
type: "form",
|
|
454
477
|
},
|
|
455
478
|
],
|
|
479
|
+
...(service.connectionNotice
|
|
480
|
+
? { connectionNotice: service.connectionNotice }
|
|
481
|
+
: {}),
|
|
456
482
|
description: service.description,
|
|
457
483
|
...(service.icon ? { icon: service.icon } : {}),
|
|
458
484
|
id: service.id,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationConnectionNotice, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, type TriggerScopePresentation, type TriggerPresentationValue, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, type DashboardRunConfig, type DashboardRunEndpointOptions, type DashboardRunField, type HttpTriggerEndpointOptions, type HttpTriggerScope, type MailhookAddressOptions, type MailhookScope, type TriggerType, } from "./triggers/index.js";
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, } from "./triggers/index.js";
|