@pagopa/io-react-native-wallet 2.0.0-next.0 → 2.0.0-next.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.
Files changed (39) hide show
  1. package/lib/commonjs/trust/README.md +147 -0
  2. package/lib/commonjs/trust/chain.js +47 -10
  3. package/lib/commonjs/trust/chain.js.map +1 -1
  4. package/lib/commonjs/trust/errors.js +24 -1
  5. package/lib/commonjs/trust/errors.js.map +1 -1
  6. package/lib/commonjs/trust/index.js +11 -5
  7. package/lib/commonjs/trust/index.js.map +1 -1
  8. package/lib/commonjs/trust/utils.js +30 -1
  9. package/lib/commonjs/trust/utils.js.map +1 -1
  10. package/lib/module/trust/README.md +147 -0
  11. package/lib/module/trust/chain.js +49 -12
  12. package/lib/module/trust/chain.js.map +1 -1
  13. package/lib/module/trust/errors.js +23 -2
  14. package/lib/module/trust/errors.js.map +1 -1
  15. package/lib/module/trust/index.js +11 -5
  16. package/lib/module/trust/index.js.map +1 -1
  17. package/lib/module/trust/utils.js +27 -0
  18. package/lib/module/trust/utils.js.map +1 -1
  19. package/lib/typescript/client/generated/wallet-provider.d.ts +12 -12
  20. package/lib/typescript/credential/presentation/types.d.ts +4 -4
  21. package/lib/typescript/credential/status/types.d.ts +6 -6
  22. package/lib/typescript/sd-jwt/index.d.ts +12 -12
  23. package/lib/typescript/sd-jwt/types.d.ts +6 -6
  24. package/lib/typescript/trust/chain.d.ts +8 -6
  25. package/lib/typescript/trust/chain.d.ts.map +1 -1
  26. package/lib/typescript/trust/errors.d.ts +22 -0
  27. package/lib/typescript/trust/errors.d.ts.map +1 -1
  28. package/lib/typescript/trust/index.d.ts +208 -206
  29. package/lib/typescript/trust/index.d.ts.map +1 -1
  30. package/lib/typescript/trust/types.d.ts +559 -559
  31. package/lib/typescript/trust/utils.d.ts +10 -0
  32. package/lib/typescript/trust/utils.d.ts.map +1 -1
  33. package/lib/typescript/wallet-instance-attestation/types.d.ts +25 -25
  34. package/package.json +2 -2
  35. package/src/trust/README.md +147 -0
  36. package/src/trust/chain.ts +91 -15
  37. package/src/trust/errors.ts +32 -1
  38. package/src/trust/index.ts +11 -4
  39. package/src/trust/utils.ts +35 -0
@@ -234,6 +234,11 @@ export declare const EntityStatement: z.ZodObject<{
234
234
  }[] | undefined;
235
235
  }>;
236
236
  }, "strip", z.ZodTypeAny, {
237
+ header: {
238
+ alg: string;
239
+ kid: string;
240
+ typ: "entity-statement+jwt";
241
+ };
237
242
  payload: {
238
243
  iss: string;
239
244
  sub: string;
@@ -270,12 +275,12 @@ export declare const EntityStatement: z.ZodObject<{
270
275
  trust_mark: string;
271
276
  }[] | undefined;
272
277
  };
278
+ }, {
273
279
  header: {
274
280
  alg: string;
275
281
  kid: string;
276
282
  typ: "entity-statement+jwt";
277
283
  };
278
- }, {
279
284
  payload: {
280
285
  iss: string;
281
286
  sub: string;
@@ -312,11 +317,6 @@ export declare const EntityStatement: z.ZodObject<{
312
317
  trust_mark: string;
313
318
  }[] | undefined;
314
319
  };
315
- header: {
316
- alg: string;
317
- kid: string;
318
- typ: "entity-statement+jwt";
319
- };
320
320
  }>;
321
321
  export type EntityConfigurationHeader = z.infer<typeof EntityConfigurationHeader>;
322
322
  export declare const EntityConfigurationHeader: z.ZodObject<{
@@ -1132,11 +1132,37 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
1132
1132
  }>;
1133
1133
  }, z.ZodTypeAny, "passthrough">>;
1134
1134
  }, "strip", z.ZodTypeAny, {
1135
+ header: {
1136
+ alg: string;
1137
+ kid: string;
1138
+ typ: "entity-statement+jwt";
1139
+ };
1135
1140
  payload: {
1136
1141
  iss: string;
1137
1142
  sub: string;
1138
1143
  iat: number;
1139
1144
  exp: number;
1145
+ metadata: {
1146
+ federation_entity: {
1147
+ federation_fetch_endpoint?: string | undefined;
1148
+ federation_list_endpoint?: string | undefined;
1149
+ federation_resolve_endpoint?: string | undefined;
1150
+ federation_trust_mark_status_endpoint?: string | undefined;
1151
+ federation_trust_mark_list_endpoint?: string | undefined;
1152
+ federation_trust_mark_endpoint?: string | undefined;
1153
+ federation_historical_keys_endpoint?: string | undefined;
1154
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
1155
+ organization_name?: string | undefined;
1156
+ homepage_uri?: string | undefined;
1157
+ policy_uri?: string | undefined;
1158
+ logo_uri?: string | undefined;
1159
+ contacts?: string[] | undefined;
1160
+ } & {
1161
+ [k: string]: unknown;
1162
+ };
1163
+ } & {
1164
+ [k: string]: unknown;
1165
+ };
1140
1166
  jwks: {
1141
1167
  keys: {
1142
1168
  kty: "RSA" | "EC";
@@ -1163,6 +1189,21 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
1163
1189
  x5u?: string | undefined;
1164
1190
  }[];
1165
1191
  };
1192
+ authority_hints?: string[] | undefined;
1193
+ } & {
1194
+ [k: string]: unknown;
1195
+ };
1196
+ }, {
1197
+ header: {
1198
+ alg: string;
1199
+ kid: string;
1200
+ typ: "entity-statement+jwt";
1201
+ };
1202
+ payload: {
1203
+ iss: string;
1204
+ sub: string;
1205
+ iat: number;
1206
+ exp: number;
1166
1207
  metadata: {
1167
1208
  federation_entity: {
1168
1209
  federation_fetch_endpoint?: string | undefined;
@@ -1184,21 +1225,6 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
1184
1225
  } & {
1185
1226
  [k: string]: unknown;
1186
1227
  };
1187
- authority_hints?: string[] | undefined;
1188
- } & {
1189
- [k: string]: unknown;
1190
- };
1191
- header: {
1192
- alg: string;
1193
- kid: string;
1194
- typ: "entity-statement+jwt";
1195
- };
1196
- }, {
1197
- payload: {
1198
- iss: string;
1199
- sub: string;
1200
- iat: number;
1201
- exp: number;
1202
1228
  jwks: {
1203
1229
  keys: {
1204
1230
  kty: "RSA" | "EC";
@@ -1225,36 +1251,10 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
1225
1251
  x5u?: string | undefined;
1226
1252
  }[];
1227
1253
  };
1228
- metadata: {
1229
- federation_entity: {
1230
- federation_fetch_endpoint?: string | undefined;
1231
- federation_list_endpoint?: string | undefined;
1232
- federation_resolve_endpoint?: string | undefined;
1233
- federation_trust_mark_status_endpoint?: string | undefined;
1234
- federation_trust_mark_list_endpoint?: string | undefined;
1235
- federation_trust_mark_endpoint?: string | undefined;
1236
- federation_historical_keys_endpoint?: string | undefined;
1237
- endpoint_auth_signing_alg_values_supported?: string | undefined;
1238
- organization_name?: string | undefined;
1239
- homepage_uri?: string | undefined;
1240
- policy_uri?: string | undefined;
1241
- logo_uri?: string | undefined;
1242
- contacts?: string[] | undefined;
1243
- } & {
1244
- [k: string]: unknown;
1245
- };
1246
- } & {
1247
- [k: string]: unknown;
1248
- };
1249
1254
  authority_hints?: string[] | undefined;
1250
1255
  } & {
1251
1256
  [k: string]: unknown;
1252
1257
  };
1253
- header: {
1254
- alg: string;
1255
- kid: string;
1256
- typ: "entity-statement+jwt";
1257
- };
1258
1258
  }>;
1259
1259
  export type CredentialIssuerEntityConfiguration = z.infer<typeof CredentialIssuerEntityConfiguration>;
1260
1260
  export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.ZodObject<{
@@ -2056,11 +2056,37 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2056
2056
  }>;
2057
2057
  }, z.ZodTypeAny, "passthrough">>;
