Skip to content

Commit cd76a80

Browse files
agerard-godaddykawikabaderkbader-godaddy
authored
Tweaks for allowing partial https in gasket config (#1046)
* fix: tweaks for partial configs in gasket config * changeset --------- Co-authored-by: Kawika Bader <ekbader@gmail.com> Co-authored-by: Kawika Bader <76699310+kbader-godaddy@users.noreply.github.com>
1 parent 87ea998 commit cd76a80

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/tired-rockets-jog.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@gasket/plugin-https": patch
3+
---
4+
5+
Allow partial https in gasket config.

packages/gasket-plugin-https/lib/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ declare module '@gasket/core' {
2727

2828
type CustomHttpsSettings = {
2929
root?: string;
30-
key: MaybeMultiple<CertInput>;
31-
cert: MaybeMultiple<CertInput>;
30+
key?: MaybeMultiple<CertInput>;
31+
cert?: MaybeMultiple<CertInput>;
3232
ca?: MaybeMultiple<CertInput>;
3333
ciphers?: MaybeMultiple<string>;
3434
honorCipherOrder?: boolean;

0 commit comments

Comments
 (0)