@pagopa/io-react-native-wallet 0.28.0 → 0.28.1
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/lib/commonjs/credential/issuance/03-start-user-authorization.js +3 -0
- package/lib/commonjs/credential/issuance/03-start-user-authorization.js.map +1 -1
- package/lib/commonjs/credential/presentation/01-start-flow.js +14 -24
- package/lib/commonjs/credential/presentation/01-start-flow.js.map +1 -1
- package/lib/commonjs/credential/presentation/03-get-request-object.js +30 -42
- package/lib/commonjs/credential/presentation/03-get-request-object.js.map +1 -1
- package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js +32 -0
- package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js.map +1 -0
- package/lib/commonjs/credential/presentation/05-verify-request-object.js +53 -0
- package/lib/commonjs/credential/presentation/05-verify-request-object.js.map +1 -0
- package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js +39 -0
- package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js.map +1 -0
- package/lib/commonjs/credential/presentation/07-evaluate-dcql-query.js +125 -0
- package/lib/commonjs/credential/presentation/07-evaluate-dcql-query.js.map +1 -0
- package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js +289 -0
- package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js.map +1 -0
- package/lib/commonjs/credential/presentation/08-send-authorization-response.js +170 -0
- package/lib/commonjs/credential/presentation/08-send-authorization-response.js.map +1 -0
- package/lib/commonjs/credential/presentation/errors.js +69 -1
- package/lib/commonjs/credential/presentation/errors.js.map +1 -1
- package/lib/commonjs/credential/presentation/index.js +29 -1
- package/lib/commonjs/credential/presentation/index.js.map +1 -1
- package/lib/commonjs/credential/presentation/types.js +124 -3
- package/lib/commonjs/credential/presentation/types.js.map +1 -1
- package/lib/commonjs/sd-jwt/index.js +41 -1
- package/lib/commonjs/sd-jwt/index.js.map +1 -1
- package/lib/commonjs/trust/chain.js.map +1 -1
- package/lib/commonjs/trust/types.js +26 -6
- package/lib/commonjs/trust/types.js.map +1 -1
- package/lib/commonjs/trust/utils.js +5 -0
- package/lib/commonjs/trust/utils.js.map +1 -1
- package/lib/commonjs/utils/jwk.js +5 -1
- package/lib/commonjs/utils/jwk.js.map +1 -1
- package/lib/module/credential/issuance/03-start-user-authorization.js +3 -0
- package/lib/module/credential/issuance/03-start-user-authorization.js.map +1 -1
- package/lib/module/credential/presentation/01-start-flow.js +14 -24
- package/lib/module/credential/presentation/01-start-flow.js.map +1 -1
- package/lib/module/credential/presentation/03-get-request-object.js +31 -43
- package/lib/module/credential/presentation/03-get-request-object.js.map +1 -1
- package/lib/module/credential/presentation/04-retrieve-rp-jwks.js +25 -0
- package/lib/module/credential/presentation/04-retrieve-rp-jwks.js.map +1 -0
- package/lib/module/credential/presentation/05-verify-request-object.js +46 -0
- package/lib/module/credential/presentation/05-verify-request-object.js.map +1 -0
- package/lib/module/credential/presentation/06-fetch-presentation-definition.js +32 -0
- package/lib/module/credential/presentation/06-fetch-presentation-definition.js.map +1 -0
- package/lib/module/credential/presentation/07-evaluate-dcql-query.js +117 -0
- package/lib/module/credential/presentation/07-evaluate-dcql-query.js.map +1 -0
- package/lib/module/credential/presentation/07-evaluate-input-descriptor.js +278 -0
- package/lib/module/credential/presentation/07-evaluate-input-descriptor.js.map +1 -0
- package/lib/module/credential/presentation/08-send-authorization-response.js +158 -0
- package/lib/module/credential/presentation/08-send-authorization-response.js.map +1 -0
- package/lib/module/credential/presentation/errors.js +64 -0
- package/lib/module/credential/presentation/errors.js.map +1 -1
- package/lib/module/credential/presentation/index.js +6 -2
- package/lib/module/credential/presentation/index.js.map +1 -1
- package/lib/module/credential/presentation/types.js +121 -2
- package/lib/module/credential/presentation/types.js.map +1 -1
- package/lib/module/sd-jwt/index.js +40 -1
- package/lib/module/sd-jwt/index.js.map +1 -1
- package/lib/module/trust/chain.js.map +1 -1
- package/lib/module/trust/types.js +26 -6
- package/lib/module/trust/types.js.map +1 -1
- package/lib/module/trust/utils.js +5 -0
- package/lib/module/trust/utils.js.map +1 -1
- package/lib/module/utils/jwk.js +3 -0
- package/lib/module/utils/jwk.js.map +1 -1
- package/lib/typescript/credential/issuance/03-start-user-authorization.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/01-start-flow.d.ts +26 -5
- package/lib/typescript/credential/presentation/01-start-flow.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/03-get-request-object.d.ts +7 -10
- package/lib/typescript/credential/presentation/03-get-request-object.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts +23 -0
- package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/05-verify-request-object.d.ts +18 -0
- package/lib/typescript/credential/presentation/05-verify-request-object.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts +21 -0
- package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/07-evaluate-dcql-query.d.ts +20 -0
- package/lib/typescript/credential/presentation/07-evaluate-dcql-query.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts +88 -0
- package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts +70 -0
- package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/errors.d.ts +44 -0
- package/lib/typescript/credential/presentation/errors.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/index.d.ts +7 -3
- package/lib/typescript/credential/presentation/index.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/types.d.ts +747 -10
- package/lib/typescript/credential/presentation/types.d.ts.map +1 -1
- package/lib/typescript/sd-jwt/index.d.ts +19 -0
- package/lib/typescript/sd-jwt/index.d.ts.map +1 -1
- package/lib/typescript/trust/index.d.ts +236 -8
- package/lib/typescript/trust/index.d.ts.map +1 -1
- package/lib/typescript/trust/types.d.ts +3046 -76
- package/lib/typescript/trust/types.d.ts.map +1 -1
- package/lib/typescript/trust/utils.d.ts +6 -6
- package/lib/typescript/trust/utils.d.ts.map +1 -1
- package/lib/typescript/utils/decoder.d.ts +1 -1
- package/lib/typescript/utils/decoder.d.ts.map +1 -1
- package/lib/typescript/utils/errors.d.ts.map +1 -1
- package/lib/typescript/utils/jwk.d.ts +137 -0
- package/lib/typescript/utils/jwk.d.ts.map +1 -1
- package/lib/typescript/utils/misc.d.ts.map +1 -1
- package/lib/typescript/wallet-instance-attestation/types.d.ts +16 -16
- package/package.json +15 -11
- package/src/credential/issuance/03-start-user-authorization.ts +3 -0
- package/src/credential/presentation/01-start-flow.ts +19 -26
- package/src/credential/presentation/03-get-request-object.ts +35 -58
- package/src/credential/presentation/04-retrieve-rp-jwks.ts +34 -0
- package/src/credential/presentation/05-verify-request-object.ts +52 -0
- package/src/credential/presentation/06-fetch-presentation-definition.ts +48 -0
- package/src/credential/presentation/07-evaluate-dcql-query.ts +166 -0
- package/src/credential/presentation/07-evaluate-input-descriptor.ts +391 -0
- package/src/credential/presentation/08-send-authorization-response.ts +220 -0
- package/src/credential/presentation/errors.ts +64 -0
- package/src/credential/presentation/index.ts +22 -1
- package/src/credential/presentation/types.ts +134 -3
- package/src/sd-jwt/index.ts +49 -1
- package/src/trust/chain.ts +2 -2
- package/src/trust/types.ts +25 -5
- package/src/trust/utils.ts +6 -3
- package/src/utils/decoder.ts +1 -1
- package/src/utils/errors.ts +2 -2
- package/src/utils/jwk.ts +8 -1
- package/src/utils/misc.ts +2 -2
- package/lib/commonjs/credential/presentation/04-send-authorization-response.js +0 -138
- package/lib/commonjs/credential/presentation/04-send-authorization-response.js.map +0 -1
- package/lib/module/credential/presentation/04-send-authorization-response.js +0 -128
- package/lib/module/credential/presentation/04-send-authorization-response.js.map +0 -1
- package/lib/typescript/credential/presentation/04-send-authorization-response.d.ts +0 -34
- package/lib/typescript/credential/presentation/04-send-authorization-response.d.ts.map +0 -1
- package/src/credential/presentation/04-send-authorization-response.ts +0 -168
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/credential/presentation/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEjE,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACO,MAAM;IACzB,MAAM,EAAE;IACsC,aAAa;CACzE,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC1D,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/credential/presentation/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEjE,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACO,MAAM;IACzB,MAAM,EAAE;IACsC,aAAa;CACzE,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,eAAe,EAAE,eAAe,CAAC;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAmBF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC9D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1B,CAAC;AAqBH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC5E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC1D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcxB,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;EAWzB,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,+BAA+B,CACvC,CAAC;AACF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1C,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,oCAAoC,CAC5C,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oCAAoC;;;;;;;;;EAG/C,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AACF,eAAO,MAAM,8BAA8B;;;;;;EAEzC,CAAC"}
|
@@ -2,6 +2,7 @@ import { z } from "zod";
|
|
2
2
|
import { Disclosure, SdJwt4VC, type DisclosureWithEncoded } from "./types";
|
3
3
|
import type { JWK } from "../utils/jwk";
|
4
4
|
import * as Errors from "./errors";
|
5
|
+
import { type Presentation } from "../credential/presentation/types";
|
5
6
|
/**
|
6
7
|
* Decode a given SD-JWT with Disclosures to get the parsed SD-JWT object they define.
|
7
8
|
* It ensures provided data is in a valid shape.
|
@@ -248,5 +249,23 @@ export declare const verify: <S extends z.ZodType<{
|
|
248
249
|
sdJwt: z.TypeOf<S>;
|
249
250
|
disclosures: Disclosure[];
|
250
251
|
}>;
|
252
|
+
/**
|
253
|
+
* Prepares a Verified Presentation (VP) token to be sent as part of an
|
254
|
+
* authorization response in an OpenID 4 Verifiable Presentations flow.
|
255
|
+
*
|
256
|
+
* @param nonce - The nonce provided by the relying party.
|
257
|
+
* @param client_id - The client identifier of the relying party.
|
258
|
+
* @param presentation - An object containing the verifiable credential, the claims to disclose,
|
259
|
+
* and the cryptographic context for signing.
|
260
|
+
* @returns An object containing the signed VP token (`vp_token`).
|
261
|
+
*
|
262
|
+
* @remarks
|
263
|
+
* 1. The `disclose()` function is used to produce a token with only the requested claims.
|
264
|
+
* 2. A KB-JWT is then signed, including sd_hash and `nonce`.
|
265
|
+
* 3. The `vp_token` is composed of the disclosed VP and the KB-JWT.
|
266
|
+
*/
|
267
|
+
export declare const prepareVpToken: (nonce: string, client_id: string, [verifiableCredential, requestedClaims, cryptoContext]: Presentation) => Promise<{
|
268
|
+
vp_token: string;
|
269
|
+
}>;
|
251
270
|
export { SdJwt4VC, Errors };
|
252
271
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sd-jwt/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAE3E,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sd-jwt/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAE3E,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AAEnC,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAQrE;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WACV,MAAM;;iBAIA,qBAAqB,EAAE;CA0BrC,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,QAAQ,UACZ,MAAM,UACL,MAAM,EAAE;WACE,MAAM;WAAS;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE;EAwCnE,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WACV,MAAM,aACF,GAAG,GAAG,GAAG,EAAE;;iBAEqB,UAAU,EAAE;EAqBxD,CAAC;AAEF;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,cAAc,UAClB,MAAM,aACF,MAAM;cAGP,MAAM;EAyBjB,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC"}
|
@@ -290,12 +290,12 @@ export declare const getCredentialIssuerEntityConfiguration: (entityBaseUrl: Par
|
|
290
290
|
revocation_endpoint: string;
|
291
291
|
status_attestation_endpoint: string;
|
292
292
|
credential_configurations_supported: Record<string, {
|
293
|
+
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
294
|
+
scope: string;
|
293
295
|
display: {
|
294
296
|
name: string;
|
295
297
|
locale: string;
|
296
298
|
}[];
|
297
|
-
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
298
|
-
scope: string;
|
299
299
|
claims: Record<string, {
|
300
300
|
value_type: string;
|
301
301
|
display: {
|
@@ -316,6 +316,7 @@ export declare const getCredentialIssuerEntityConfiguration: (entityBaseUrl: Par
|
|
316
316
|
}>;
|
317
317
|
};
|
318
318
|
oauth_authorization_server: {
|
319
|
+
request_object_signing_alg_values_supported: string[];
|
319
320
|
jwks: {
|
320
321
|
keys: {
|
321
322
|
kty: "RSA" | "EC";
|
@@ -354,8 +355,80 @@ export declare const getCredentialIssuerEntityConfiguration: (entityBaseUrl: Par
|
|
354
355
|
response_modes_supported: string[];
|
355
356
|
token_endpoint_auth_methods_supported: string[];
|
356
357
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
357
|
-
request_object_signing_alg_values_supported: string[];
|
358
358
|
};
|
359
|
+
openid_credential_verifier?: {
|
360
|
+
jwks: {
|
361
|
+
keys: {
|
362
|
+
kty: "RSA" | "EC";
|
363
|
+
alg?: string | undefined;
|
364
|
+
crv?: string | undefined;
|
365
|
+
d?: string | undefined;
|
366
|
+
dp?: string | undefined;
|
367
|
+
dq?: string | undefined;
|
368
|
+
e?: string | undefined;
|
369
|
+
ext?: boolean | undefined;
|
370
|
+
k?: string | undefined;
|
371
|
+
key_ops?: string[] | undefined;
|
372
|
+
kid?: string | undefined;
|
373
|
+
n?: string | undefined;
|
374
|
+
p?: string | undefined;
|
375
|
+
q?: string | undefined;
|
376
|
+
qi?: string | undefined;
|
377
|
+
use?: string | undefined;
|
378
|
+
x?: string | undefined;
|
379
|
+
y?: string | undefined;
|
380
|
+
x5c?: string[] | undefined;
|
381
|
+
x5t?: string | undefined;
|
382
|
+
"x5t#S256"?: string | undefined;
|
383
|
+
x5u?: string | undefined;
|
384
|
+
}[];
|
385
|
+
};
|
386
|
+
application_type?: string | undefined;
|
387
|
+
client_id?: string | undefined;
|
388
|
+
client_name?: string | undefined;
|
389
|
+
contacts?: string[] | undefined;
|
390
|
+
presentation_definition?: {
|
391
|
+
id: string;
|
392
|
+
input_descriptors: {
|
393
|
+
id: string;
|
394
|
+
constraints: {
|
395
|
+
fields?: {
|
396
|
+
path: string[];
|
397
|
+
id?: string | undefined;
|
398
|
+
purpose?: string | undefined;
|
399
|
+
name?: string | undefined;
|
400
|
+
filter?: any;
|
401
|
+
optional?: boolean | undefined;
|
402
|
+
intent_to_retain?: boolean | undefined;
|
403
|
+
}[] | undefined;
|
404
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
405
|
+
};
|
406
|
+
name?: string | undefined;
|
407
|
+
purpose?: string | undefined;
|
408
|
+
format?: Record<string, any> | undefined;
|
409
|
+
group?: string | undefined;
|
410
|
+
}[];
|
411
|
+
name?: string | undefined;
|
412
|
+
purpose?: string | undefined;
|
413
|
+
submission_requirements?: {
|
414
|
+
rule: string;
|
415
|
+
name?: string | undefined;
|
416
|
+
purpose?: string | undefined;
|
417
|
+
from?: string | undefined;
|
418
|
+
from_nested?: {
|
419
|
+
rule: string;
|
420
|
+
from: string;
|
421
|
+
name?: string | undefined;
|
422
|
+
purpose?: string | undefined;
|
423
|
+
}[] | undefined;
|
424
|
+
count?: number | undefined;
|
425
|
+
}[] | undefined;
|
426
|
+
} | undefined;
|
427
|
+
request_uris?: string[] | undefined;
|
428
|
+
authorization_signed_response_alg?: string | undefined;
|
429
|
+
authorization_encrypted_response_alg?: string | undefined;
|
430
|
+
authorization_encrypted_response_enc?: string | undefined;
|
431
|
+
} | undefined;
|
359
432
|
wallet_relying_party?: {
|
360
433
|
jwks: {
|
361
434
|
keys: {
|
@@ -519,7 +592,7 @@ export declare const getRelyingPartyEntityConfiguration: (entityBaseUrl: Paramet
|
|
519
592
|
} & {
|
520
593
|
payload: {
|
521
594
|
metadata: {
|
522
|
-
|
595
|
+
openid_credential_verifier: {
|
523
596
|
jwks: {
|
524
597
|
keys: {
|
525
598
|
kty: "RSA" | "EC";
|
@@ -550,6 +623,47 @@ export declare const getRelyingPartyEntityConfiguration: (entityBaseUrl: Paramet
|
|
550
623
|
client_id?: string | undefined;
|
551
624
|
client_name?: string | undefined;
|
552
625
|
contacts?: string[] | undefined;
|
626
|
+
presentation_definition?: {
|
627
|
+
id: string;
|
628
|
+
input_descriptors: {
|
629
|
+
id: string;
|
630
|
+
constraints: {
|
631
|
+
fields?: {
|
632
|
+
path: string[];
|
633
|
+
id?: string | undefined;
|
634
|
+
purpose?: string | undefined;
|
635
|
+
name?: string | undefined;
|
636
|
+
filter?: any;
|
637
|
+
optional?: boolean | undefined;
|
638
|
+
intent_to_retain?: boolean | undefined;
|
639
|
+
}[] | undefined;
|
640
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
641
|
+
};
|
642
|
+
name?: string | undefined;
|
643
|
+
purpose?: string | undefined;
|
644
|
+
format?: Record<string, any> | undefined;
|
645
|
+
group?: string | undefined;
|
646
|
+
}[];
|
647
|
+
name?: string | undefined;
|
648
|
+
purpose?: string | undefined;
|
649
|
+
submission_requirements?: {
|
650
|
+
rule: string;
|
651
|
+
name?: string | undefined;
|
652
|
+
purpose?: string | undefined;
|
653
|
+
from?: string | undefined;
|
654
|
+
from_nested?: {
|
655
|
+
rule: string;
|
656
|
+
from: string;
|
657
|
+
name?: string | undefined;
|
658
|
+
purpose?: string | undefined;
|
659
|
+
}[] | undefined;
|
660
|
+
count?: number | undefined;
|
661
|
+
}[] | undefined;
|
662
|
+
} | undefined;
|
663
|
+
request_uris?: string[] | undefined;
|
664
|
+
authorization_signed_response_alg?: string | undefined;
|
665
|
+
authorization_encrypted_response_alg?: string | undefined;
|
666
|
+
authorization_encrypted_response_enc?: string | undefined;
|
553
667
|
};
|
554
668
|
};
|
555
669
|
};
|
@@ -743,12 +857,12 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
|
|
743
857
|
revocation_endpoint: string;
|
744
858
|
status_attestation_endpoint: string;
|
745
859
|
credential_configurations_supported: Record<string, {
|
860
|
+
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
861
|
+
scope: string;
|
746
862
|
display: {
|
747
863
|
name: string;
|
748
864
|
locale: string;
|
749
865
|
}[];
|
750
|
-
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
751
|
-
scope: string;
|
752
866
|
claims: Record<string, {
|
753
867
|
value_type: string;
|
754
868
|
display: {
|
@@ -769,6 +883,7 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
|
|
769
883
|
}>;
|
770
884
|
};
|
771
885
|
oauth_authorization_server: {
|
886
|
+
request_object_signing_alg_values_supported: string[];
|
772
887
|
jwks: {
|
773
888
|
keys: {
|
774
889
|
kty: "RSA" | "EC";
|
@@ -807,8 +922,80 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
|
|
807
922
|
response_modes_supported: string[];
|
808
923
|
token_endpoint_auth_methods_supported: string[];
|
809
924
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
810
|
-
request_object_signing_alg_values_supported: string[];
|
811
925
|
};
|
926
|
+
openid_credential_verifier?: {
|
927
|
+
jwks: {
|
928
|
+
keys: {
|
929
|
+
kty: "RSA" | "EC";
|
930
|
+
alg?: string | undefined;
|
931
|
+
crv?: string | undefined;
|
932
|
+
d?: string | undefined;
|
933
|
+
dp?: string | undefined;
|
934
|
+
dq?: string | undefined;
|
935
|
+
e?: string | undefined;
|
936
|
+
ext?: boolean | undefined;
|
937
|
+
k?: string | undefined;
|
938
|
+
key_ops?: string[] | undefined;
|
939
|
+
kid?: string | undefined;
|
940
|
+
n?: string | undefined;
|
941
|
+
p?: string | undefined;
|
942
|
+
q?: string | undefined;
|
943
|
+
qi?: string | undefined;
|
944
|
+
use?: string | undefined;
|
945
|
+
x?: string | undefined;
|
946
|
+
y?: string | undefined;
|
947
|
+
x5c?: string[] | undefined;
|
948
|
+
x5t?: string | undefined;
|
949
|
+
"x5t#S256"?: string | undefined;
|
950
|
+
x5u?: string | undefined;
|
951
|
+
}[];
|
952
|
+
};
|
953
|
+
application_type?: string | undefined;
|
954
|
+
client_id?: string | undefined;
|
955
|
+
client_name?: string | undefined;
|
956
|
+
contacts?: string[] | undefined;
|
957
|
+
presentation_definition?: {
|
958
|
+
id: string;
|
959
|
+
input_descriptors: {
|
960
|
+
id: string;
|
961
|
+
constraints: {
|
962
|
+
fields?: {
|
963
|
+
path: string[];
|
964
|
+
id?: string | undefined;
|
965
|
+
purpose?: string | undefined;
|
966
|
+
name?: string | undefined;
|
967
|
+
filter?: any;
|
968
|
+
optional?: boolean | undefined;
|
969
|
+
intent_to_retain?: boolean | undefined;
|
970
|
+
}[] | undefined;
|
971
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
972
|
+
};
|
973
|
+
name?: string | undefined;
|
974
|
+
purpose?: string | undefined;
|
975
|
+
format?: Record<string, any> | undefined;
|
976
|
+
group?: string | undefined;
|
977
|
+
}[];
|
978
|
+
name?: string | undefined;
|
979
|
+
purpose?: string | undefined;
|
980
|
+
submission_requirements?: {
|
981
|
+
rule: string;
|
982
|
+
name?: string | undefined;
|
983
|
+
purpose?: string | undefined;
|
984
|
+
from?: string | undefined;
|
985
|
+
from_nested?: {
|
986
|
+
rule: string;
|
987
|
+
from: string;
|
988
|
+
name?: string | undefined;
|
989
|
+
purpose?: string | undefined;
|
990
|
+
}[] | undefined;
|
991
|
+
count?: number | undefined;
|
992
|
+
}[] | undefined;
|
993
|
+
} | undefined;
|
994
|
+
request_uris?: string[] | undefined;
|
995
|
+
authorization_signed_response_alg?: string | undefined;
|
996
|
+
authorization_encrypted_response_alg?: string | undefined;
|
997
|
+
authorization_encrypted_response_enc?: string | undefined;
|
998
|
+
} | undefined;
|
812
999
|
wallet_relying_party?: {
|
813
1000
|
jwks: {
|
814
1001
|
keys: {
|
@@ -908,7 +1095,7 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
|
|
908
1095
|
} & {
|
909
1096
|
payload: {
|
910
1097
|
metadata: {
|
911
|
-
|
1098
|
+
openid_credential_verifier: {
|
912
1099
|
jwks: {
|
913
1100
|
keys: {
|
914
1101
|
kty: "RSA" | "EC";
|
@@ -939,6 +1126,47 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
|
|
939
1126
|
client_id?: string | undefined;
|
940
1127
|
client_name?: string | undefined;
|
941
1128
|
contacts?: string[] | undefined;
|
1129
|
+
presentation_definition?: {
|
1130
|
+
id: string;
|
1131
|
+
input_descriptors: {
|
1132
|
+
id: string;
|
1133
|
+
constraints: {
|
1134
|
+
fields?: {
|
1135
|
+
path: string[];
|
1136
|
+
id?: string | undefined;
|
1137
|
+
purpose?: string | undefined;
|
1138
|
+
name?: string | undefined;
|
1139
|
+
filter?: any;
|
1140
|
+
optional?: boolean | undefined;
|
1141
|
+
intent_to_retain?: boolean | undefined;
|
1142
|
+
}[] | undefined;
|
1143
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
1144
|
+
};
|
1145
|
+
name?: string | undefined;
|
1146
|
+
purpose?: string | undefined;
|
1147
|
+
format?: Record<string, any> | undefined;
|
1148
|
+
group?: string | undefined;
|
1149
|
+
}[];
|
1150
|
+
name?: string | undefined;
|
1151
|
+
purpose?: string | undefined;
|
1152
|
+
submission_requirements?: {
|
1153
|
+
rule: string;
|
1154
|
+
name?: string | undefined;
|
1155
|
+
purpose?: string | undefined;
|
1156
|
+
from?: string | undefined;
|
1157
|
+
from_nested?: {
|
1158
|
+
rule: string;
|
1159
|
+
from: string;
|
1160
|
+
name?: string | undefined;
|
1161
|
+
purpose?: string | undefined;
|
1162
|
+
}[] | undefined;
|
1163
|
+
count?: number | undefined;
|
1164
|
+
}[] | undefined;
|
1165
|
+
} | undefined;
|
1166
|
+
request_uris?: string[] | undefined;
|
1167
|
+
authorization_signed_response_alg?: string | undefined;
|
1168
|
+
authorization_encrypted_response_alg?: string | undefined;
|
1169
|
+
authorization_encrypted_response_enc?: string | undefined;
|
942
1170
|
};
|
943
1171
|
};
|
944
1172
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/trust/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,mCAAmC,EACnC,mBAAmB,EACnB,eAAe,EAEf,+BAA+B,EAC/B,8BAA8B,EAC9B,iCAAiC,EAClC,MAAM,SAAS,CAAC;AACjB,OAAO,EAAmB,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAG9D,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AAExC,YAAY,EACV,iCAAiC,EACjC,8BAA8B,EAC9B,mCAAmC,EACnC,+BAA+B,EAC/B,mBAAmB,EACnB,eAAe,GAChB,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAsB,gBAAgB,CACpC,iBAAiB,EAAE,8BAA8B,EACjD,KAAK,EAAE,MAAM,EAAE,EACf,EACE,QAAgB,EAChB,WAAkB,GACnB,GAAE;IAAE,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IAAC,WAAW,CAAC,EAAE,OAAO,CAAA;CAAO,GACjE,OAAO,CAAC,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAWhD;AAED;;;;;;GAMG;AACH,wBAAsB,4BAA4B,CAChD,aAAa,EAAE,MAAM,EACrB,EACE,QAAgB,GACjB,GAAE;IACD,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CAC5B,GACL,OAAO,CAAC,MAAM,CAAC,CAQjB;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,iBAAe,gCAAgC,CAC7C,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,OAAO,iCAAiC,EAChD,OAAO,CAAC,EAAE;IACR,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CACjC,GACA,OAAO,CAAC,iCAAiC,CAAC,CAAC;AAC9C,iBAAe,gCAAgC,CAC7C,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,OAAO,+BAA+B,EAC9C,OAAO,CAAC,EAAE;IACR,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CACjC,GACA,OAAO,CAAC,+BAA+B,CAAC,CAAC;AAC5C,iBAAe,gCAAgC,CAC7C,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,OAAO,8BAA8B,EAC7C,OAAO,CAAC,EAAE;IACR,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CACjC,GACA,OAAO,CAAC,8BAA8B,CAAC,CAAC;AAC3C,iBAAe,gCAAgC,CAC7C,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,OAAO,mCAAmC,EAClD,OAAO,CAAC,EAAE;IACR,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CACjC,GACA,OAAO,CAAC,mCAAmC,CAAC,CAAC;AAChD,iBAAe,gCAAgC,CAC7C,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,OAAO,mBAAmB,EAClC,OAAO,CAAC,EAAE;IACR,QAAQ,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CACjC,GACA,OAAO,CAAC,mBAAmB,CAAC,CAAC;AA0BhC,eAAO,MAAM,oCAAoC,kBAChC,WAAW,uCAAuC,CAAC,CAAC,CAAC,CAAC,YAC3D,WAAW,uCAAuC,CAAC,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM/D,CAAC;AAEJ,eAAO,MAAM,sCAAsC,kBAClC,WAAW,uCAAuC,CAAC,CAAC,CAAC,CAAC,YAC3D,WAAW,uCAAuC,CAAC,CAAC,CAAC,CAAC
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/trust/index.ts"],"names":[],"mappings":"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"}
|