@budibase/server 2.7.20-alpha.0 → 2.7.20-alpha.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/index.js CHANGED
@@ -26461,6 +26461,19 @@ var init_postgres = __esm({
26461
26461
  required: false
26462
26462
  },
26463
26463
  ca: {
26464
+ display: "Server CA",
26465
+ type: "longForm" /* LONGFORM */,
26466
+ default: false,
26467
+ required: false
26468
+ },
26469
+ clientKey: {
26470
+ display: "Client key",
26471
+ type: "longForm" /* LONGFORM */,
26472
+ default: false,
26473
+ required: false
26474
+ },
26475
+ clientCert: {
26476
+ display: "Client cert",
26464
26477
  type: "longForm" /* LONGFORM */,
26465
26478
  default: false,
26466
26479
  required: false
@@ -26502,7 +26515,9 @@ var init_postgres = __esm({
26502
26515
  ...this.config,
26503
26516
  ssl: this.config.ssl ? {
26504
26517
  rejectUnauthorized: this.config.rejectUnauthorized,
26505
- ca: this.config.ca
26518
+ ca: this.config.ca,
26519
+ key: this.config.clientKey,
26520
+ cert: this.config.clientCert
26506
26521
  } : void 0
26507
26522
  };
26508
26523
  this.client = new import_pg.Client(newConfig);