@sphereon/ssi-sdk.siopv2-oid4vp-common 0.34.1-feature.SSISDK.57.uni.client.205 → 0.34.1-feature.SSISDK.57.uni.client.206
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/index.cjs +0 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/index.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -26,7 +26,6 @@ __export(index_exports, {
|
|
|
26
26
|
OP: () => import_did_auth_siop.OP,
|
|
27
27
|
OPBuilder: () => import_did_auth_siop.OPBuilder,
|
|
28
28
|
RP: () => import_did_auth_siop.RP,
|
|
29
|
-
RequestUriMethod: () => import_did_auth_siop.RequestUriMethod,
|
|
30
29
|
ResponseMode: () => import_did_auth_siop.ResponseMode,
|
|
31
30
|
ResponseType: () => import_did_auth_siop.ResponseType,
|
|
32
31
|
SupportedVersion: () => import_did_auth_siop.SupportedVersion,
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/utils.ts"],"sourcesContent":["export * from './auth-model'\nexport * from './utils'\n\n// We are exporting some common class from SIOP\n/**\n * @private\n */\nexport {\n decodeUriAsJson,\n encodeJsonAsURI,\n type AuthorizationResponsePayload,\n type AuthorizationRequestPayload,\n URI,\n type AuthorizationRequestState,\n type RequestObjectPayload,\n AuthorizationRequest,\n AuthorizationResponse,\n RP,\n OP,\n OPBuilder,\n SupportedVersion,\n type PresentationVerificationResult,\n type PresentationVerificationCallback,\n type CreateAuthorizationRequest,\n type CreateAuthorizationRequestPayload,\n type CreateAuthorizationResponse,\n type CreateAuthorizationResponsePayload,\n type CallbackOpts,\n type CallbackOptsPayload,\n type QRCodeOpts,\n type QRCodeOptsPayload,\n createAuthorizationResponseFromPayload,\n createAuthorizationRequestToPayload,\n ResponseType,\n ResponseMode,\n VPTokenLocation,\n
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/utils.ts"],"sourcesContent":["export * from './auth-model'\nexport * from './utils'\n\n// We are exporting some common class from SIOP\n/**\n * @private\n */\nexport {\n decodeUriAsJson,\n encodeJsonAsURI,\n type AuthorizationResponsePayload,\n type AuthorizationRequestPayload,\n URI,\n type AuthorizationRequestState,\n type RequestObjectPayload,\n AuthorizationRequest,\n AuthorizationResponse,\n RP,\n OP,\n OPBuilder,\n SupportedVersion,\n type PresentationVerificationResult,\n type PresentationVerificationCallback,\n type CreateAuthorizationRequest,\n type CreateAuthorizationRequestPayload,\n type CreateAuthorizationResponse,\n type CreateAuthorizationResponsePayload,\n type CallbackOpts,\n type CallbackOptsPayload,\n type QRCodeOpts,\n type QRCodeOptsPayload,\n type RequestUriMethod,\n createAuthorizationResponseFromPayload,\n createAuthorizationRequestToPayload,\n ResponseType,\n ResponseMode,\n VPTokenLocation,\n} from '@sphereon/did-auth-siop'\n","export function uriWithBase(path: string, opts?: { baseURI?: string; envVarName?: string }) {\n let baseUri = `${!!opts?.baseURI ? opts.baseURI : opts?.envVarName && process ? process.env[opts.envVarName!] : process?.env?.BACKEND_BASE_URI}`\n if (!baseUri || baseUri === 'undefined') {\n throw Error('No base URI provided as param or environment variable')\n } else if (!baseUri.startsWith('http')) {\n throw Error(`Base URI needs to start with http(s). Received: ${baseUri}`)\n }\n baseUri = baseUri.endsWith('/') ? baseUri.substring(0, baseUri.length - 1) : baseUri\n return `${baseUri}${path.startsWith('/') ? path : '/' + path}`\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;;;;;;;;;;;ACAO,SAASA,YAAYC,MAAcC,MAAgD;AACxF,MAAIC,UAAU,GAAG,CAAC,CAACD,MAAME,UAAUF,KAAKE,UAAUF,MAAMG,cAAcC,UAAUA,QAAQC,IAAIL,KAAKG,UAAU,IAAKC,SAASC,KAAKC,gBAAAA;AAC9H,MAAI,CAACL,WAAWA,YAAY,aAAa;AACvC,UAAMM,MAAM,uDAAA;EACd,WAAW,CAACN,QAAQO,WAAW,MAAA,GAAS;AACtC,UAAMD,MAAM,mDAAmDN,OAAAA,EAAS;EAC1E;AACAA,YAAUA,QAAQQ,SAAS,GAAA,IAAOR,QAAQS,UAAU,GAAGT,QAAQU,SAAS,CAAA,IAAKV;AAC7E,SAAO,GAAGA,OAAAA,GAAUF,KAAKS,WAAW,GAAA,IAAOT,OAAO,MAAMA,IAAAA;AAC1D;AATgBD;;;ADOhB,2BA8BO;","names":["uriWithBase","path","opts","baseUri","baseURI","envVarName","process","env","BACKEND_BASE_URI","Error","startsWith","endsWith","substring","length"]}
|
package/dist/index.js
CHANGED
|
@@ -15,14 +15,13 @@ function uriWithBase(path, opts) {
|
|
|
15
15
|
__name(uriWithBase, "uriWithBase");
|
|
16
16
|
|
|
17
17
|
// src/index.ts
|
|
18
|
-
import { decodeUriAsJson, encodeJsonAsURI, URI, AuthorizationRequest, AuthorizationResponse, RP, OP, OPBuilder, SupportedVersion, createAuthorizationResponseFromPayload, createAuthorizationRequestToPayload, ResponseType, ResponseMode, VPTokenLocation
|
|
18
|
+
import { decodeUriAsJson, encodeJsonAsURI, URI, AuthorizationRequest, AuthorizationResponse, RP, OP, OPBuilder, SupportedVersion, createAuthorizationResponseFromPayload, createAuthorizationRequestToPayload, ResponseType, ResponseMode, VPTokenLocation } from "@sphereon/did-auth-siop";
|
|
19
19
|
export {
|
|
20
20
|
AuthorizationRequest,
|
|
21
21
|
AuthorizationResponse,
|
|
22
22
|
OP,
|
|
23
23
|
OPBuilder,
|
|
24
24
|
RP,
|
|
25
|
-
RequestUriMethod,
|
|
26
25
|
ResponseMode,
|
|
27
26
|
ResponseType,
|
|
28
27
|
SupportedVersion,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/utils.ts","../src/index.ts"],"sourcesContent":["export function uriWithBase(path: string, opts?: { baseURI?: string; envVarName?: string }) {\n let baseUri = `${!!opts?.baseURI ? opts.baseURI : opts?.envVarName && process ? process.env[opts.envVarName!] : process?.env?.BACKEND_BASE_URI}`\n if (!baseUri || baseUri === 'undefined') {\n throw Error('No base URI provided as param or environment variable')\n } else if (!baseUri.startsWith('http')) {\n throw Error(`Base URI needs to start with http(s). Received: ${baseUri}`)\n }\n baseUri = baseUri.endsWith('/') ? baseUri.substring(0, baseUri.length - 1) : baseUri\n return `${baseUri}${path.startsWith('/') ? path : '/' + path}`\n}\n","export * from './auth-model'\nexport * from './utils'\n\n// We are exporting some common class from SIOP\n/**\n * @private\n */\nexport {\n decodeUriAsJson,\n encodeJsonAsURI,\n type AuthorizationResponsePayload,\n type AuthorizationRequestPayload,\n URI,\n type AuthorizationRequestState,\n type RequestObjectPayload,\n AuthorizationRequest,\n AuthorizationResponse,\n RP,\n OP,\n OPBuilder,\n SupportedVersion,\n type PresentationVerificationResult,\n type PresentationVerificationCallback,\n type CreateAuthorizationRequest,\n type CreateAuthorizationRequestPayload,\n type CreateAuthorizationResponse,\n type CreateAuthorizationResponsePayload,\n type CallbackOpts,\n type CallbackOptsPayload,\n type QRCodeOpts,\n type QRCodeOptsPayload,\n createAuthorizationResponseFromPayload,\n createAuthorizationRequestToPayload,\n ResponseType,\n ResponseMode,\n VPTokenLocation,\n
|
|
1
|
+
{"version":3,"sources":["../src/utils.ts","../src/index.ts"],"sourcesContent":["export function uriWithBase(path: string, opts?: { baseURI?: string; envVarName?: string }) {\n let baseUri = `${!!opts?.baseURI ? opts.baseURI : opts?.envVarName && process ? process.env[opts.envVarName!] : process?.env?.BACKEND_BASE_URI}`\n if (!baseUri || baseUri === 'undefined') {\n throw Error('No base URI provided as param or environment variable')\n } else if (!baseUri.startsWith('http')) {\n throw Error(`Base URI needs to start with http(s). Received: ${baseUri}`)\n }\n baseUri = baseUri.endsWith('/') ? baseUri.substring(0, baseUri.length - 1) : baseUri\n return `${baseUri}${path.startsWith('/') ? path : '/' + path}`\n}\n","export * from './auth-model'\nexport * from './utils'\n\n// We are exporting some common class from SIOP\n/**\n * @private\n */\nexport {\n decodeUriAsJson,\n encodeJsonAsURI,\n type AuthorizationResponsePayload,\n type AuthorizationRequestPayload,\n URI,\n type AuthorizationRequestState,\n type RequestObjectPayload,\n AuthorizationRequest,\n AuthorizationResponse,\n RP,\n OP,\n OPBuilder,\n SupportedVersion,\n type PresentationVerificationResult,\n type PresentationVerificationCallback,\n type CreateAuthorizationRequest,\n type CreateAuthorizationRequestPayload,\n type CreateAuthorizationResponse,\n type CreateAuthorizationResponsePayload,\n type CallbackOpts,\n type CallbackOptsPayload,\n type QRCodeOpts,\n type QRCodeOptsPayload,\n type RequestUriMethod,\n createAuthorizationResponseFromPayload,\n createAuthorizationRequestToPayload,\n ResponseType,\n ResponseMode,\n VPTokenLocation,\n} from '@sphereon/did-auth-siop'\n"],"mappings":";;;;AAAO,SAASA,YAAYC,MAAcC,MAAgD;AACxF,MAAIC,UAAU,GAAG,CAAC,CAACD,MAAME,UAAUF,KAAKE,UAAUF,MAAMG,cAAcC,UAAUA,QAAQC,IAAIL,KAAKG,UAAU,IAAKC,SAASC,KAAKC,gBAAAA;AAC9H,MAAI,CAACL,WAAWA,YAAY,aAAa;AACvC,UAAMM,MAAM,uDAAA;EACd,WAAW,CAACN,QAAQO,WAAW,MAAA,GAAS;AACtC,UAAMD,MAAM,mDAAmDN,OAAAA,EAAS;EAC1E;AACAA,YAAUA,QAAQQ,SAAS,GAAA,IAAOR,QAAQS,UAAU,GAAGT,QAAQU,SAAS,CAAA,IAAKV;AAC7E,SAAO,GAAGA,OAAAA,GAAUF,KAAKS,WAAW,GAAA,IAAOT,OAAO,MAAMA,IAAAA;AAC1D;AATgBD;;;ACOhB,SACEc,iBACAC,iBAGAC,KAGAC,sBACAC,uBACAC,IACAC,IACAC,WACAC,kBAYAC,wCACAC,qCACAC,cACAC,cACAC,uBACK;","names":["uriWithBase","path","opts","baseUri","baseURI","envVarName","process","env","BACKEND_BASE_URI","Error","startsWith","endsWith","substring","length","decodeUriAsJson","encodeJsonAsURI","URI","AuthorizationRequest","AuthorizationResponse","RP","OP","OPBuilder","SupportedVersion","createAuthorizationResponseFromPayload","createAuthorizationRequestToPayload","ResponseType","ResponseMode","VPTokenLocation"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk.siopv2-oid4vp-common",
|
|
3
|
-
"version": "0.34.1-feature.SSISDK.57.uni.client.
|
|
3
|
+
"version": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
|
|
4
4
|
"description": "Common SIOPv2 and OID4VP types between modules",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@sphereon/did-auth-siop": "0.19.1-feature.DIIPv4.161",
|
|
29
|
-
"@sphereon/ssi-sdk.core": "0.34.1-feature.SSISDK.57.uni.client.
|
|
30
|
-
"@sphereon/ssi-types": "0.34.1-feature.SSISDK.57.uni.client.
|
|
29
|
+
"@sphereon/ssi-sdk.core": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
|
|
30
|
+
"@sphereon/ssi-types": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
|
|
31
31
|
"uint8arrays": "^3.1.1"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"README.md",
|
|
44
44
|
"LICENSE"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "c30b7b42dfbd1ea969234fe7a4a5813c5fddef3b"
|
|
47
47
|
}
|
package/src/index.ts
CHANGED
|
@@ -29,10 +29,10 @@ export {
|
|
|
29
29
|
type CallbackOptsPayload,
|
|
30
30
|
type QRCodeOpts,
|
|
31
31
|
type QRCodeOptsPayload,
|
|
32
|
+
type RequestUriMethod,
|
|
32
33
|
createAuthorizationResponseFromPayload,
|
|
33
34
|
createAuthorizationRequestToPayload,
|
|
34
35
|
ResponseType,
|
|
35
36
|
ResponseMode,
|
|
36
37
|
VPTokenLocation,
|
|
37
|
-
RequestUriMethod,
|
|
38
38
|
} from '@sphereon/did-auth-siop'
|