@automate.ax/catalog 0.88.0 → 0.88.2

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
@@ -482,6 +482,46 @@ export declare const openaiService: {
482
482
  readonly credentialUrl?: string | undefined;
483
483
  }];
484
484
  };
485
+ export declare const onePasswordService: {
486
+ readonly connectionMethods: readonly [{
487
+ readonly credentialUrl: "https://www.1password.dev/service-accounts/get-started";
488
+ readonly fields: readonly [{
489
+ readonly description: "Create an immutable service account with access to only the vaults and Environments this automation needs.";
490
+ readonly input: "password";
491
+ readonly label: "Service account token";
492
+ readonly name: "serviceAccountToken";
493
+ readonly placeholder: "ops_...";
494
+ readonly required: true;
495
+ }];
496
+ readonly id: "service-account";
497
+ readonly name: "Service account";
498
+ readonly type: "form";
499
+ }, {
500
+ readonly credentialUrl: "https://www.1password.dev/events-api/get-started";
501
+ readonly fields: readonly [{
502
+ readonly default: "https://events.1password.com";
503
+ readonly description: "Use the Events API URL shown by 1Password for your account region.";
504
+ readonly input: "url";
505
+ readonly label: "Events API URL";
506
+ readonly name: "baseUrl";
507
+ readonly placeholder: "https://events.1password.com";
508
+ readonly required: true;
509
+ }, {
510
+ readonly input: "password";
511
+ readonly label: "Events API bearer token";
512
+ readonly name: "bearerToken";
513
+ readonly placeholder: "Paste the Events Reporting token";
514
+ readonly required: true;
515
+ }];
516
+ readonly id: "events-api-token";
517
+ readonly name: "Events API token";
518
+ readonly type: "form";
519
+ }];
520
+ readonly description: "Connect a 1Password service account for secrets automation or an Events API token for account activity.";
521
+ readonly id: "1password";
522
+ readonly name: "1Password";
523
+ readonly preferredConnectionMethodId: "service-account";
524
+ };
485
525
  export declare const openrouterService: {
486
526
  readonly id: "openrouter";
487
527
  readonly name: string;
@@ -1191,6 +1231,45 @@ export declare const integrationCatalog: readonly [{
1191
1231
  readonly type: "form";
1192
1232
  readonly credentialUrl?: string | undefined;
1193
1233
  }];
1234
+ }, {
1235
+ readonly connectionMethods: readonly [{
1236
+ readonly credentialUrl: "https://www.1password.dev/service-accounts/get-started";
1237
+ readonly fields: readonly [{
1238
+ readonly description: "Create an immutable service account with access to only the vaults and Environments this automation needs.";
1239
+ readonly input: "password";
1240
+ readonly label: "Service account token";
1241
+ readonly name: "serviceAccountToken";
1242
+ readonly placeholder: "ops_...";
1243
+ readonly required: true;
1244
+ }];
1245
+ readonly id: "service-account";
1246
+ readonly name: "Service account";
1247
+ readonly type: "form";
1248
+ }, {
1249
+ readonly credentialUrl: "https://www.1password.dev/events-api/get-started";
1250
+ readonly fields: readonly [{
1251
+ readonly default: "https://events.1password.com";
1252
+ readonly description: "Use the Events API URL shown by 1Password for your account region.";
1253
+ readonly input: "url";
1254
+ readonly label: "Events API URL";
1255
+ readonly name: "baseUrl";
1256
+ readonly placeholder: "https://events.1password.com";
1257
+ readonly required: true;
1258
+ }, {
1259
+ readonly input: "password";
1260
+ readonly label: "Events API bearer token";
1261
+ readonly name: "bearerToken";
1262
+ readonly placeholder: "Paste the Events Reporting token";
1263
+ readonly required: true;
1264
+ }];
1265
+ readonly id: "events-api-token";
1266
+ readonly name: "Events API token";
1267
+ readonly type: "form";
1268
+ }];
1269
+ readonly description: "Connect a 1Password service account for secrets automation or an Events API token for account activity.";
1270
+ readonly id: "1password";
1271
+ readonly name: "1Password";
1272
+ readonly preferredConnectionMethodId: "service-account";
1194
1273
  }, {
1195
1274
  readonly id: "openrouter";
1196
1275
  readonly name: string;
package/dist/catalog.js CHANGED
@@ -278,6 +278,54 @@ export const openaiService = defineApiKeyService({
278
278
  name: "OpenAI",
279
279
  placeholder: "sk-...",
280
280
  });
281
+ export const onePasswordService = defineIntegrationService({
282
+ connectionMethods: [
283
+ {
284
+ credentialUrl: "https://www.1password.dev/service-accounts/get-started",
285
+ fields: [
286
+ {
287
+ description: "Create an immutable service account with access to only the vaults and Environments this automation needs.",
288
+ input: "password",
289
+ label: "Service account token",
290
+ name: "serviceAccountToken",
291
+ placeholder: "ops_...",
292
+ required: true,
293
+ },
294
+ ],
295
+ id: "service-account",
296
+ name: "Service account",
297
+ type: "form",
298
+ },
299
+ {
300
+ credentialUrl: "https://www.1password.dev/events-api/get-started",
301
+ fields: [
302
+ {
303
+ default: "https://events.1password.com",
304
+ description: "Use the Events API URL shown by 1Password for your account region.",
305
+ input: "url",
306
+ label: "Events API URL",
307
+ name: "baseUrl",
308
+ placeholder: "https://events.1password.com",
309
+ required: true,
310
+ },
311
+ {
312
+ input: "password",
313
+ label: "Events API bearer token",
314
+ name: "bearerToken",
315
+ placeholder: "Paste the Events Reporting token",
316
+ required: true,
317
+ },
318
+ ],
319
+ id: "events-api-token",
320
+ name: "Events API token",
321
+ type: "form",
322
+ },
323
+ ],
324
+ description: "Connect a 1Password service account for secrets automation or an Events API token for account activity.",
325
+ id: "1password",
326
+ name: "1Password",
327
+ preferredConnectionMethodId: "service-account",
328
+ });
281
329
  export const openrouterService = defineApiKeyService({
282
330
  description: "Connect an OpenRouter API key.",
283
331
  id: "openrouter",
@@ -446,6 +494,7 @@ export const integrationCatalog = defineIntegrationCatalog([
446
494
  millionverifierService,
447
495
  mistralService,
448
496
  openaiService,
497
+ onePasswordService,
449
498
  openrouterService,
450
499
  perplexityService,
451
500
  postgresService,
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, closeService, 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";
1
+ export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, closeService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, onePasswordService, 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, closeService, 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";
1
+ export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, closeService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, onePasswordService, 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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/catalog",
3
- "version": "0.88.0",
3
+ "version": "0.88.2",
4
4
  "description": "Shared integration service and trigger definitions for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/catalog.ts CHANGED
@@ -310,6 +310,58 @@ export const openaiService = defineApiKeyService({
310
310
  placeholder: "sk-...",
311
311
  })
312
312
 
313
+ export const onePasswordService = defineIntegrationService({
314
+ connectionMethods: [
315
+ {
316
+ credentialUrl: "https://www.1password.dev/service-accounts/get-started",
317
+ fields: [
318
+ {
319
+ description:
320
+ "Create an immutable service account with access to only the vaults and Environments this automation needs.",
321
+ input: "password",
322
+ label: "Service account token",
323
+ name: "serviceAccountToken",
324
+ placeholder: "ops_...",
325
+ required: true,
326
+ },
327
+ ],
328
+ id: "service-account",
329
+ name: "Service account",
330
+ type: "form",
331
+ },
332
+ {
333
+ credentialUrl: "https://www.1password.dev/events-api/get-started",
334
+ fields: [
335
+ {
336
+ default: "https://events.1password.com",
337
+ description:
338
+ "Use the Events API URL shown by 1Password for your account region.",
339
+ input: "url",
340
+ label: "Events API URL",
341
+ name: "baseUrl",
342
+ placeholder: "https://events.1password.com",
343
+ required: true,
344
+ },
345
+ {
346
+ input: "password",
347
+ label: "Events API bearer token",
348
+ name: "bearerToken",
349
+ placeholder: "Paste the Events Reporting token",
350
+ required: true,
351
+ },
352
+ ],
353
+ id: "events-api-token",
354
+ name: "Events API token",
355
+ type: "form",
356
+ },
357
+ ],
358
+ description:
359
+ "Connect a 1Password service account for secrets automation or an Events API token for account activity.",
360
+ id: "1password",
361
+ name: "1Password",
362
+ preferredConnectionMethodId: "service-account",
363
+ })
364
+
313
365
  export const openrouterService = defineApiKeyService({
314
366
  description: "Connect an OpenRouter API key.",
315
367
  id: "openrouter",
@@ -496,6 +548,7 @@ export const integrationCatalog = defineIntegrationCatalog([
496
548
  millionverifierService,
497
549
  mistralService,
498
550
  openaiService,
551
+ onePasswordService,
499
552
  openrouterService,
500
553
  perplexityService,
501
554
  postgresService,
package/src/index.ts CHANGED
@@ -27,6 +27,7 @@ export {
27
27
  millionverifierService,
28
28
  mistralService,
29
29
  openaiService,
30
+ onePasswordService,
30
31
  openrouterService,
31
32
  perplexityService,
32
33
  postgresService,