2058
2058
  }, "strip", z.ZodTypeAny, {
2059
+ header: {
2060
+ alg: string;
2061
+ kid: string;
2062
+ typ: "entity-statement+jwt";
2063
+ };
2059
2064
  payload: {
2060
2065
  iss: string;
2061
2066
  sub: string;
2062
2067
  iat: number;
2063
2068
  exp: number;
2069
+ metadata: {
2070
+ federation_entity: {
2071
+ federation_fetch_endpoint?: string | undefined;
2072
+ federation_list_endpoint?: string | undefined;
2073
+ federation_resolve_endpoint?: string | undefined;
2074
+ federation_trust_mark_status_endpoint?: string | undefined;
2075
+ federation_trust_mark_list_endpoint?: string | undefined;
2076
+ federation_trust_mark_endpoint?: string | undefined;
2077
+ federation_historical_keys_endpoint?: string | undefined;
2078
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
2079
+ organization_name?: string | undefined;
2080
+ homepage_uri?: string | undefined;
2081
+ policy_uri?: string | undefined;
2082
+ logo_uri?: string | undefined;
2083
+ contacts?: string[] | undefined;
2084
+ } & {
2085
+ [k: string]: unknown;
2086
+ };
2087
+ } & {
2088
+ [k: string]: unknown;
2089
+ };
2064
2090
  jwks: {
2065
2091
  keys: {
2066
2092
  kty: "RSA" | "EC";
@@ -2087,6 +2113,21 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2087
2113
  x5u?: string | undefined;
2088
2114
  }[];
2089
2115
  };
2116
+ authority_hints?: string[] | undefined;
2117
+ } & {
2118
+ [k: string]: unknown;
2119
+ };
2120
+ }, {
2121
+ header: {
2122
+ alg: string;
2123
+ kid: string;
2124
+ typ: "entity-statement+jwt";
2125
+ };
2126
+ payload: {
2127
+ iss: string;
2128
+ sub: string;
2129
+ iat: number;
2130
+ exp: number;
2090
2131
  metadata: {
2091
2132
  federation_entity: {
2092
2133
  federation_fetch_endpoint?: string | undefined;
@@ -2108,21 +2149,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2108
2149
  } & {
2109
2150
  [k: string]: unknown;
2110
2151
  };
2111
- authority_hints?: string[] | undefined;
2112
- } & {
2113
- [k: string]: unknown;
2114
- };
2115
- header: {
2116
- alg: string;
2117
- kid: string;
2118
- typ: "entity-statement+jwt";
2119
- };
2120
- }, {
2121
- payload: {
2122
- iss: string;
2123
- sub: string;
2124
- iat: number;
2125
- exp: number;
2126
2152
  jwks: {
2127
2153
  keys: {
2128
2154
  kty: "RSA" | "EC";
@@ -2149,36 +2175,10 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2149
2175
  x5u?: string | undefined;
2150
2176
  }[];
2151
2177
  };
2152
- metadata: {
2153
- federation_entity: {
2154
- federation_fetch_endpoint?: string | undefined;
2155
- federation_list_endpoint?: string | undefined;
2156
- federation_resolve_endpoint?: string | undefined;
2157
- federation_trust_mark_status_endpoint?: string | undefined;
2158
- federation_trust_mark_list_endpoint?: string | undefined;
2159
- federation_trust_mark_endpoint?: string | undefined;
2160
- federation_historical_keys_endpoint?: string | undefined;
2161
- endpoint_auth_signing_alg_values_supported?: string | undefined;
2162
- organization_name?: string | undefined;
2163
- homepage_uri?: string | undefined;
2164
- policy_uri?: string | undefined;
2165
- logo_uri?: string | undefined;
2166
- contacts?: string[] | undefined;
2167
- } & {
2168
- [k: string]: unknown;
2169
- };
2170
- } & {
2171
- [k: string]: unknown;
2172
- };
2173
2178
  authority_hints?: string[] | undefined;
2174
2179
  } & {
2175
2180
  [k: string]: unknown;
2176
2181
  };
2177
- header: {
2178
- alg: string;
2179
- kid: string;
2180
- typ: "entity-statement+jwt";
2181
- };
2182
2182
  }>, z.ZodObject<{
2183
2183
  payload: z.ZodObject<{
2184
2184
  jwks: z.ZodObject<{
@@ -2345,17 +2345,17 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2345
2345
  locale: string;
2346
2346
  }>, "many">;
2347
2347
  }, "strip", z.ZodTypeAny, {
2348
- value_type: string;
2349
2348
  display: {
2350
2349
  name: string;
2351
2350
  locale: string;
2352
2351
  }[];
2353
- }, {
2354
2352
  value_type: string;
2353
+ }, {
2355
2354
  display: {
2356
2355
  name: string;
2357
2356
  locale: string;
2358
2357
  }[];
2358
+ value_type: string;
2359
2359
  }>>;
2360
2360
  cryptographic_binding_methods_supported: z.ZodArray<z.ZodString, "many">;
2361
2361
  credential_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
@@ -2366,72 +2366,72 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2366
2366
  description: z.ZodString;
2367
2367
  locale: z.ZodString;
2368
2368
  }, "strip", z.ZodTypeAny, {
2369
- locale: string;
2370
2369
  title: string;
2370
+ locale: string;
2371
2371
  description: string;
2372
2372
  }, {
2373
- locale: string;
2374
2373
  title: string;
2374
+ locale: string;
2375
2375
  description: string;
2376
2376
  }>, "many">;
2377
2377
  }, "strip", z.ZodTypeAny, {
2378
2378
  display: {
2379
- locale: string;
2380
2379
  title: string;
2380
+ locale: string;
2381
2381
  description: string;
2382
2382
  }[];
2383
2383
  }, {
2384
2384
  display: {
2385
- locale: string;
2386
2385
  title: string;
2386
+ locale: string;
2387
2387
  description: string;
2388
2388
  }[];
2389
2389
  }>>>;
2390
2390
  }, "strip", z.ZodTypeAny, {
2391
2391
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
2392
- scope: string;
2393
2392
  display: {
2394
2393
  name: string;
2395
2394
  locale: string;
2396
2395
  }[];
2396
+ scope: string;
2397
2397
  claims: Record<string, {
2398
- value_type: string;
2399
2398
  display: {
2400
2399
  name: string;
2401
2400
  locale: string;
2402
2401
  }[];
2402
+ value_type: string;
2403
2403
  }>;
2404
2404
  cryptographic_binding_methods_supported: string[];
2405
2405
  credential_signing_alg_values_supported: string[];
2406
2406
  authentic_source?: string | undefined;
2407
2407
  issuance_errors_supported?: Record<string, {
2408
2408
  display: {
2409
- locale: string;
2410
2409
  title: string;
2410
+ locale: string;
2411
2411
  description: string;
2412
2412
  }[];
2413
2413
  }> | undefined;
2414
2414
  }, {
2415
2415
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
2416
- scope: string;
2417
2416
  display: {
2418
2417
  name: string;
2419
2418
  locale: string;
2420
2419
  }[];
2420
+ scope: string;
2421
2421
  claims: Record<string, {
2422
- value_type: string;
2423
2422
  display: {
2424
2423
  name: string;
2425
2424
  locale: string;
2426
2425
  }[];
2426
+ value_type: string;
2427
2427
  }>;
2428
2428
  cryptographic_binding_methods_supported: string[];
2429
2429
  credential_signing_alg_values_supported: string[];
2430
2430
  authentic_source?: string | undefined;
2431
2431
  issuance_errors_supported?: Record<string, {
2432
2432
  display: {
2433
- locale: string;
2434
2433
  title: string;
2434
+ locale: string;
2435
2435
  description: string;
2436
2436
  }[];
2437
2437
  }> | undefined;
@@ -2585,35 +2585,35 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2585
2585
  x5u?: string | undefined;
2586
2586
  }[];
2587
2587
  };
2588
- display: {
2589
- name: string;
2590
- locale: string;
2591
- }[];
2592
2588
  credential_issuer: string;
2593
2589
  credential_endpoint: string;
2594
2590
  revocation_endpoint: string;
2595
2591
  status_attestation_endpoint: string;
2592
+ display: {
2593
+ name: string;
2594
+ locale: string;
2595
+ }[];
2596
2596
  credential_configurations_supported: Record<string, {
2597
2597
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
2598
- scope: string;
2599
2598
  display: {
2600
2599
  name: string;
2601
2600
  locale: string;
2602
2601
  }[];
2602
+ scope: string;
2603
2603
  claims: Record<string, {
2604
- value_type: string;
2605
2604
  display: {
2606
2605
  name: string;
2607
2606
  locale: string;
2608
2607
  }[];
2608
+ value_type: string;
2609
2609
  }>;
2610
2610
  cryptographic_binding_methods_supported: string[];
2611
2611
  credential_signing_alg_values_supported: string[];
2612
2612
  authentic_source?: string | undefined;
2613
2613
  issuance_errors_supported?: Record<string, {
2614
2614
  display: {
2615
- locale: string;
2616
2615
  title: string;
2616
+ locale: string;
2617
2617
  description: string;
2618
2618
  }[];
2619
2619
  }> | undefined;
@@ -2645,35 +2645,35 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2645
2645
  x5u?: string | undefined;
2646
2646
  }[];
2647
2647
  };
2648
- display: {
2649
- name: string;
2650
- locale: string;
2651
- }[];
2652
2648
  credential_issuer: string;
2653
2649
  credential_endpoint: string;
2654
2650
  revocation_endpoint: string;
2655
2651
  status_attestation_endpoint: string;
