@automate.ax/catalog 0.104.0 → 0.105.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
@@ -637,7 +637,7 @@ export declare const postgresService: {
637
637
  readonly name: "Credentials";
638
638
  readonly type: "form";
639
639
  }];
640
- readonly description: "Connect a PostgreSQL database.";
640
+ readonly description: "Connect a PostgreSQL database with a least-privilege role.";
641
641
  readonly id: "postgres";
642
642
  readonly name: "PostgreSQL";
643
643
  };
@@ -1449,7 +1449,7 @@ export declare const integrationCatalog: readonly [{
1449
1449
  readonly name: "Credentials";
1450
1450
  readonly type: "form";
1451
1451
  }];
1452
- readonly description: "Connect a PostgreSQL database.";
1452
+ readonly description: "Connect a PostgreSQL database with a least-privilege role.";
1453
1453
  readonly id: "postgres";
1454
1454
  readonly name: "PostgreSQL";
1455
1455
  }, {
package/dist/catalog.js CHANGED
@@ -408,7 +408,7 @@ export const postgresService = defineIntegrationService({
408
408
  type: "form",
409
409
  },
410
410
  ],
411
- description: "Connect a PostgreSQL database.",
411
+ description: "Connect a PostgreSQL database with a least-privilege role.",
412
412
  id: "postgres",
413
413
  name: "PostgreSQL",
414
414
  });
@@ -428,6 +428,7 @@ export const resendService = defineIntegrationService({
428
428
  preferredConnectionMethodId: "oauth",
429
429
  });
430
430
  export const scrapflyService = defineApiKeyService({
431
+ credentialUrl: "https://scrapfly.io/dashboard/project",
431
432
  description: "Connect a Scrapfly API key.",
432
433
  id: "scrapfly",
433
434
  name: "Scrapfly",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/catalog",
3
- "version": "0.104.0",
3
+ "version": "0.105.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
@@ -454,7 +454,7 @@ export const postgresService = defineIntegrationService({
454
454
  type: "form",
455
455
  },
456
456
  ],
457
- description: "Connect a PostgreSQL database.",
457
+ description: "Connect a PostgreSQL database with a least-privilege role.",
458
458
  id: "postgres",
459
459
  name: "PostgreSQL",
460
460
  })
@@ -476,6 +476,7 @@ export const resendService = defineIntegrationService({
476
476
  })
477
477
 
478
478
  export const scrapflyService = defineApiKeyService({
479
+ credentialUrl: "https://scrapfly.io/dashboard/project",
479
480
  description: "Connect a Scrapfly API key.",
480
481
  id: "scrapfly",
481
482
  name: "Scrapfly",