Skip to content

Commit c61cbad

Browse files
authored
Reexport SamlConfig type to solve a regression in consumer packages (#516)
* fix: Reexport SamlConfig type to solve a regression in consumer packages * doc: Typo in template
1 parent 51a154c commit c61cbad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Description
22

3-
Thank you for taking the time to create a PR to support this commuity-maintained project. We are all volunteers here, so features are only added by contributers like you. Please also be patient while the maintainers work to review your proposed changes for quality and effacy.
3+
Thank you for taking the time to create a PR to support this community-maintained project. We are all volunteers here, so features are only added by contributers like you. Please also be patient while the maintainers work to review your proposed changes for quality and effacy.
44

55
Please include a _summary of the change_ and, where appropriate, _which issue is addressed_.
66

src/passport-saml/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import type { CacheItem, CacheProvider} from './inmemory-cache-provider';
22
import { SAML } from './saml';
33
import Strategy = require('./strategy');
44
import MultiSamlStrategy = require('./multiSamlStrategy');
5-
import type { Profile, VerifiedCallback, VerifyWithRequest, VerifyWithoutRequest } from './types';
5+
import type { Profile, SamlConfig, VerifiedCallback, VerifyWithRequest, VerifyWithoutRequest } from './types';
66

7-
export { SAML, Strategy, MultiSamlStrategy, CacheItem, CacheProvider, Profile, VerifiedCallback, VerifyWithRequest, VerifyWithoutRequest };
7+
export { SAML, Strategy, MultiSamlStrategy, CacheItem, CacheProvider, Profile, SamlConfig, VerifiedCallback, VerifyWithRequest, VerifyWithoutRequest };

0 commit comments

Comments
 (0)