@boxyhq/saml20
Advanced tools
Comparing version 1.4.13-beta.1368 to 1.4.13-beta.1371
@@ -5,2 +5,14 @@ import { PubKeyInfo } from './cert'; | ||
parseMetadata: (idpMeta: string, validateOpts: any) => Promise<Record<string, any>>; | ||
createIdPMetadataXML: ({ ssoUrl, entityId, x509cert, wantAuthnRequestsSigned, }: { | ||
ssoUrl: string; | ||
entityId: string; | ||
x509cert: string; | ||
wantAuthnRequestsSigned: false; | ||
}) => string; | ||
createSPMetadataXML: ({ entityId, publicKeyString, acsUrl, encryption, }: { | ||
entityId: string; | ||
publicKeyString: string; | ||
acsUrl: string; | ||
encryption: boolean; | ||
}) => string; | ||
createSAMLResponse: ({ audience, issuer, acsUrl, claims, requestId, privateKey, publicKey, flattenArray, }: { | ||
@@ -54,3 +66,11 @@ audience: string; | ||
}>; | ||
createLogoutRequest: ({ nameId, providerName, sloUrl, }: { | ||
nameId: string; | ||
providerName: string; | ||
sloUrl: string; | ||
}) => { | ||
id: string; | ||
xml: string; | ||
}; | ||
}; | ||
export default _default; |
@@ -14,2 +14,4 @@ 'use strict'; | ||
parseMetadata: metadata_1.parseMetadata, | ||
createIdPMetadataXML: metadata_1.createIdPMetadataXML, | ||
createSPMetadataXML: metadata_1.createSPMetadataXML, | ||
createSAMLResponse: response_1.createSAMLResponse, | ||
@@ -32,2 +34,3 @@ request: request_1.request, | ||
parseLogoutResponse: logout_1.parseLogoutResponse, | ||
createLogoutRequest: logout_1.createLogoutRequest, | ||
}; |
{ | ||
"name": "@boxyhq/saml20", | ||
"version": "1.4.13-beta.1368", | ||
"version": "1.4.13-beta.1371", | ||
"description": "SAML 2.0 token parser for Node.js", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69301
1489