@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/query.js CHANGED
@@ -14254,6 +14254,19 @@ var SCHEMA = {
14254
14254
  required: false
14255
14255
  },
14256
14256
  ca: {
14257
+ display: "Server CA",
14258
+ type: "longForm" /* LONGFORM */,
14259
+ default: false,
14260
+ required: false
14261
+ },
14262
+ clientKey: {
14263
+ display: "Client key",
14264
+ type: "longForm" /* LONGFORM */,
14265
+ default: false,
14266
+ required: false
14267
+ },
14268
+ clientCert: {
14269
+ display: "Client cert",
14257
14270
  type: "longForm" /* LONGFORM */,
14258
14271
  default: false,
14259
14272
  required: false
@@ -14295,7 +14308,9 @@ var PostgresIntegration = class extends sql_default {
14295
14308
  ...this.config,
14296
14309
  ssl: this.config.ssl ? {
14297
14310
  rejectUnauthorized: this.config.rejectUnauthorized,
14298
- ca: this.config.ca
14311
+ ca: this.config.ca,
14312
+ key: this.config.clientKey,
14313
+ cert: this.config.clientCert
14299
14314
  } : void 0
14300
14315
  };
14301
14316
  this.client = new import_pg.Client(newConfig);