2652
+ display: {
2653
+ name: string;
2654
+ locale: string;
2655
+ }[];
2656
2656
  credential_configurations_supported: Record<string, {
2657
2657
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
2658
- scope: string;
2659
2658
  display: {
2660
2659
  name: string;
2661
2660
  locale: string;
2662
2661
  }[];
2662
+ scope: string;
2663
2663
  claims: Record<string, {
2664
- value_type: string;
2665
2664
  display: {
2666
2665
  name: string;
2667
2666
  locale: string;
2668
2667
  }[];
2668
+ value_type: string;
2669
2669
  }>;
2670
2670
  cryptographic_binding_methods_supported: string[];
2671
2671
  credential_signing_alg_values_supported: string[];
2672
2672
  authentic_source?: string | undefined;
2673
2673
  issuance_errors_supported?: Record<string, {
2674
2674
  display: {
2675
- locale: string;
2676
2675
  title: string;
2676
+ locale: string;
2677
2677
  description: string;
2678
2678
  }[];
2679
2679
  }> | undefined;
@@ -2816,7 +2816,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2816
2816
  token_endpoint_auth_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
2817
2817
  request_object_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
2818
2818
  }, "strip", z.ZodTypeAny, {
2819
- request_object_signing_alg_values_supported: string[];
2820
2819
  jwks: {
2821
2820
  keys: {
2822
2821
  kty: "RSA" | "EC";
@@ -2855,8 +2854,8 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2855
2854
  response_modes_supported: string[];
2856
2855
  token_endpoint_auth_methods_supported: string[];
2857
2856
  token_endpoint_auth_signing_alg_values_supported: string[];
2858
- }, {
2859
2857
  request_object_signing_alg_values_supported: string[];
2858
+ }, {
2860
2859
  jwks: {
2861
2860
  keys: {
2862
2861
  kty: "RSA" | "EC";
@@ -2895,6 +2894,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
2895
2894
  response_modes_supported: string[];
2896
2895
  token_endpoint_auth_methods_supported: string[];
2897
2896
  token_endpoint_auth_signing_alg_values_supported: string[];
2897
+ request_object_signing_alg_values_supported: string[];
2898
2898
  }>;
2899
2899
  /**
2900
2900
  * Credential Issuers act as Relying Party when they require the presentation of other credentials.
@@ -3421,42 +3421,41 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3421
3421
  x5u?: string | undefined;
3422
3422
  }[];
3423
3423
  };
3424
- display: {
3425
- name: string;
3426
- locale: string;
3427
- }[];
3428
3424
  credential_issuer: string;
3429
3425
  credential_endpoint: string;
3430
3426
  revocation_endpoint: string;
3431
3427
  status_attestation_endpoint: string;
3428
+ display: {
3429
+ name: string;
3430
+ locale: string;
3431
+ }[];
3432
3432
  credential_configurations_supported: Record<string, {
3433
3433
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
3434
- scope: string;
3435
3434
  display: {
3436
3435
  name: string;
3437
3436
  locale: string;
3438
3437
  }[];
3438
+ scope: string;
3439
3439
  claims: Record<string, {
3440
- value_type: string;
3441
3440
  display: {
3442
3441
  name: string;
3443
3442
  locale: string;
3444
3443
  }[];
3444
+ value_type: string;
3445
3445
  }>;
3446
3446
  cryptographic_binding_methods_supported: string[];
3447
3447
  credential_signing_alg_values_supported: string[];
3448
3448
  authentic_source?: string | undefined;
3449
3449
  issuance_errors_supported?: Record<string, {
3450
3450
  display: {
3451
- locale: string;
3452
3451
  title: string;
3452
+ locale: string;
3453
3453
  description: string;
3454
3454
  }[];
3455
3455
  }> | undefined;
3456
3456
  }>;
3457
3457
  };
3458
3458
  oauth_authorization_server: {
3459
- request_object_signing_alg_values_supported: string[];
3460
3459
  jwks: {
3461
3460
  keys: {
3462
3461
  kty: "RSA" | "EC";
@@ -3495,6 +3494,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3495
3494
  response_modes_supported: string[];
3496
3495
  token_endpoint_auth_methods_supported: string[];
3497
3496
  token_endpoint_auth_signing_alg_values_supported: string[];
3497
+ request_object_signing_alg_values_supported: string[];
3498
3498
  };
3499
3499
  openid_credential_verifier?: {
3500
3500
  jwks: {
@@ -3597,42 +3597,41 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3597
3597
  x5u?: string | undefined;
3598
3598
  }[];
3599
3599
  };
3600
- display: {
3601
- name: string;
3602
- locale: string;
3603
- }[];
3604
3600
  credential_issuer: string;
3605
3601
  credential_endpoint: string;
3606
3602
  revocation_endpoint: string;
3607
3603
  status_attestation_endpoint: string;
3604
+ display: {
3605
+ name: string;
3606
+ locale: string;
3607
+ }[];
3608
3608
  credential_configurations_supported: Record<string, {
3609
3609
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
3610
- scope: string;
3611
3610
  display: {
3612
3611
  name: string;
3613
3612
  locale: string;
3614
3613
  }[];
3614
+ scope: string;
3615
3615
  claims: Record<string, {
3616
- value_type: string;
3617
3616
  display: {
3618
3617
  name: string;
3619
3618
  locale: string;
3620
3619
  }[];
3620
+ value_type: string;
3621
3621
  }>;
3622
3622
  cryptographic_binding_methods_supported: string[];
3623
3623
  credential_signing_alg_values_supported: string[];
3624
3624
  authentic_source?: string | undefined;
3625
3625
  issuance_errors_supported?: Record<string, {
3626
3626
  display: {
3627
- locale: string;
3628
3627
  title: string;
3628
+ locale: string;
3629
3629
  description: string;
3630
3630
  }[];
3631
3631
  }> | undefined;
3632
3632
  }>;
3633
3633
  };
3634
3634
  oauth_authorization_server: {
3635
- request_object_signing_alg_values_supported: string[];
3636
3635
  jwks: {
3637
3636
  keys: {
3638
3637
  kty: "RSA" | "EC";
@@ -3671,6 +3670,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3671
3670
  response_modes_supported: string[];
3672
3671
  token_endpoint_auth_methods_supported: string[];
3673
3672
  token_endpoint_auth_signing_alg_values_supported: string[];
3673
+ request_object_signing_alg_values_supported: string[];
3674
3674
  };
3675
3675
  openid_credential_verifier?: {
3676
3676
  jwks: {
@@ -3747,32 +3747,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3747
3747
  } | undefined;
3748
3748
  }>;
3749
3749
  }, "strip", z.ZodTypeAny, {
3750
- jwks: {
3751
- keys: {
3752
- kty: "RSA" | "EC";
3753
- alg?: string | undefined;
3754
- crv?: string | undefined;
3755
- d?: string | undefined;
3756
- dp?: string | undefined;
3757
- dq?: string | undefined;
3758
- e?: string | undefined;
3759
- ext?: boolean | undefined;
3760
- k?: string | undefined;
3761
- key_ops?: string[] | undefined;
3762
- kid?: string | undefined;
3763
- n?: string | undefined;
3764
- p?: string | undefined;
3765
- q?: string | undefined;
3766
- qi?: string | undefined;
3767
- use?: string | undefined;
3768
- x?: string | undefined;
3769
- y?: string | undefined;
3770
- x5c?: string[] | undefined;
3771
- x5t?: string | undefined;
3772
- "x5t#S256"?: string | undefined;
3773
- x5u?: string | undefined;
3774
- }[];
3775
- };
3776
3750
  metadata: {
3777
3751
  openid_credential_issuer: {
3778
3752
  jwks: {
@@ -3801,42 +3775,41 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3801
3775
  x5u?: string | undefined;
3802
3776
  }[];
3803
3777
  };
3804
- display: {
3805
- name: string;
3806
- locale: string;
3807
- }[];
3808
3778
  credential_issuer: string;
3809
3779
  credential_endpoint: string;
3810
3780
  revocation_endpoint: string;
3811
3781
  status_attestation_endpoint: string;
3782
+ display: {
3783
+ name: string;
3784
+ locale: string;
3785
+ }[];
3812
3786
  credential_configurations_supported: Record<string, {
3813
3787
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
3814
- scope: string;
3815
3788
  display: {
3816
3789
  name: string;
3817
3790
  locale: string;
3818
3791
  }[];
3792
+ scope: string;
3819
3793
  claims: Record<string, {
3820
- value_type: string;
3821
3794
  display: {
3822
3795
  name: string;
3823
3796
  locale: string;
3824
3797
  }[];
3798
+ value_type: string;
3825
3799
  }>;
3826
3800
  cryptographic_binding_methods_supported: string[];
3827
3801
  credential_signing_alg_values_supported: string[];
3828
3802
  authentic_source?: string | undefined;
3829
3803
  issuance_errors_supported?: Record<string, {
3830
3804
  display: {
3831
- locale: string;
3832
3805
  title: string;
3806
+ locale: string;
3833
3807
  description: string;
3834
3808
  }[];
3835
3809
  }> | undefined;
3836
3810
  }>;
3837
3811
  };
3838
3812
  oauth_authorization_server: {
3839
- request_object_signing_alg_values_supported: string[];
3840
3813
  jwks: {
3841
3814
  keys: {
3842
3815
  kty: "RSA" | "EC";
@@ -3875,6 +3848,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3875
3848
  response_modes_supported: string[];
3876
3849
  token_endpoint_auth_methods_supported: string[];
3877
3850
  token_endpoint_auth_signing_alg_values_supported: string[];
3851
+ request_object_signing_alg_values_supported: string[];
3878
3852
  };
3879
3853
  openid_credential_verifier?: {
3880
3854
  jwks: {
@@ -3950,7 +3924,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3950
3924
  authorization_encrypted_response_enc?: string | undefined;
3951
3925
  } | undefined;
3952
3926
  };
3953
- }, {
3954
3927
  jwks: {
3955
3928
  keys: {
3956
3929
  kty: "RSA" | "EC";
@@ -3977,6 +3950,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
3977
3950
  x5u?: string | undefined;
3978
3951
  }[];
3979
3952
  };
3953
+ }, {
3980
3954
  metadata: {
3981
3955
  openid_credential_issuer: {
3982
3956
  jwks: {
@@ -4005,42 +3979,41 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4005
3979
  x5u?: string | undefined;
4006
3980
  }[];
4007
3981
  };
4008
- display: {
4009
- name: string;
4010
- locale: string;
4011
- }[];
4012
3982
  credential_issuer: string;
4013
3983
  credential_endpoint: string;
4014
3984
  revocation_endpoint: string;
4015
3985
  status_attestation_endpoint: string;
3986
+ display: {
3987
+ name: string;
3988
+ locale: string;
3989
+ }[];
4016
3990
  credential_configurations_supported: Record<string, {
4017
3991
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
4018
- scope: string;
4019
3992
  display: {
4020
3993
  name: string;
4021
3994
  locale: string;
4022
3995
  }[];
3996
+ scope: string;
4023
3997
  claims: Record<string, {
4024
- value_type: string;
4025
3998
  display: {
4026
3999
  name: string;
4027
4000
  locale: string;
4028
4001
  }[];
4002
+ value_type: string;
4029
4003
  }>;
4030
4004
  cryptographic_binding_methods_supported: string[];
4031
4005
  credential_signing_alg_values_supported: string[];
4032
4006
  authentic_source?: string | undefined;
4033
4007
  issuance_errors_supported?: Record<string, {
4034
4008
  display: {
4035
- locale: string;
4036
4009
  title: string;
4010
+ locale: string;
4037
4011
  description: string;
4038
4012
  }[];
4039
4013
  }> | undefined;
4040
4014
  }>;
4041
4015
  };
4042
4016
  oauth_authorization_server: {
4043
- request_object_signing_alg_values_supported: string[];
4044
4017
  jwks: {
4045
4018
  keys: {
4046
4019
  kty: "RSA" | "EC";
@@ -4079,6 +4052,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4079
4052
  response_modes_supported: string[];
4080
4053
  token_endpoint_auth_methods_supported: string[];
4081
4054
  token_endpoint_auth_signing_alg_values_supported: string[];
4055
+ request_object_signing_alg_values_supported: string[];
4082
4056
  };
4083
4057
  openid_credential_verifier?: {
4084
4058
  jwks: {
@@ -4154,9 +4128,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4154
4128
  authorization_encrypted_response_enc?: string | undefined;
4155
4129
  } | undefined;
4156
4130
  };
4157
- }>;
4158
- }, "strip", z.ZodTypeAny, {
4159
- payload: {
4160
4131
  jwks: {
4161
4132
  keys: {
4162
4133
  kty: "RSA" | "EC";
@@ -4183,6 +4154,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4183
4154
  x5u?: string | undefined;
4184
4155
  }[];
4185
4156
  };
4157
+ }>;
4158
+ }, "strip", z.ZodTypeAny, {
4159
+ payload: {
4186
4160
  metadata: {
4187
4161
  openid_credential_issuer: {
4188
4162
  jwks: {
@@ -4211,42 +4185,41 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4211
4185
  x5u?: string | undefined;
4212
4186
  }[];
4213
4187
  };
4214
- display: {
4215
- name: string;
4216
- locale: string;
4217
- }[];
4218
4188
  credential_issuer: string;
4219
4189
  credential_endpoint: string;
4220
4190
  revocation_endpoint: string;
4221
4191
  status_attestation_endpoint: string;
4192
+ display: {
4193
+ name: string;
4194
+ locale: string;
4195
+ }[];
4222
4196
  credential_configurations_supported: Record<string, {
4223
4197
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
4224
- scope: string;
4225
4198
  display: {
4226
4199
  name: string;
4227
4200
  locale: string;
4228
4201
  }[];
4202
+ scope: string;
4229
4203
  claims: Record<string, {
4230
- value_type: string;
4231
4204
  display: {
4232
4205
  name: string;
4233
4206
  locale: string;
4234
4207
  }[];
4208
+ value_type: string;
4235
4209
  }>;
4236
4210
  cryptographic_binding_methods_supported: string[];
4237
4211
  credential_signing_alg_values_supported: string[];
4238
4212
  authentic_source?: string | undefined;
4239
4213
  issuance_errors_supported?: Record<string, {
4240
4214
  display: {
4241
- locale: string;
4242
4215
  title: string;
4216
+ locale: string;
4243
4217
  description: string;
4244
4218
  }[];
4245
4219
  }> | undefined;
4246
4220
  }>;
4247
4221
  };
4248
4222
  oauth_authorization_server: {
4249
- request_object_signing_alg_values_supported: string[];
4250
4223
  jwks: {
4251
4224
  keys: {
4252
4225
  kty: "RSA" | "EC";
@@ -4285,6 +4258,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4285
4258
  response_modes_supported: string[];
4286
4259
  token_endpoint_auth_methods_supported: string[];
4287
4260
  token_endpoint_auth_signing_alg_values_supported: string[];
4261
+ request_object_signing_alg_values_supported: string[];
4288
4262
  };
4289
4263
  openid_credential_verifier?: {
4290
4264
  jwks: {
@@ -4360,9 +4334,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4360
4334
  authorization_encrypted_response_enc?: string | undefined;
4361
4335
  } | undefined;
4362
4336
  };
4363
- };
4364
- }, {
4365
- payload: {
4366
4337
  jwks: {
4367
4338
  keys: {
4368
4339
  kty: "RSA" | "EC";
@@ -4389,6 +4360,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4389
4360
  x5u?: string | undefined;
4390
4361
  }[];
4391
4362
  };
4363
+ };
4364
+ }, {
4365
+ payload: {
4392
4366
  metadata: {
4393
4367
  openid_credential_issuer: {
4394
4368
  jwks: {
@@ -4417,42 +4391,41 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4417
4391
  x5u?: string | undefined;
4418
4392
  }[];
4419
4393
  };
4420
- display: {
4421
- name: string;
4422
- locale: string;
4423
- }[];
4424
4394
  credential_issuer: string;
4425
4395
  credential_endpoint: string;
4426
4396
  revocation_endpoint: string;
4427
4397
  status_attestation_endpoint: string;
4398
+ display: {
4399
+ name: string;
4400
+ locale: string;
4401
+ }[];
4428
4402
  credential_configurations_supported: Record<string, {
4429
4403
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
4430
- scope: string;
4431
4404
  display: {
4432
4405
  name: string;
4433
4406
  locale: string;
4434
4407
  }[];
4408
+ scope: string;
4435
4409
  claims: Record<string, {
4436
- value_type: string;
4437
4410
  display: {
4438
4411
  name: string;
4439
4412
  locale: string;
4440
4413
  }[];
4414
+ value_type: string;
4441
4415
  }>;
4442
4416
  cryptographic_binding_methods_supported: string[];
4443
4417
  credential_signing_alg_values_supported: string[];
4444
4418
  authentic_source?: string | undefined;
4445
4419
  issuance_errors_supported?: Record<string, {
4446
4420
  display: {
4447
- locale: string;
4448
4421
  title: string;
4422
+ locale: string;
4449
4423
  description: string;
4450
4424
  }[];
4451
4425
  }> | undefined;
4452
4426
  }>;
4453
4427
  };
4454
4428
  oauth_authorization_server: {
4455
- request_object_signing_alg_values_supported: string[];
4456
4429
  jwks: {
4457
4430
  keys: {
4458
4431
  kty: "RSA" | "EC";
@@ -4491,6 +4464,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4491
4464
  response_modes_supported: string[];
4492
4465
  token_endpoint_auth_methods_supported: string[];
4493
4466
  token_endpoint_auth_signing_alg_values_supported: string[];
4467
+ request_object_signing_alg_values_supported: string[];
4494
4468
  };
4495
4469
  openid_credential_verifier?: {
4496
4470
  jwks: {
@@ -4566,6 +4540,32 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
4566
4540
  authorization_encrypted_response_enc?: string | undefined;
4567
4541
  } | undefined;
4568
4542
  };
4543
+ jwks: {
4544
+ keys: {
4545
+ kty: "RSA" | "EC";
4546
+ alg?: string | undefined;
4547
+ crv?: string | undefined;
4548
+ d?: string | undefined;
4549
+ dp?: string | undefined;
4550
+ dq?: string | undefined;
4551
+ e?: string | undefined;
4552
+ ext?: boolean | undefined;
4553
+ k?: string | undefined;
4554
+ key_ops?: string[] | undefined;
4555
+ kid?: string | undefined;
4556
+ n?: string | undefined;
4557
+ p?: string | undefined;
4558
+ q?: string | undefined;
4559
+ qi?: string | undefined;
4560
+ use?: string | undefined;
4561
+ x?: string | undefined;
4562
+ y?: string | undefined;
4563
+ x5c?: string[] | undefined;
4564
+ x5t?: string | undefined;
4565
+ "x5t#S256"?: string | undefined;
4566
+ x5u?: string | undefined;
4567
+ }[];
4568
+ };
4569
4569
  };
4570
4570
  }>>;
4571
4571
  export type RelyingPartyEntityConfiguration = z.infer<typeof RelyingPartyEntityConfiguration>;
@@ -5368,11 +5368,37 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
5368
5368
  }>;
5369
5369
  }, z.ZodTypeAny, "passthrough">>;
5370
5370
  }, "strip", z.ZodTypeAny, {
5371
+ header: {
5372
+ alg: string;
5373
+ kid: string;
5374
+ typ: "entity-statement+jwt";
5375
+ };
5371
5376
  payload: {
5372
5377
  iss: string;
5373
5378
  sub: string;
5374
5379
  iat: number;
5375
5380
  exp: number;
5381
+ metadata: {
5382
+ federation_entity: {
5383
+ federation_fetch_endpoint?: string | undefined;
5384
+ federation_list_endpoint?: string | undefined;
5385
+ federation_resolve_endpoint?: string | undefined;
5386
+ federation_trust_mark_status_endpoint?: string | undefined;
5387
+ federation_trust_mark_list_endpoint?: string | undefined;
5388
+ federation_trust_mark_endpoint?: string | undefined;
5389
+ federation_historical_keys_endpoint?: string | undefined;
5390
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
5391
+ organization_name?: string | undefined;
5392
+ homepage_uri?: string | undefined;
5393
+ policy_uri?: string | undefined;
5394
+ logo_uri?: string | undefined;
5395
+ contacts?: string[] | undefined;
5396
+ } & {
5397
+ [k: string]: unknown;
5398
+ };
5399
+ } & {
5400
+ [k: string]: unknown;
5401
+ };
5376
5402
  jwks: {
5377
5403
  keys: {
5378
5404
  kty: "RSA" | "EC";
@@ -5399,6 +5425,21 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
5399
5425
  x5u?: string | undefined;
5400
5426
  }[];
5401
5427
  };
5428
+ authority_hints?: string[] | undefined;
5429
+ } & {
5430
+ [k: string]: unknown;
5431
+ };
5432
+ }, {
5433
+ header: {
5434
+ alg: string;
5435
+ kid: string;
5436
+ typ: "entity-statement+jwt";
5437
+ };
5438
+ payload: {
5439
+ iss: string;
5440
+ sub: string;
5441
+ iat: number;
5442
+ exp: number;
5402
5443
  metadata: {
5403
5444
  federation_entity: {
5404
5445
  federation_fetch_endpoint?: string | undefined;
@@ -5420,21 +5461,6 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
5420
5461
  } & {
5421
5462
  [k: string]: unknown;
5422
5463
  };
5423
- authority_hints?: string[] | undefined;
5424
- } & {
5425
- [k: string]: unknown;
5426
- };
5427
- header: {
5428
- alg: string;
5429
- kid: string;
5430
- typ: "entity-statement+jwt";
5431
- };
5432
- }, {
5433
- payload: {
5434
- iss: string;
5435
- sub: string;
5436
- iat: number;
5437
- exp: number;
5438
5464
  jwks: {
5439
5465
  keys: {
5440
5466
  kty: "RSA" | "EC";
@@ -5461,36 +5487,10 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
5461
5487
  x5u?: string | undefined;
5462
5488
  }[];
5463
5489
  };
5464
- metadata: {
5465
- federation_entity: {
5466
- federation_fetch_endpoint?: string | undefined;
5467
- federation_list_endpoint?: string | undefined;
5468
- federation_resolve_endpoint?: string | undefined;
5469
- federation_trust_mark_status_endpoint?: string | undefined;
5470
- federation_trust_mark_list_endpoint?: string | undefined;
5471
- federation_trust_mark_endpoint?: string | undefined;
5472
- federation_historical_keys_endpoint?: string | undefined;
5473
- endpoint_auth_signing_alg_values_supported?: string | undefined;
5474
- organization_name?: string | undefined;
5475
- homepage_uri?: string | undefined;
5476
- policy_uri?: string | undefined;
5477
- logo_uri?: string | undefined;
5478
- contacts?: string[] | undefined;
5479
- } & {
5480
- [k: string]: unknown;
5481
- };
5482
- } & {
5483
- [k: string]: unknown;
5484
- };
5485
5490
  authority_hints?: string[] | undefined;
5486
5491
  } & {
5487
5492
  [k: string]: unknown;
5488
5493
  };
5489
- header: {
5490
- alg: string;
5491
- kid: string;
5492
- typ: "entity-statement+jwt";
5493
- };
5494
5494
  }>, z.ZodObject<{
5495
5495
  payload: z.ZodObject<{
5496
5496
  metadata: z.ZodObject<{
@@ -7246,11 +7246,37 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
7246
7246
  }>;
7247
7247
  }, z.ZodTypeAny, "passthrough">>;
7248
7248
  }, "strip", z.ZodTypeAny, {
7249
+ header: {
7250
+ alg: string;
7251
+ kid: string;
7252
+ typ: "entity-statement+jwt";
7253
+ };
7249
7254
  payload: {
7250
7255
  iss: string;
7251
7256
  sub: string;
7252
7257
  iat: number;
7253
7258
  exp: number;
7259
+ metadata: {
7260
+ federation_entity: {
7261
+ federation_fetch_endpoint?: string | undefined;
7262
+ federation_list_endpoint?: string | undefined;
7263
+ federation_resolve_endpoint?: string | undefined;
7264
+ federation_trust_mark_status_endpoint?: string | undefined;
7265
+ federation_trust_mark_list_endpoint?: string | undefined;
7266
+ federation_trust_mark_endpoint?: string | undefined;
7267
+ federation_historical_keys_endpoint?: string | undefined;
7268
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
7269
+ organization_name?: string | undefined;
7270
+ homepage_uri?: string | undefined;
7271
+ policy_uri?: string | undefined;
7272
+ logo_uri?: string | undefined;
7273
+ contacts?: string[] | undefined;
7274
+ } & {
7275
+ [k: string]: unknown;
7276
+ };
7277
+ } & {
7278
+ [k: string]: unknown;
7279
+ };
7254
7280
  jwks: {
7255
7281
  keys: {
7256
7282
  kty: "RSA" | "EC";
@@ -7277,42 +7303,42 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
7277
7303
  x5u?: string | undefined;
7278
7304
  }[];
7279
7305
  };
7280
- metadata: {
7281
- federation_entity: {
7282
- federation_fetch_endpoint?: string | undefined;
7283
- federation_list_endpoint?: string | undefined;
7284
- federation_resolve_endpoint?: string | undefined;
7285
- federation_trust_mark_status_endpoint?: string | undefined;
7286
- federation_trust_mark_list_endpoint?: string | undefined;
7287
- federation_trust_mark_endpoint?: string | undefined;
7288
- federation_historical_keys_endpoint?: string | undefined;
7289
- endpoint_auth_signing_alg_values_supported?: string | undefined;
7290
- organization_name?: string | undefined;
7291
- homepage_uri?: string | undefined;
7292
- policy_uri?: string | undefined;
7293
- logo_uri?: string | undefined;
7294
- contacts?: string[] | undefined;
7295
- } & {
7296
- [k: string]: unknown;
7297
- };
7298
- } & {
7299
- [k: string]: unknown;
7300
- };
7301
7306
  authority_hints?: string[] | undefined;
7302
7307
  } & {
7303
7308
  [k: string]: unknown;
7304
7309
  };
7310
+ }, {
7305
7311
  header: {
7306
7312
  alg: string;
7307
7313
  kid: string;
7308
7314
  typ: "entity-statement+jwt";
7309
7315
  };
7310
- }, {
7311
7316
  payload: {
7312
7317
  iss: string;
7313
7318
  sub: string;
7314
7319
  iat: number;
7315
7320
  exp: number;
7321
+ metadata: {
7322
+ federation_entity: {
7323
+ federation_fetch_endpoint?: string | undefined;
7324
+ federation_list_endpoint?: string | undefined;
7325
+ federation_resolve_endpoint?: string | undefined;
7326
+ federation_trust_mark_status_endpoint?: string | undefined;
7327
+ federation_trust_mark_list_endpoint?: string | undefined;
7328
+ federation_trust_mark_endpoint?: string | undefined;
7329
+ federation_historical_keys_endpoint?: string | undefined;
7330
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
7331
+ organization_name?: string | undefined;
7332
+ homepage_uri?: string | undefined;
7333
+ policy_uri?: string | undefined;
7334
+ logo_uri?: string | undefined;
7335
+ contacts?: string[] | undefined;
7336
+ } & {
7337
+ [k: string]: unknown;
7338
+ };
7339
+ } & {
7340
+ [k: string]: unknown;
7341
+ };
7316
7342
  jwks: {
7317
7343
  keys: {
7318
7344
  kty: "RSA" | "EC";
@@ -7339,36 +7365,10 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
7339
7365
  x5u?: string | undefined;
7340
7366
  }[];
7341
7367
  };
7342
- metadata: {
7343
- federation_entity: {
7344
- federation_fetch_endpoint?: string | undefined;
7345
- federation_list_endpoint?: string | undefined;
7346
- federation_resolve_endpoint?: string | undefined;
7347
- federation_trust_mark_status_endpoint?: string | undefined;
7348
- federation_trust_mark_list_endpoint?: string | undefined;
7349
- federation_trust_mark_endpoint?: string | undefined;
7350
- federation_historical_keys_endpoint?: string | undefined;
7351
- endpoint_auth_signing_alg_values_supported?: string | undefined;
7352
- organization_name?: string | undefined;
7353
- homepage_uri?: string | undefined;
7354
- policy_uri?: string | undefined;
7355
- logo_uri?: string | undefined;
7356
- contacts?: string[] | undefined;
7357
- } & {
7358
- [k: string]: unknown;
7359
- };
7360
- } & {
7361
- [k: string]: unknown;
7362
- };
7363
7368
  authority_hints?: string[] | undefined;
7364
7369
  } & {
7365
7370
  [k: string]: unknown;
7366
7371
  };
7367
- header: {
7368
- alg: string;
7369
- kid: string;
7370
- typ: "entity-statement+jwt";
7371
- };
7372
7372
  }>, z.ZodObject<{
7373
7373
  payload: z.ZodObject<{
7374
7374
  metadata: z.ZodObject<{
@@ -8788,11 +8788,37 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
8788
8788
  }>;
8789
8789
  }, z.ZodTypeAny, "passthrough">>;
8790
8790
  }, "strip", z.ZodTypeAny, {
8791
+ header: {
8792
+ alg: string;
8793
+ kid: string;
8794
+ typ: "entity-statement+jwt";
8795
+ };
8791
8796
  payload: {
8792
8797
  iss: string;
8793
8798
  sub: string;
8794
8799
  iat: number;
8795
8800
  exp: number;
8801
+ metadata: {
8802
+ federation_entity: {
8803
+ federation_fetch_endpoint?: string | undefined;
8804
+ federation_list_endpoint?: string | undefined;
8805
+ federation_resolve_endpoint?: string | undefined;
8806
+ federation_trust_mark_status_endpoint?: string | undefined;
8807
+ federation_trust_mark_list_endpoint?: string | undefined;
8808
+ federation_trust_mark_endpoint?: string | undefined;
8809
+ federation_historical_keys_endpoint?: string | undefined;
8810
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
8811
+ organization_name?: string | undefined;
8812
+ homepage_uri?: string | undefined;
8813
+ policy_uri?: string | undefined;
8814
+ logo_uri?: string | undefined;
8815
+ contacts?: string[] | undefined;
8816
+ } & {
8817
+ [k: string]: unknown;
8818
+ };
8819
+ } & {
8820
+ [k: string]: unknown;
8821
+ };
8796
8822
  jwks: {
8797
8823
  keys: {
8798
8824
  kty: "RSA" | "EC";
@@ -8819,6 +8845,21 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
8819
8845
  x5u?: string | undefined;
8820
8846
  }[];
8821
8847
  };
8848
+ authority_hints?: string[] | undefined;
8849
+ } & {
8850
+ [k: string]: unknown;
8851
+ };
8852
+ }, {
8853
+ header: {
8854
+ alg: string;
8855
+ kid: string;
8856
+ typ: "entity-statement+jwt";
8857
+ };
8858
+ payload: {
8859
+ iss: string;
8860
+ sub: string;
8861
+ iat: number;
8862
+ exp: number;
8822
8863
  metadata: {
8823
8864
  federation_entity: {
8824
8865
  federation_fetch_endpoint?: string | undefined;
@@ -8840,21 +8881,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
8840
8881
  } & {
8841
8882
  [k: string]: unknown;
8842
8883
  };
8843
- authority_hints?: string[] | undefined;
8844
- } & {
8845
- [k: string]: unknown;
8846
- };
8847
- header: {
8848
- alg: string;
8849
- kid: string;
8850
- typ: "entity-statement+jwt";
8851
- };
8852
- }, {
8853
- payload: {
8854
- iss: string;
8855
- sub: string;
8856
- iat: number;
8857
- exp: number;
8858
8884
  jwks: {
8859
8885
  keys: {
8860
8886
  kty: "RSA" | "EC";
@@ -8881,36 +8907,10 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
8881
8907
  x5u?: string | undefined;
8882
8908
  }[];
8883
8909
  };
8884
- metadata: {
8885
- federation_entity: {
8886
- federation_fetch_endpoint?: string | undefined;
8887
- federation_list_endpoint?: string | undefined;
8888
- federation_resolve_endpoint?: string | undefined;
8889
- federation_trust_mark_status_endpoint?: string | undefined;
8890
- federation_trust_mark_list_endpoint?: string | undefined;
8891
- federation_trust_mark_endpoint?: string | undefined;
8892
- federation_historical_keys_endpoint?: string | undefined;
8893
- endpoint_auth_signing_alg_values_supported?: string | undefined;
8894
- organization_name?: string | undefined;
8895
- homepage_uri?: string | undefined;
8896
- policy_uri?: string | undefined;
8897
- logo_uri?: string | undefined;
8898
- contacts?: string[] | undefined;
8899
- } & {
8900
- [k: string]: unknown;
8901
- };
8902
- } & {
8903
- [k: string]: unknown;
8904
- };
8905
8910
  authority_hints?: string[] | undefined;
8906
8911
  } & {
8907
8912
  [k: string]: unknown;
8908
8913
  };
8909
- header: {
8910
- alg: string;
8911
- kid: string;
8912
- typ: "entity-statement+jwt";
8913
- };
8914
8914
  }>, z.ZodObject<{
8915
8915
  payload: z.ZodObject<{
8916
8916
  metadata: z.ZodObject<{
@@ -10328,11 +10328,37 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10328
10328
  }>;
10329
10329
  }, z.ZodTypeAny, "passthrough">>;
10330
10330
  }, "strip", z.ZodTypeAny, {
10331
+ header: {
10332
+ alg: string;
10333
+ kid: string;
10334
+ typ: "entity-statement+jwt";
10335
+ };
10331
10336
  payload: {
10332
10337
  iss: string;
10333
10338
  sub: string;
10334
10339
  iat: number;
10335
10340
  exp: number;
10341
+ metadata: {
10342
+ federation_entity: {
10343
+ federation_fetch_endpoint?: string | undefined;
10344
+ federation_list_endpoint?: string | undefined;
10345
+ federation_resolve_endpoint?: string | undefined;
10346
+ federation_trust_mark_status_endpoint?: string | undefined;
10347
+ federation_trust_mark_list_endpoint?: string | undefined;
10348
+ federation_trust_mark_endpoint?: string | undefined;
10349
+ federation_historical_keys_endpoint?: string | undefined;
10350
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
10351
+ organization_name?: string | undefined;
10352
+ homepage_uri?: string | undefined;
10353
+ policy_uri?: string | undefined;
10354
+ logo_uri?: string | undefined;
10355
+ contacts?: string[] | undefined;
10356
+ } & {
10357
+ [k: string]: unknown;
10358
+ };
10359
+ } & {
10360
+ [k: string]: unknown;
10361
+ };
10336
10362
  jwks: {
10337
10363
  keys: {
10338
10364
  kty: "RSA" | "EC";
@@ -10359,6 +10385,21 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10359
10385
  x5u?: string | undefined;
10360
10386
  }[];
10361
10387
  };
10388
+ authority_hints?: string[] | undefined;
10389
+ } & {
10390
+ [k: string]: unknown;
10391
+ };
10392
+ }, {
10393
+ header: {
10394
+ alg: string;
10395
+ kid: string;
10396
+ typ: "entity-statement+jwt";
10397
+ };
10398
+ payload: {
10399
+ iss: string;
10400
+ sub: string;
10401
+ iat: number;
10402
+ exp: number;
10362
10403
  metadata: {
10363
10404
  federation_entity: {
10364
10405
  federation_fetch_endpoint?: string | undefined;
@@ -10380,21 +10421,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10380
10421
  } & {
10381
10422
  [k: string]: unknown;
10382
10423
  };
10383
- authority_hints?: string[] | undefined;
10384
- } & {
10385
- [k: string]: unknown;
10386
- };
10387
- header: {
10388
- alg: string;
10389
- kid: string;
10390
- typ: "entity-statement+jwt";
10391
- };
10392
- }, {
10393
- payload: {
10394
- iss: string;
10395
- sub: string;
10396
- iat: number;
10397
- exp: number;
10398
10424
  jwks: {
10399
10425
  keys: {
10400
10426
  kty: "RSA" | "EC";
@@ -10421,36 +10447,10 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10421
10447
  x5u?: string | undefined;
10422
10448
  }[];
10423
10449
  };
10424
- metadata: {
10425
- federation_entity: {
10426
- federation_fetch_endpoint?: string | undefined;
10427
- federation_list_endpoint?: string | undefined;
10428
- federation_resolve_endpoint?: string | undefined;
10429
- federation_trust_mark_status_endpoint?: string | undefined;
10430
- federation_trust_mark_list_endpoint?: string | undefined;
10431
- federation_trust_mark_endpoint?: string | undefined;
10432
- federation_historical_keys_endpoint?: string | undefined;
10433
- endpoint_auth_signing_alg_values_supported?: string | undefined;
10434
- organization_name?: string | undefined;
10435
- homepage_uri?: string | undefined;
10436
- policy_uri?: string | undefined;
10437
- logo_uri?: string | undefined;
10438
- contacts?: string[] | undefined;
10439
- } & {
10440
- [k: string]: unknown;
10441
- };
10442
- } & {
10443
- [k: string]: unknown;
10444
- };
10445
10450
  authority_hints?: string[] | undefined;
10446
10451
  } & {
10447
10452
  [k: string]: unknown;
10448
10453
  };
10449
- header: {
10450
- alg: string;
10451
- kid: string;
10452
- typ: "entity-statement+jwt";
10453
- };
10454
10454
  }>, z.ZodObject<{
10455
10455
  payload: z.ZodObject<{
10456
10456
  jwks: z.ZodObject<{
@@ -10617,17 +10617,17 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10617
10617
  locale: string;
10618
10618
  }>, "many">;
10619
10619
  }, "strip", z.ZodTypeAny, {
10620
- value_type: string;
10621
10620
  display: {
10622
10621
  name: string;
10623
10622
  locale: string;
10624
10623
  }[];
10625
- }, {
10626
10624
  value_type: string;
10625
+ }, {
10627
10626
  display: {
10628
10627
  name: string;
10629
10628
  locale: string;
10630
10629
  }[];
10630
+ value_type: string;
10631
10631
  }>>;
10632
10632
  cryptographic_binding_methods_supported: z.ZodArray<z.ZodString, "many">;
10633
10633
  credential_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
@@ -10638,72 +10638,72 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10638
10638
  description: z.ZodString;
10639
10639
  locale: z.ZodString;
10640
10640
  }, "strip", z.ZodTypeAny, {
10641
- locale: string;
10642
10641
  title: string;
10642
+ locale: string;
10643
10643
  description: string;
10644
10644
  }, {
10645
- locale: string;
10646
10645
  title: string;
10646
+ locale: string;
10647
10647
  description: string;
10648
10648
  }>, "many">;
10649
10649
  }, "strip", z.ZodTypeAny, {
10650
10650
  display: {
10651
- locale: string;
10652
10651
  title: string;
10652
+ locale: string;
10653
10653
  description: string;
10654
10654
  }[];
10655
10655
  }, {
10656
10656
  display: {
10657
- locale: string;
10658
10657
  title: string;
10658
+ locale: string;
10659
10659
  description: string;
10660
10660
  }[];
10661
10661
  }>>>;
10662
10662
  }, "strip", z.ZodTypeAny, {
10663
10663
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
10664
- scope: string;
10665
10664
  display: {
10666
10665
  name: string;
10667
10666
  locale: string;
10668
10667
  }[];
10668
+ scope: string;
10669
10669
  claims: Record<string, {
10670
- value_type: string;
10671
10670
  display: {
10672
10671
  name: string;
10673
10672
  locale: string;
10674
10673
  }[];
10674
+ value_type: string;
10675
10675
  }>;
10676
10676
  cryptographic_binding_methods_supported: string[];
10677
10677
  credential_signing_alg_values_supported: string[];
10678
10678
  authentic_source?: string | undefined;
10679
10679
  issuance_errors_supported?: Record<string, {
10680
10680
  display: {
10681
- locale: string;
10682
10681
  title: string;
10682
+ locale: string;
10683
10683
  description: string;
10684
10684
  }[];
10685
10685
  }> | undefined;
10686
10686
  }, {
10687
10687
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
10688
- scope: string;
10689
10688
  display: {
10690
10689
  name: string;
10691
10690
  locale: string;
10692
10691
  }[];
10692
+ scope: string;
10693
10693
  claims: Record<string, {
10694
- value_type: string;
10695
10694
  display: {
10696
10695
  name: string;
10697
10696
  locale: string;
10698
10697
  }[];
10698
+ value_type: string;
10699
10699
  }>;
10700
10700
  cryptographic_binding_methods_supported: string[];
10701
10701
  credential_signing_alg_values_supported: string[];
10702
10702
  authentic_source?: string | undefined;
10703
10703
  issuance_errors_supported?: Record<string, {
10704
10704
  display: {
10705
- locale: string;
10706
10705
  title: string;
10706
+ locale: string;
10707
10707
  description: string;
10708
10708
  }[];
10709
10709
  }> | undefined;
@@ -10857,35 +10857,35 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10857
10857
  x5u?: string | undefined;
10858
10858
  }[];
10859
10859
  };
10860
- display: {
10861
- name: string;
10862
- locale: string;
10863
- }[];
10864
10860
  credential_issuer: string;
10865
10861
  credential_endpoint: string;
10866
10862
  revocation_endpoint: string;
10867
10863
  status_attestation_endpoint: string;
10864
+ display: {
10865
+ name: string;
10866
+ locale: string;
10867
+ }[];
10868
10868
  credential_configurations_supported: Record<string, {
10869
10869
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
10870
- scope: string;
10871
10870
  display: {
10872
10871
  name: string;
10873
10872
  locale: string;
10874
10873
  }[];
10874
+ scope: string;
10875
10875
  claims: Record<string, {
10876
- value_type: string;
10877
10876
  display: {
10878
10877
  name: string;
10879
10878
  locale: string;
10880
10879
  }[];
10880
+ value_type: string;
10881
10881
  }>;
10882
10882
  cryptographic_binding_methods_supported: string[];
10883
10883
  credential_signing_alg_values_supported: string[];
10884
10884
  authentic_source?: string | undefined;
10885
10885
  issuance_errors_supported?: Record<string, {
10886
10886
  display: {
10887
- locale: string;
10888
10887
  title: string;
10888
+ locale: string;
10889
10889
  description: string;
10890
10890
  }[];
10891
10891
  }> | undefined;
@@ -10917,35 +10917,35 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
10917
10917
  x5u?: string | undefined;
10918
10918
  }[];
10919
10919
  };
10920
- display: {
10921
- name: string;
10922
- locale: string;
10923
- }[];
10924
10920
  credential_issuer: string;
10925
10921
  credential_endpoint: string;
10926
10922
  revocation_endpoint: string;
10927
10923
  status_attestation_endpoint: string;
10924
+ display: {
10925
+ name: string;
10926
+ locale: string;
10927
+ }[];
10928
10928
  credential_configurations_supported: Record<string, {
10929
10929
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
10930
- scope: string;
10931
10930
  display: {
10932
10931
  name: string;
10933
10932
  locale: string;
10934
10933
  }[];
10934
+ scope: string;
10935
10935
  claims: Record<string, {
10936
- value_type: string;
10937
10936
  display: {
10938
10937
  name: string;
10939
10938
  locale: string;
10940
10939
  }[];
10940
+ value_type: string;
10941
10941
  }>;
10942
10942
  cryptographic_binding_methods_supported: string[];
10943
10943
  credential_signing_alg_values_supported: string[];
10944
10944
  authentic_source?: string | undefined;
10945
10945
  issuance_errors_supported?: Record<string, {
10946
10946
  display: {
10947
- locale: string;
10948
10947
  title: string;
10948
+ locale: string;
10949
10949
  description: string;
10950
10950
  }[];
10951
10951
  }> | undefined;
@@ -11088,7 +11088,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11088
11088
  token_endpoint_auth_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
11089
11089
  request_object_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
11090
11090
  }, "strip", z.ZodTypeAny, {
11091
- request_object_signing_alg_values_supported: string[];
11092
11091
  jwks: {
11093
11092
  keys: {
11094
11093
  kty: "RSA" | "EC";
@@ -11127,8 +11126,8 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11127
11126
  response_modes_supported: string[];
11128
11127
  token_endpoint_auth_methods_supported: string[];
11129
11128
  token_endpoint_auth_signing_alg_values_supported: string[];
11130
- }, {
11131
11129
  request_object_signing_alg_values_supported: string[];
11130
+ }, {
11132
11131
  jwks: {
11133
11132
  keys: {
11134
11133
  kty: "RSA" | "EC";
@@ -11167,6 +11166,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11167
11166
  response_modes_supported: string[];
11168
11167
  token_endpoint_auth_methods_supported: string[];
11169
11168
  token_endpoint_auth_signing_alg_values_supported: string[];
11169
+ request_object_signing_alg_values_supported: string[];
11170
11170
  }>;
11171
11171
  /**
11172
11172
  * Credential Issuers act as Relying Party when they require the presentation of other credentials.
@@ -11693,42 +11693,41 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11693
11693
  x5u?: string | undefined;
11694
11694
  }[];
11695
11695
  };
11696
- display: {
11697
- name: string;
11698
- locale: string;
11699
- }[];
11700
11696
  credential_issuer: string;
11701
11697
  credential_endpoint: string;
11702
11698
  revocation_endpoint: string;
11703
11699
  status_attestation_endpoint: string;
11700
+ display: {
11701
+ name: string;
11702
+ locale: string;
11703
+ }[];
11704
11704
  credential_configurations_supported: Record<string, {
11705
11705
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
11706
- scope: string;
11707
11706
  display: {
11708
11707
  name: string;
11709
11708
  locale: string;
11710
11709
  }[];
11710
+ scope: string;
11711
11711
  claims: Record<string, {
11712
- value_type: string;
11713
11712
  display: {
11714
11713
  name: string;
11715
11714
  locale: string;
11716
11715
  }[];
11716
+ value_type: string;
11717
11717
  }>;
11718
11718
  cryptographic_binding_methods_supported: string[];
11719
11719
  credential_signing_alg_values_supported: string[];
11720
11720
  authentic_source?: string | undefined;
11721
11721
  issuance_errors_supported?: Record<string, {
11722
11722
  display: {
11723
- locale: string;
11724
11723
  title: string;
11724
+ locale: string;
11725
11725
  description: string;
11726
11726
  }[];
11727
11727
  }> | undefined;
11728
11728
  }>;
11729
11729
  };
11730
11730
  oauth_authorization_server: {
11731
- request_object_signing_alg_values_supported: string[];
11732
11731
  jwks: {
11733
11732
  keys: {
11734
11733
  kty: "RSA" | "EC";
@@ -11767,6 +11766,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11767
11766
  response_modes_supported: string[];
11768
11767
  token_endpoint_auth_methods_supported: string[];
11769
11768
  token_endpoint_auth_signing_alg_values_supported: string[];
11769
+ request_object_signing_alg_values_supported: string[];
11770
11770
  };
11771
11771
  openid_credential_verifier?: {
11772
11772
  jwks: {
@@ -11869,42 +11869,41 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11869
11869
  x5u?: string | undefined;
11870
11870
  }[];
11871
11871
  };
11872
- display: {
11873
- name: string;
11874
- locale: string;
11875
- }[];
11876
11872
  credential_issuer: string;
11877
11873
  credential_endpoint: string;
11878
11874
  revocation_endpoint: string;
11879
11875
  status_attestation_endpoint: string;
11876
+ display: {
11877
+ name: string;
11878
+ locale: string;
11879
+ }[];
11880
11880
  credential_configurations_supported: Record<string, {
11881
11881
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
11882
- scope: string;
11883
11882
  display: {
11884
11883
  name: string;
11885
11884
  locale: string;
11886
11885
  }[];
11886
+ scope: string;
11887
11887
  claims: Record<string, {
11888
- value_type: string;
11889
11888
  display: {
11890
11889
  name: string;
11891
11890
  locale: string;
11892
11891
  }[];
11892
+ value_type: string;
11893
11893
  }>;
11894
11894
  cryptographic_binding_methods_supported: string[];
11895
11895
  credential_signing_alg_values_supported: string[];
11896
11896
  authentic_source?: string | undefined;
11897
11897
  issuance_errors_supported?: Record<string, {
11898
11898
  display: {
11899
- locale: string;
11900
11899
  title: string;
11900
+ locale: string;
11901
11901
  description: string;
11902
11902
  }[];
11903
11903
  }> | undefined;
11904
11904
  }>;
11905
11905
  };
11906
11906
  oauth_authorization_server: {
11907
- request_object_signing_alg_values_supported: string[];
11908
11907
  jwks: {
11909
11908
  keys: {
11910
11909
  kty: "RSA" | "EC";
@@ -11943,6 +11942,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
11943
11942
  response_modes_supported: string[];
11944
11943
  token_endpoint_auth_methods_supported: string[];
11945
11944
  token_endpoint_auth_signing_alg_values_supported: string[];
11945
+ request_object_signing_alg_values_supported: string[];
11946
11946
  };
11947
11947
  openid_credential_verifier?: {
11948
11948
  jwks: {
@@ -12019,32 +12019,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12019
12019
  } | undefined;
12020
12020
  }>;
12021
12021
  }, "strip", z.ZodTypeAny, {
12022
- jwks: {
12023
- keys: {
12024
- kty: "RSA" | "EC";
12025
- alg?: string | undefined;
12026
- crv?: string | undefined;
12027
- d?: string | undefined;
12028
- dp?: string | undefined;
12029
- dq?: string | undefined;
12030
- e?: string | undefined;
12031
- ext?: boolean | undefined;
12032
- k?: string | undefined;
12033
- key_ops?: string[] | undefined;
12034
- kid?: string | undefined;
12035
- n?: string | undefined;
12036
- p?: string | undefined;
12037
- q?: string | undefined;
12038
- qi?: string | undefined;
12039
- use?: string | undefined;
12040
- x?: string | undefined;
12041
- y?: string | undefined;
12042
- x5c?: string[] | undefined;
12043
- x5t?: string | undefined;
12044
- "x5t#S256"?: string | undefined;
12045
- x5u?: string | undefined;
12046
- }[];
12047
- };
12048
12022
  metadata: {
12049
12023
  openid_credential_issuer: {
12050
12024
  jwks: {
@@ -12073,42 +12047,41 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12073
12047
  x5u?: string | undefined;
12074
12048
  }[];
12075
12049
  };
12076
- display: {
12077
- name: string;
12078
- locale: string;
12079
- }[];
12080
12050
  credential_issuer: string;
12081
12051
  credential_endpoint: string;
12082
12052
  revocation_endpoint: string;
12083
12053
  status_attestation_endpoint: string;
12054
+ display: {
12055
+ name: string;
12056
+ locale: string;
12057
+ }[];
12084
12058
  credential_configurations_supported: Record<string, {
12085
12059
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
12086
- scope: string;
12087
12060
  display: {
12088
12061
  name: string;
12089
12062
  locale: string;
12090
12063
  }[];
12064
+ scope: string;
12091
12065
  claims: Record<string, {
12092
- value_type: string;
12093
12066
  display: {
12094
12067
  name: string;
12095
12068
  locale: string;
12096
12069
  }[];
12070
+ value_type: string;
12097
12071
  }>;
12098
12072
  cryptographic_binding_methods_supported: string[];
12099
12073
  credential_signing_alg_values_supported: string[];
12100
12074
  authentic_source?: string | undefined;
12101
12075
  issuance_errors_supported?: Record<string, {
12102
12076
  display: {
12103
- locale: string;
12104
12077
  title: string;
12078
+ locale: string;
12105
12079
  description: string;
12106
12080
  }[];
12107
12081
  }> | undefined;
12108
12082
  }>;
12109
12083
  };
12110
12084
  oauth_authorization_server: {
12111
- request_object_signing_alg_values_supported: string[];
12112
12085
  jwks: {
12113
12086
  keys: {
12114
12087
  kty: "RSA" | "EC";
@@ -12147,6 +12120,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12147
12120
  response_modes_supported: string[];
12148
12121
  token_endpoint_auth_methods_supported: string[];
12149
12122
  token_endpoint_auth_signing_alg_values_supported: string[];
12123
+ request_object_signing_alg_values_supported: string[];
12150
12124
  };
12151
12125
  openid_credential_verifier?: {
12152
12126
  jwks: {
@@ -12222,7 +12196,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12222
12196
  authorization_encrypted_response_enc?: string | undefined;
12223
12197
  } | undefined;
12224
12198
  };
12225
- }, {
12226
12199
  jwks: {
12227
12200
  keys: {
12228
12201
  kty: "RSA" | "EC";
@@ -12249,6 +12222,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12249
12222
  x5u?: string | undefined;
12250
12223
  }[];
12251
12224
  };
12225
+ }, {
12252
12226
  metadata: {
12253
12227
  openid_credential_issuer: {
12254
12228
  jwks: {
@@ -12277,42 +12251,41 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12277
12251
  x5u?: string | undefined;
12278
12252
  }[];
12279
12253
  };
12280
- display: {
12281
- name: string;
12282
- locale: string;
12283
- }[];
12284
12254
  credential_issuer: string;
12285
12255
  credential_endpoint: string;
12286
12256
  revocation_endpoint: string;
12287
12257
  status_attestation_endpoint: string;
12258
+ display: {
12259
+ name: string;
12260
+ locale: string;
12261
+ }[];
12288
12262
  credential_configurations_supported: Record<string, {
12289
12263
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
12290
- scope: string;
12291
12264
  display: {
12292
12265
  name: string;
12293
12266
  locale: string;
12294
12267
  }[];
12268
+ scope: string;
12295
12269
  claims: Record<string, {
12296
- value_type: string;
12297
12270
  display: {
12298
12271
  name: string;
12299
12272
  locale: string;
12300
12273
  }[];
12274
+ value_type: string;
12301
12275
  }>;
12302
12276
  cryptographic_binding_methods_supported: string[];
12303
12277
  credential_signing_alg_values_supported: string[];
12304
12278
  authentic_source?: string | undefined;
12305
12279
  issuance_errors_supported?: Record<string, {
12306
12280
  display: {
12307
- locale: string;
12308
12281
  title: string;
12282
+ locale: string;
12309
12283
  description: string;
12310
12284
  }[];
12311
12285
  }> | undefined;
12312
12286
  }>;
12313
12287
  };
12314
12288
  oauth_authorization_server: {
12315
- request_object_signing_alg_values_supported: string[];
12316
12289
  jwks: {
12317
12290
  keys: {
12318
12291
  kty: "RSA" | "EC";
@@ -12351,6 +12324,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12351
12324
  response_modes_supported: string[];
12352
12325
  token_endpoint_auth_methods_supported: string[];
12353
12326
  token_endpoint_auth_signing_alg_values_supported: string[];
12327
+ request_object_signing_alg_values_supported: string[];
12354
12328
  };
12355
12329
  openid_credential_verifier?: {
12356
12330
  jwks: {
@@ -12426,9 +12400,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12426
12400
  authorization_encrypted_response_enc?: string | undefined;
12427
12401
  } | undefined;
12428
12402
  };
12429
- }>;
12430
- }, "strip", z.ZodTypeAny, {
12431
- payload: {
12432
12403
  jwks: {
12433
12404
  keys: {
12434
12405
  kty: "RSA" | "EC";
@@ -12455,6 +12426,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12455
12426
  x5u?: string | undefined;
12456
12427
  }[];
12457
12428
  };
12429
+ }>;
12430
+ }, "strip", z.ZodTypeAny, {
12431
+ payload: {
12458
12432
  metadata: {
12459
12433
  openid_credential_issuer: {
12460
12434
  jwks: {
@@ -12483,42 +12457,41 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12483
12457
  x5u?: string | undefined;
12484
12458
  }[];
12485
12459
  };
12486
- display: {
12487
- name: string;
12488
- locale: string;
12489
- }[];
12490
12460
  credential_issuer: string;
12491
12461
  credential_endpoint: string;
12492
12462
  revocation_endpoint: string;
12493
12463
  status_attestation_endpoint: string;
12464
+ display: {
12465
+ name: string;
12466
+ locale: string;
12467
+ }[];
12494
12468
  credential_configurations_supported: Record<string, {
12495
12469
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
12496
- scope: string;
12497
12470
  display: {
12498
12471
  name: string;
12499
12472
  locale: string;
12500
12473
  }[];
12474
+ scope: string;
12501
12475
  claims: Record<string, {
12502
- value_type: string;
12503
12476
  display: {
12504
12477
  name: string;
12505
12478
  locale: string;
12506
12479
  }[];
12480
+ value_type: string;
12507
12481
  }>;
12508
12482
  cryptographic_binding_methods_supported: string[];
12509
12483
  credential_signing_alg_values_supported: string[];
12510
12484
  authentic_source?: string | undefined;
12511
12485
  issuance_errors_supported?: Record<string, {
12512
12486
  display: {
12513
- locale: string;
12514
12487
  title: string;
12488
+ locale: string;
12515
12489
  description: string;
12516
12490
  }[];
12517
12491
  }> | undefined;
12518
12492
  }>;
12519
12493
  };
12520
12494
  oauth_authorization_server: {
12521
- request_object_signing_alg_values_supported: string[];
12522
12495
  jwks: {
12523
12496
  keys: {
12524
12497
  kty: "RSA" | "EC";
@@ -12557,6 +12530,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12557
12530
  response_modes_supported: string[];
12558
12531
  token_endpoint_auth_methods_supported: string[];
12559
12532
  token_endpoint_auth_signing_alg_values_supported: string[];
12533
+ request_object_signing_alg_values_supported: string[];
12560
12534
  };
12561
12535
  openid_credential_verifier?: {
12562
12536
  jwks: {
@@ -12632,9 +12606,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12632
12606
  authorization_encrypted_response_enc?: string | undefined;
12633
12607
  } | undefined;
12634
12608
  };
12635
- };
12636
- }, {
12637
- payload: {
12638
12609
  jwks: {
12639
12610
  keys: {
12640
12611
  kty: "RSA" | "EC";
@@ -12661,6 +12632,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12661
12632
  x5u?: string | undefined;
12662
12633
  }[];
12663
12634
  };
12635
+ };
12636
+ }, {
12637
+ payload: {
12664
12638
  metadata: {
12665
12639
  openid_credential_issuer: {
12666
12640
  jwks: {
@@ -12689,42 +12663,41 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12689
12663
  x5u?: string | undefined;
12690
12664
  }[];
12691
12665
  };
12692
- display: {
12693
- name: string;
12694
- locale: string;
12695
- }[];
12696
12666
  credential_issuer: string;
12697
12667
  credential_endpoint: string;
12698
12668
  revocation_endpoint: string;
12699
12669
  status_attestation_endpoint: string;
12670
+ display: {
12671
+ name: string;
12672
+ locale: string;
12673
+ }[];
12700
12674
  credential_configurations_supported: Record<string, {
12701
12675
  format: "vc+sd-jwt" | "vc+mdoc-cbor";
12702
- scope: string;
12703
12676
  display: {
12704
12677
  name: string;
12705
12678
  locale: string;
12706
12679
  }[];
12680
+ scope: string;
12707
12681
  claims: Record<string, {
12708
- value_type: string;
12709
12682
  display: {
12710
12683
  name: string;
12711
12684
  locale: string;
12712
12685
  }[];
12686
+ value_type: string;
12713
12687
  }>;
12714
12688
  cryptographic_binding_methods_supported: string[];
12715
12689
  credential_signing_alg_values_supported: string[];
12716
12690
  authentic_source?: string | undefined;
12717
12691
  issuance_errors_supported?: Record<string, {
12718
12692
  display: {
12719
- locale: string;
12720
12693
  title: string;
12694
+ locale: string;
12721
12695
  description: string;
12722
12696
  }[];
12723
12697
  }> | undefined;
12724
12698
  }>;
12725
12699
  };
12726
12700
  oauth_authorization_server: {
12727
- request_object_signing_alg_values_supported: string[];
12728
12701
  jwks: {
12729
12702
  keys: {
12730
12703
  kty: "RSA" | "EC";
@@ -12763,6 +12736,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12763
12736
  response_modes_supported: string[];
12764
12737
  token_endpoint_auth_methods_supported: string[];
12765
12738
  token_endpoint_auth_signing_alg_values_supported: string[];
12739
+ request_object_signing_alg_values_supported: string[];
12766
12740
  };
12767
12741
  openid_credential_verifier?: {
12768
12742
  jwks: {
@@ -12838,6 +12812,32 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
12838
12812
  authorization_encrypted_response_enc?: string | undefined;
12839
12813
  } | undefined;
12840
12814
  };
12815
+ jwks: {
12816
+ keys: {
12817
+ kty: "RSA" | "EC";
12818
+ alg?: string | undefined;
12819
+ crv?: string | undefined;
12820
+ d?: string | undefined;
12821
+ dp?: string | undefined;
12822
+ dq?: string | undefined;
12823
+ e?: string | undefined;
12824
+ ext?: boolean | undefined;
12825
+ k?: string | undefined;
12826
+ key_ops?: string[] | undefined;
12827
+ kid?: string | undefined;
12828
+ n?: string | undefined;
12829
+ p?: string | undefined;
12830
+ q?: string | undefined;
12831
+ qi?: string | undefined;
12832
+ use?: string | undefined;
12833
+ x?: string | undefined;
12834
+ y?: string | undefined;
12835
+ x5c?: string[] | undefined;
12836
+ x5t?: string | undefined;
12837
+ "x5t#S256"?: string | undefined;
12838
+ x5u?: string | undefined;
12839
+ }[];
12840
+ };
12841
12841
  };
12842
12842
  }>>, z.ZodObject<{
12843
12843
  header: z.ZodObject<{
@@ -13638,11 +13638,37 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
13638
13638
  }>;
13639
13639
  }, z.ZodTypeAny, "passthrough">>;
13640
13640
  }, "strip", z.ZodTypeAny, {
13641
+ header: {
13642
+ alg: string;
13643
+ kid: string;
13644
+ typ: "entity-statement+jwt";
13645
+ };
13641
13646
  payload: {
13642
13647
  iss: string;
13643
13648
  sub: string;
13644
13649
  iat: number;
13645
13650
  exp: number;
13651
+ metadata: {
13652
+ federation_entity: {
13653
+ federation_fetch_endpoint?: string | undefined;
13654
+ federation_list_endpoint?: string | undefined;
13655
+ federation_resolve_endpoint?: string | undefined;
13656
+ federation_trust_mark_status_endpoint?: string | undefined;
13657
+ federation_trust_mark_list_endpoint?: string | undefined;
13658
+ federation_trust_mark_endpoint?: string | undefined;
13659
+ federation_historical_keys_endpoint?: string | undefined;
13660
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
13661
+ organization_name?: string | undefined;
13662
+ homepage_uri?: string | undefined;
13663
+ policy_uri?: string | undefined;
13664
+ logo_uri?: string | undefined;
13665
+ contacts?: string[] | undefined;
13666
+ } & {
13667
+ [k: string]: unknown;
13668
+ };
13669
+ } & {
13670
+ [k: string]: unknown;
13671
+ };
13646
13672
  jwks: {
13647
13673
  keys: {
13648
13674
  kty: "RSA" | "EC";
@@ -13669,6 +13695,21 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
13669
13695
  x5u?: string | undefined;
13670
13696
  }[];
13671
13697
  };
13698
+ authority_hints?: string[] | undefined;
13699
+ } & {
13700
+ [k: string]: unknown;
13701
+ };
13702
+ }, {
13703
+ header: {
13704
+ alg: string;
13705
+ kid: string;
13706
+ typ: "entity-statement+jwt";
13707
+ };
13708
+ payload: {
13709
+ iss: string;
13710
+ sub: string;
13711
+ iat: number;
13712
+ exp: number;
13672
13713
  metadata: {
13673
13714
  federation_entity: {
13674
13715
  federation_fetch_endpoint?: string | undefined;
@@ -13690,21 +13731,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
13690
13731
  } & {
13691
13732
  [k: string]: unknown;
13692
13733
  };
13693
- authority_hints?: string[] | undefined;
13694
- } & {
13695
- [k: string]: unknown;
13696
- };
13697
- header: {
13698
- alg: string;
13699
- kid: string;
13700
- typ: "entity-statement+jwt";
13701
- };
13702
- }, {
13703
- payload: {
13704
- iss: string;
13705
- sub: string;
13706
- iat: number;
13707
- exp: number;
13708
13734
  jwks: {
13709
13735
  keys: {
13710
13736
  kty: "RSA" | "EC";
@@ -13731,36 +13757,10 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
13731
13757
  x5u?: string | undefined;
13732
13758
  }[];
13733
13759
  };
13734
- metadata: {
13735
- federation_entity: {
13736
- federation_fetch_endpoint?: string | undefined;
13737
- federation_list_endpoint?: string | undefined;
13738
- federation_resolve_endpoint?: string | undefined;
13739
- federation_trust_mark_status_endpoint?: string | undefined;
13740
- federation_trust_mark_list_endpoint?: string | undefined;
13741
- federation_trust_mark_endpoint?: string | undefined;
13742
- federation_historical_keys_endpoint?: string | undefined;
13743
- endpoint_auth_signing_alg_values_supported?: string | undefined;
13744
- organization_name?: string | undefined;
13745
- homepage_uri?: string | undefined;
13746
- policy_uri?: string | undefined;
13747
- logo_uri?: string | undefined;
13748
- contacts?: string[] | undefined;
13749
- } & {
13750
- [k: string]: unknown;
13751
- };
13752
- } & {
13753
- [k: string]: unknown;
13754
- };
13755
13760
  authority_hints?: string[] | undefined;
13756
13761
  } & {
13757
13762
  [k: string]: unknown;
13758
13763
  };
13759
- header: {
13760
- alg: string;
13761
- kid: string;
13762
- typ: "entity-statement+jwt";
13763
- };
13764
13764
  }>, z.ZodIntersection<z.ZodObject<{
13765
13765
  header: z.ZodObject<{
13766
13766
  typ: z.ZodLiteral<"entity-statement+jwt">;
@@ -14560,11 +14560,37 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
14560
14560
  }>;
14561
14561
  }, z.ZodTypeAny, "passthrough">>;
14562
14562
  }, "strip", z.ZodTypeAny, {
14563
+ header: {
14564
+ alg: string;
14565
+ kid: string;
14566
+ typ: "entity-statement+jwt";
14567
+ };
14563
14568
  payload: {
14564
14569
  iss: string;
14565
14570
  sub: string;
14566
14571
  iat: number;
14567
14572
  exp: number;
14573
+ metadata: {
14574
+ federation_entity: {
14575
+ federation_fetch_endpoint?: string | undefined;
14576
+ federation_list_endpoint?: string | undefined;
14577
+ federation_resolve_endpoint?: string | undefined;
14578
+ federation_trust_mark_status_endpoint?: string | undefined;
14579
+ federation_trust_mark_list_endpoint?: string | undefined;
14580
+ federation_trust_mark_endpoint?: string | undefined;
14581
+ federation_historical_keys_endpoint?: string | undefined;
14582
+ endpoint_auth_signing_alg_values_supported?: string | undefined;
14583
+ organization_name?: string | undefined;
14584
+ homepage_uri?: string | undefined;
14585
+ policy_uri?: string | undefined;
14586
+ logo_uri?: string | undefined;
14587
+ contacts?: string[] | undefined;
14588
+ } & {
14589
+ [k: string]: unknown;
14590
+ };
14591
+ } & {
14592
+ [k: string]: unknown;
14593
+ };
14568
14594
  jwks: {
14569
14595
  keys: {
14570
14596
  kty: "RSA" | "EC";
@@ -14591,6 +14617,21 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
14591
14617
  x5u?: string | undefined;
14592
14618
  }[];
14593
14619
  };
14620
+ authority_hints?: string[] | undefined;
14621
+ } & {
14622
+ [k: string]: unknown;
14623
+ };
14624
+ }, {
14625
+ header: {
14626
+ alg: string;
14627
+ kid: string;
14628
+ typ: "entity-statement+jwt";
14629
+ };
14630
+ payload: {
14631
+ iss: string;
14632
+ sub: string;
14633
+ iat: number;
14634
+ exp: number;
14594
14635
  metadata: {
14595
14636
  federation_entity: {
14596
14637
  federation_fetch_endpoint?: string | undefined;
@@ -14612,21 +14653,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
14612
14653
  } & {
14613
14654
  [k: string]: unknown;
14614
14655
  };
14615
- authority_hints?: string[] | undefined;
14616
- } & {
14617
- [k: string]: unknown;
14618
- };
14619
- header: {
14620
- alg: string;
14621
- kid: string;
14622
- typ: "entity-statement+jwt";
14623
- };
14624
- }, {
14625
- payload: {
14626
- iss: string;
14627
- sub: string;
14628
- iat: number;
14629
- exp: number;
14630
14656
  jwks: {
14631
14657
  keys: {
14632
14658
  kty: "RSA" | "EC";
@@ -14653,36 +14679,10 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
14653
14679
  x5u?: string | undefined;
14654
14680
  }[];
14655
14681
  };
14656
- metadata: {
14657
- federation_entity: {
14658
- federation_fetch_endpoint?: string | undefined;
14659
- federation_list_endpoint?: string | undefined;
14660
- federation_resolve_endpoint?: string | undefined;
14661
- federation_trust_mark_status_endpoint?: string | undefined;
14662
- federation_trust_mark_list_endpoint?: string | undefined;
14663
- federation_trust_mark_endpoint?: string | undefined;
14664
- federation_historical_keys_endpoint?: string | undefined;
14665
- endpoint_auth_signing_alg_values_supported?: string | undefined;
14666
- organization_name?: string | undefined;
14667
- homepage_uri?: string | undefined;
14668
- policy_uri?: string | undefined;
14669
- logo_uri?: string | undefined;
14670
- contacts?: string[] | undefined;
14671
- } & {
14672
- [k: string]: unknown;
14673
- };
14674
- } & {
14675
- [k: string]: unknown;
14676
- };
14677
14682
  authority_hints?: string[] | undefined;
14678
14683
  } & {
14679
14684
  [k: string]: unknown;
14680
14685
  };
14681
- header: {
14682
- alg: string;
14683
- kid: string;
14684
- typ: "entity-statement+jwt";
14685
- };
14686
14686
  }>, z.ZodObject<{
14687
14687
  payload: z.ZodObject<{
14688
14688
  metadata: z.ZodObject<{