@automate.ax/catalog 0.80.0 → 0.82.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 +4 -4
- package/dist/catalog.js +2 -2
- package/package.json +1 -1
- package/src/catalog.ts +3 -2
package/dist/catalog.d.ts
CHANGED
|
@@ -452,11 +452,11 @@ export declare const perplexityService: {
|
|
|
452
452
|
export declare const postgresService: {
|
|
453
453
|
readonly connectionMethods: readonly [{
|
|
454
454
|
readonly fields: readonly [{
|
|
455
|
-
readonly description: "
|
|
455
|
+
readonly description: "For Supabase, use its provided URL and append ?uselibpqcompat=true&sslmode=require only when you intend libpq's encrypted, non-verifying require behavior.";
|
|
456
456
|
readonly input: "password";
|
|
457
457
|
readonly label: "Connection string";
|
|
458
458
|
readonly name: "connectionString";
|
|
459
|
-
readonly placeholder: "postgresql://
|
|
459
|
+
readonly placeholder: "postgresql://postgres.project-ref:password@aws-0-region.pooler.supabase.com:5432/postgres?uselibpqcompat=true&sslmode=require";
|
|
460
460
|
readonly required: true;
|
|
461
461
|
}];
|
|
462
462
|
readonly id: "credentials";
|
|
@@ -1054,11 +1054,11 @@ export declare const integrationCatalog: readonly [{
|
|
|
1054
1054
|
}, {
|
|
1055
1055
|
readonly connectionMethods: readonly [{
|
|
1056
1056
|
readonly fields: readonly [{
|
|
1057
|
-
readonly description: "
|
|
1057
|
+
readonly description: "For Supabase, use its provided URL and append ?uselibpqcompat=true&sslmode=require only when you intend libpq's encrypted, non-verifying require behavior.";
|
|
1058
1058
|
readonly input: "password";
|
|
1059
1059
|
readonly label: "Connection string";
|
|
1060
1060
|
readonly name: "connectionString";
|
|
1061
|
-
readonly placeholder: "postgresql://
|
|
1061
|
+
readonly placeholder: "postgresql://postgres.project-ref:password@aws-0-region.pooler.supabase.com:5432/postgres?uselibpqcompat=true&sslmode=require";
|
|
1062
1062
|
readonly required: true;
|
|
1063
1063
|
}];
|
|
1064
1064
|
readonly id: "credentials";
|
package/dist/catalog.js
CHANGED
|
@@ -240,11 +240,11 @@ export const postgresService = defineIntegrationService({
|
|
|
240
240
|
{
|
|
241
241
|
fields: [
|
|
242
242
|
{
|
|
243
|
-
description: "
|
|
243
|
+
description: "For Supabase, use its provided URL and append ?uselibpqcompat=true&sslmode=require only when you intend libpq's encrypted, non-verifying require behavior.",
|
|
244
244
|
input: "password",
|
|
245
245
|
label: "Connection string",
|
|
246
246
|
name: "connectionString",
|
|
247
|
-
placeholder: "postgresql://
|
|
247
|
+
placeholder: "postgresql://postgres.project-ref:password@aws-0-region.pooler.supabase.com:5432/postgres?uselibpqcompat=true&sslmode=require",
|
|
248
248
|
required: true,
|
|
249
249
|
},
|
|
250
250
|
],
|
package/package.json
CHANGED
package/src/catalog.ts
CHANGED
|
@@ -270,12 +270,13 @@ export const postgresService = defineIntegrationService({
|
|
|
270
270
|
{
|
|
271
271
|
fields: [
|
|
272
272
|
{
|
|
273
|
-
description:
|
|
273
|
+
description:
|
|
274
|
+
"For Supabase, use its provided URL and append ?uselibpqcompat=true&sslmode=require only when you intend libpq's encrypted, non-verifying require behavior.",
|
|
274
275
|
input: "password",
|
|
275
276
|
label: "Connection string",
|
|
276
277
|
name: "connectionString",
|
|
277
278
|
placeholder:
|
|
278
|
-
"postgresql://
|
|
279
|
+
"postgresql://postgres.project-ref:password@aws-0-region.pooler.supabase.com:5432/postgres?uselibpqcompat=true&sslmode=require",
|
|
279
280
|
required: true,
|
|
280
281
|
},
|
|
281
282
|
],
|