Skip to content

Commit

Permalink
Tweaks for allowing partial https in gasket config (#1046)
Browse files Browse the repository at this point in the history
* fix: tweaks for partial configs in gasket config

* changeset

---------

Co-authored-by: Kawika Bader <[email protected]>
Co-authored-by: Kawika Bader <[email protected]>
  • Loading branch information
3 people authored Mar 6, 2025
1 parent 87ea998 commit cd76a80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/tired-rockets-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@gasket/plugin-https": patch
---

Allow partial https in gasket config.
4 changes: 2 additions & 2 deletions packages/gasket-plugin-https/lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ declare module '@gasket/core' {

type CustomHttpsSettings = {
root?: string;
key: MaybeMultiple<CertInput>;
cert: MaybeMultiple<CertInput>;
key?: MaybeMultiple<CertInput>;
cert?: MaybeMultiple<CertInput>;
ca?: MaybeMultiple<CertInput>;
ciphers?: MaybeMultiple<string>;
honorCipherOrder?: boolean;
Expand Down

0 comments on commit cd76a80

Please sign in to comment.