@automate.ax/catalog 0.72.0 → 0.74.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 CHANGED
@@ -223,6 +223,14 @@ export declare const googleService: {
223
223
  readonly name: "OAuth";
224
224
  readonly type: "redirect";
225
225
  }];
226
+ readonly connectionNotice: {
227
+ readonly action: {
228
+ readonly href: "mailto:hello@automate.ax?subject=Google%20integration%20access";
229
+ readonly label: "Request access";
230
+ };
231
+ readonly description: "During alpha, Google integrations are available by request. Request access for the Google Account you want to connect.";
232
+ readonly title: "Google access during alpha";
233
+ };
226
234
  readonly description: "Connect a Google account.";
227
235
  readonly id: "google";
228
236
  readonly name: "Google";
@@ -776,6 +784,14 @@ export declare const integrationCatalog: readonly [{
776
784
  readonly name: "OAuth";
777
785
  readonly type: "redirect";
778
786
  }];
787
+ readonly connectionNotice: {
788
+ readonly action: {
789
+ readonly href: "mailto:hello@automate.ax?subject=Google%20integration%20access";
790
+ readonly label: "Request access";
791
+ };
792
+ readonly description: "During alpha, Google integrations are available by request. Request access for the Google Account you want to connect.";
793
+ readonly title: "Google access during alpha";
794
+ };
779
795
  readonly description: "Connect a Google account.";
780
796
  readonly id: "google";
781
797
  readonly name: "Google";
package/dist/catalog.js CHANGED
@@ -106,6 +106,14 @@ export const githubService = defineIntegrationService({
106
106
  });
107
107
  export const googleService = defineIntegrationService({
108
108
  connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
109
+ connectionNotice: {
110
+ action: {
111
+ href: "mailto:hello@automate.ax?subject=Google%20integration%20access",
112
+ label: "Request access",
113
+ },
114
+ description: "During alpha, Google integrations are available by request. Request access for the Google Account you want to connect.",
115
+ title: "Google access during alpha",
116
+ },
109
117
  description: "Connect a Google account.",
110
118
  id: "google",
111
119
  name: "Google",
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, cloudflareService, cohereService, 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";
2
- export { defineIntegrationCatalog, defineIntegrationService, integrationScope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, type TriggerScopePresentation, type TriggerPresentationValue, } from "./types.js";
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/types.d.ts CHANGED
@@ -30,8 +30,18 @@ export type IntegrationConnectionDefinition = (IntegrationConnectionDefinitionBa
30
30
  fields: readonly IntegrationFormField[];
31
31
  type: "form";
32
32
  });
33
+ /** Context shown before a user starts a provider connection. */
34
+ export interface IntegrationConnectionNotice {
35
+ action: {
36
+ href: string;
37
+ label: string;
38
+ };
39
+ description: string;
40
+ title: string;
41
+ }
33
42
  export interface IntegrationServiceDefinition {
34
43
  connectionMethods: readonly IntegrationConnectionDefinition[];
44
+ connectionNotice?: IntegrationConnectionNotice;
35
45
  description?: string;
36
46
  id: string;
37
47
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/catalog",
3
- "version": "0.72.0",
3
+ "version": "0.74.0",
4
4
  "description": "Shared integration service and trigger definitions for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/catalog.ts CHANGED
@@ -122,6 +122,15 @@ export const githubService = defineIntegrationService({
122
122
 
123
123
  export const googleService = defineIntegrationService({
124
124
  connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
125
+ connectionNotice: {
126
+ action: {
127
+ href: "mailto:hello@automate.ax?subject=Google%20integration%20access",
128
+ label: "Request access",
129
+ },
130
+ description:
131
+ "During alpha, Google integrations are available by request. Request access for the Google Account you want to connect.",
132
+ title: "Google access during alpha",
133
+ },
125
134
  description: "Connect a Google account.",
126
135
  id: "google",
127
136
  name: "Google",
package/src/index.ts CHANGED
@@ -45,6 +45,7 @@ export {
45
45
  type IntegrationAccountConnectionOption,
46
46
  type IntegrationAccountRequirement,
47
47
  type IntegrationConnectionDefinition,
48
+ type IntegrationConnectionNotice,
48
49
  type IntegrationFormField,
49
50
  type IntegrationScopeRequirement,
50
51
  type IntegrationServiceDefinition,
package/src/types.ts CHANGED
@@ -40,8 +40,19 @@ export type IntegrationConnectionDefinition =
40
40
  type: "form"
41
41
  })
42
42
 
43
+ /** Context shown before a user starts a provider connection. */
44
+ export interface IntegrationConnectionNotice {
45
+ action: {
46
+ href: string
47
+ label: string
48
+ }
49
+ description: string
50
+ title: string
51
+ }
52
+
43
53
  export interface IntegrationServiceDefinition {
44
54
  connectionMethods: readonly IntegrationConnectionDefinition[]
55
+ connectionNotice?: IntegrationConnectionNotice
45
56
  description?: string
46
57
  id: string
47
58