@sphereon/ssi-sdk-ext.jwt-service 0.24.1-unstable.124 → 0.24.1-unstable.130
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/package.json +10 -10
- package/plugin.schema.json +335 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk-ext.jwt-service",
|
|
3
|
-
"version": "0.24.1-unstable.
|
|
3
|
+
"version": "0.24.1-unstable.130+bf9a4b6",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"generate-plugin-schema": "sphereon dev generate-plugin-schema"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@sphereon/ssi-sdk-ext.did-utils": "0.24.1-unstable.
|
|
19
|
-
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.24.1-unstable.
|
|
20
|
-
"@sphereon/ssi-sdk-ext.key-manager": "0.24.1-unstable.
|
|
21
|
-
"@sphereon/ssi-sdk-ext.key-utils": "0.24.1-unstable.
|
|
22
|
-
"@sphereon/ssi-sdk-ext.x509-utils": "0.24.1-unstable.
|
|
18
|
+
"@sphereon/ssi-sdk-ext.did-utils": "0.24.1-unstable.130+bf9a4b6",
|
|
19
|
+
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.24.1-unstable.130+bf9a4b6",
|
|
20
|
+
"@sphereon/ssi-sdk-ext.key-manager": "0.24.1-unstable.130+bf9a4b6",
|
|
21
|
+
"@sphereon/ssi-sdk-ext.key-utils": "0.24.1-unstable.130+bf9a4b6",
|
|
22
|
+
"@sphereon/ssi-sdk-ext.x509-utils": "0.24.1-unstable.130+bf9a4b6",
|
|
23
23
|
"@sphereon/ssi-sdk.agent-config": "0.29.1-unstable.161",
|
|
24
24
|
"@sphereon/ssi-types": "0.29.1-unstable.161",
|
|
25
25
|
"@veramo/core": "4.2.0",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"uint8arrays": "^3.1.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.24.1-unstable.
|
|
33
|
-
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.24.1-unstable.
|
|
34
|
-
"@sphereon/ssi-sdk-ext.kms-local": "0.24.1-unstable.
|
|
32
|
+
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.24.1-unstable.130+bf9a4b6",
|
|
33
|
+
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.24.1-unstable.130+bf9a4b6",
|
|
34
|
+
"@sphereon/ssi-sdk-ext.kms-local": "0.24.1-unstable.130+bf9a4b6",
|
|
35
35
|
"@sphereon/ssi-sdk.dev": "0.29.1-unstable.161",
|
|
36
36
|
"@veramo/data-store": "4.2.0",
|
|
37
37
|
"@veramo/did-manager": "4.2.0",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"X.509 Certificates",
|
|
67
67
|
"ARF"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "bf9a4b6c1560b76df0f13e031100e37606af1d87"
|
|
70
70
|
}
|
package/plugin.schema.json
CHANGED
|
@@ -444,6 +444,73 @@
|
|
|
444
444
|
"opts"
|
|
445
445
|
]
|
|
446
446
|
},
|
|
447
|
+
{
|
|
448
|
+
"type": "object",
|
|
449
|
+
"properties": {
|
|
450
|
+
"noIssPayloadUpdate": {
|
|
451
|
+
"type": "boolean"
|
|
452
|
+
},
|
|
453
|
+
"noIdentifierInHeader": {
|
|
454
|
+
"type": "boolean"
|
|
455
|
+
},
|
|
456
|
+
"lazyDisabled": {
|
|
457
|
+
"type": "boolean"
|
|
458
|
+
},
|
|
459
|
+
"jwk": {
|
|
460
|
+
"$ref": "#/components/schemas/JWK"
|
|
461
|
+
},
|
|
462
|
+
"jwkThumbprint": {
|
|
463
|
+
"type": "string"
|
|
464
|
+
},
|
|
465
|
+
"kmsKeyRef": {
|
|
466
|
+
"type": "string"
|
|
467
|
+
},
|
|
468
|
+
"method": {
|
|
469
|
+
"$ref": "#/components/schemas/ManagedIdentifierMethod"
|
|
470
|
+
},
|
|
471
|
+
"opts": {
|
|
472
|
+
"$ref": "#/components/schemas/ManagedIdentifierOpts"
|
|
473
|
+
},
|
|
474
|
+
"key": {
|
|
475
|
+
"$ref": "#/components/schemas/IKey"
|
|
476
|
+
},
|
|
477
|
+
"kid": {
|
|
478
|
+
"type": "string"
|
|
479
|
+
},
|
|
480
|
+
"issuer": {
|
|
481
|
+
"type": "string"
|
|
482
|
+
},
|
|
483
|
+
"clientId": {
|
|
484
|
+
"type": "string"
|
|
485
|
+
},
|
|
486
|
+
"clientIdScheme": {
|
|
487
|
+
"anyOf": [
|
|
488
|
+
{
|
|
489
|
+
"$ref": "#/components/schemas/ClientIdScheme"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"type": "string",
|
|
493
|
+
"const": "did"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"type": "string"
|
|
497
|
+
}
|
|
498
|
+
]
|
|
499
|
+
},
|
|
500
|
+
"identifier": {
|
|
501
|
+
"$ref": "#/components/schemas/ManagedIdentifierType"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"required": [
|
|
505
|
+
"identifier",
|
|
506
|
+
"jwk",
|
|
507
|
+
"jwkThumbprint",
|
|
508
|
+
"key",
|
|
509
|
+
"kmsKeyRef",
|
|
510
|
+
"method",
|
|
511
|
+
"opts"
|
|
512
|
+
]
|
|
513
|
+
},
|
|
447
514
|
{
|
|
448
515
|
"type": "object",
|
|
449
516
|
"properties": {
|
|
@@ -768,6 +835,56 @@
|
|
|
768
835
|
"required": [
|
|
769
836
|
"identifier"
|
|
770
837
|
]
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"type": "object",
|
|
841
|
+
"properties": {
|
|
842
|
+
"noIssPayloadUpdate": {
|
|
843
|
+
"type": "boolean"
|
|
844
|
+
},
|
|
845
|
+
"noIdentifierInHeader": {
|
|
846
|
+
"type": "boolean"
|
|
847
|
+
},
|
|
848
|
+
"lazyDisabled": {
|
|
849
|
+
"type": "boolean"
|
|
850
|
+
},
|
|
851
|
+
"method": {
|
|
852
|
+
"type": "string",
|
|
853
|
+
"const": "oid4vci-issuer"
|
|
854
|
+
},
|
|
855
|
+
"identifier": {
|
|
856
|
+
"type": "string"
|
|
857
|
+
},
|
|
858
|
+
"kmsKeyRef": {
|
|
859
|
+
"type": "string"
|
|
860
|
+
},
|
|
861
|
+
"issuer": {
|
|
862
|
+
"type": "string"
|
|
863
|
+
},
|
|
864
|
+
"kid": {
|
|
865
|
+
"type": "string"
|
|
866
|
+
},
|
|
867
|
+
"clientId": {
|
|
868
|
+
"type": "string"
|
|
869
|
+
},
|
|
870
|
+
"clientIdScheme": {
|
|
871
|
+
"anyOf": [
|
|
872
|
+
{
|
|
873
|
+
"$ref": "#/components/schemas/ClientIdScheme"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"type": "string",
|
|
877
|
+
"const": "did"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"type": "string"
|
|
881
|
+
}
|
|
882
|
+
]
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
"required": [
|
|
886
|
+
"identifier"
|
|
887
|
+
]
|
|
771
888
|
}
|
|
772
889
|
]
|
|
773
890
|
},
|
|
@@ -1114,7 +1231,8 @@
|
|
|
1114
1231
|
"x5c",
|
|
1115
1232
|
"kid",
|
|
1116
1233
|
"key",
|
|
1117
|
-
"cose_key"
|
|
1234
|
+
"cose_key",
|
|
1235
|
+
"oid4vci-issuer"
|
|
1118
1236
|
]
|
|
1119
1237
|
},
|
|
1120
1238
|
"ManagedIdentifierOpts": {
|
|
@@ -1389,6 +1507,47 @@
|
|
|
1389
1507
|
"required": [
|
|
1390
1508
|
"identifier"
|
|
1391
1509
|
]
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"type": "object",
|
|
1513
|
+
"properties": {
|
|
1514
|
+
"method": {
|
|
1515
|
+
"type": "string",
|
|
1516
|
+
"const": "oid4vci-issuer"
|
|
1517
|
+
},
|
|
1518
|
+
"identifier": {
|
|
1519
|
+
"type": "string"
|
|
1520
|
+
},
|
|
1521
|
+
"kmsKeyRef": {
|
|
1522
|
+
"type": "string"
|
|
1523
|
+
},
|
|
1524
|
+
"issuer": {
|
|
1525
|
+
"type": "string"
|
|
1526
|
+
},
|
|
1527
|
+
"kid": {
|
|
1528
|
+
"type": "string"
|
|
1529
|
+
},
|
|
1530
|
+
"clientId": {
|
|
1531
|
+
"type": "string"
|
|
1532
|
+
},
|
|
1533
|
+
"clientIdScheme": {
|
|
1534
|
+
"anyOf": [
|
|
1535
|
+
{
|
|
1536
|
+
"$ref": "#/components/schemas/ClientIdScheme"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
"type": "string",
|
|
1540
|
+
"const": "did"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"type": "string"
|
|
1544
|
+
}
|
|
1545
|
+
]
|
|
1546
|
+
}
|
|
1547
|
+
},
|
|
1548
|
+
"required": [
|
|
1549
|
+
"identifier"
|
|
1550
|
+
]
|
|
1392
1551
|
}
|
|
1393
1552
|
]
|
|
1394
1553
|
},
|
|
@@ -2224,6 +2383,73 @@
|
|
|
2224
2383
|
"opts"
|
|
2225
2384
|
]
|
|
2226
2385
|
},
|
|
2386
|
+
{
|
|
2387
|
+
"type": "object",
|
|
2388
|
+
"properties": {
|
|
2389
|
+
"noIssPayloadUpdate": {
|
|
2390
|
+
"type": "boolean"
|
|
2391
|
+
},
|
|
2392
|
+
"noIdentifierInHeader": {
|
|
2393
|
+
"type": "boolean"
|
|
2394
|
+
},
|
|
2395
|
+
"lazyDisabled": {
|
|
2396
|
+
"type": "boolean"
|
|
2397
|
+
},
|
|
2398
|
+
"jwk": {
|
|
2399
|
+
"$ref": "#/components/schemas/JWK"
|
|
2400
|
+
},
|
|
2401
|
+
"jwkThumbprint": {
|
|
2402
|
+
"type": "string"
|
|
2403
|
+
},
|
|
2404
|
+
"kmsKeyRef": {
|
|
2405
|
+
"type": "string"
|
|
2406
|
+
},
|
|
2407
|
+
"method": {
|
|
2408
|
+
"$ref": "#/components/schemas/ManagedIdentifierMethod"
|
|
2409
|
+
},
|
|
2410
|
+
"opts": {
|
|
2411
|
+
"$ref": "#/components/schemas/ManagedIdentifierOpts"
|
|
2412
|
+
},
|
|
2413
|
+
"key": {
|
|
2414
|
+
"$ref": "#/components/schemas/IKey"
|
|
2415
|
+
},
|
|
2416
|
+
"kid": {
|
|
2417
|
+
"type": "string"
|
|
2418
|
+
},
|
|
2419
|
+
"issuer": {
|
|
2420
|
+
"type": "string"
|
|
2421
|
+
},
|
|
2422
|
+
"clientId": {
|
|
2423
|
+
"type": "string"
|
|
2424
|
+
},
|
|
2425
|
+
"clientIdScheme": {
|
|
2426
|
+
"anyOf": [
|
|
2427
|
+
{
|
|
2428
|
+
"$ref": "#/components/schemas/ClientIdScheme"
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"type": "string",
|
|
2432
|
+
"const": "did"
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"type": "string"
|
|
2436
|
+
}
|
|
2437
|
+
]
|
|
2438
|
+
},
|
|
2439
|
+
"identifier": {
|
|
2440
|
+
"$ref": "#/components/schemas/ManagedIdentifierType"
|
|
2441
|
+
}
|
|
2442
|
+
},
|
|
2443
|
+
"required": [
|
|
2444
|
+
"identifier",
|
|
2445
|
+
"jwk",
|
|
2446
|
+
"jwkThumbprint",
|
|
2447
|
+
"key",
|
|
2448
|
+
"kmsKeyRef",
|
|
2449
|
+
"method",
|
|
2450
|
+
"opts"
|
|
2451
|
+
]
|
|
2452
|
+
},
|
|
2227
2453
|
{
|
|
2228
2454
|
"type": "object",
|
|
2229
2455
|
"properties": {
|
|
@@ -2548,6 +2774,56 @@
|
|
|
2548
2774
|
"required": [
|
|
2549
2775
|
"identifier"
|
|
2550
2776
|
]
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
"type": "object",
|
|
2780
|
+
"properties": {
|
|
2781
|
+
"noIssPayloadUpdate": {
|
|
2782
|
+
"type": "boolean"
|
|
2783
|
+
},
|
|
2784
|
+
"noIdentifierInHeader": {
|
|
2785
|
+
"type": "boolean"
|
|
2786
|
+
},
|
|
2787
|
+
"lazyDisabled": {
|
|
2788
|
+
"type": "boolean"
|
|
2789
|
+
},
|
|
2790
|
+
"method": {
|
|
2791
|
+
"type": "string",
|
|
2792
|
+
"const": "oid4vci-issuer"
|
|
2793
|
+
},
|
|
2794
|
+
"identifier": {
|
|
2795
|
+
"type": "string"
|
|
2796
|
+
},
|
|
2797
|
+
"kmsKeyRef": {
|
|
2798
|
+
"type": "string"
|
|
2799
|
+
},
|
|
2800
|
+
"issuer": {
|
|
2801
|
+
"type": "string"
|
|
2802
|
+
},
|
|
2803
|
+
"kid": {
|
|
2804
|
+
"type": "string"
|
|
2805
|
+
},
|
|
2806
|
+
"clientId": {
|
|
2807
|
+
"type": "string"
|
|
2808
|
+
},
|
|
2809
|
+
"clientIdScheme": {
|
|
2810
|
+
"anyOf": [
|
|
2811
|
+
{
|
|
2812
|
+
"$ref": "#/components/schemas/ClientIdScheme"
|
|
2813
|
+
},
|
|
2814
|
+
{
|
|
2815
|
+
"type": "string",
|
|
2816
|
+
"const": "did"
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
"type": "string"
|
|
2820
|
+
}
|
|
2821
|
+
]
|
|
2822
|
+
}
|
|
2823
|
+
},
|
|
2824
|
+
"required": [
|
|
2825
|
+
"identifier"
|
|
2826
|
+
]
|
|
2551
2827
|
}
|
|
2552
2828
|
]
|
|
2553
2829
|
},
|
|
@@ -3105,6 +3381,64 @@
|
|
|
3105
3381
|
"opts"
|
|
3106
3382
|
]
|
|
3107
3383
|
},
|
|
3384
|
+
{
|
|
3385
|
+
"type": "object",
|
|
3386
|
+
"properties": {
|
|
3387
|
+
"jwk": {
|
|
3388
|
+
"$ref": "#/components/schemas/JWK"
|
|
3389
|
+
},
|
|
3390
|
+
"jwkThumbprint": {
|
|
3391
|
+
"type": "string"
|
|
3392
|
+
},
|
|
3393
|
+
"kmsKeyRef": {
|
|
3394
|
+
"type": "string"
|
|
3395
|
+
},
|
|
3396
|
+
"method": {
|
|
3397
|
+
"$ref": "#/components/schemas/ManagedIdentifierMethod"
|
|
3398
|
+
},
|
|
3399
|
+
"opts": {
|
|
3400
|
+
"$ref": "#/components/schemas/ManagedIdentifierOpts"
|
|
3401
|
+
},
|
|
3402
|
+
"key": {
|
|
3403
|
+
"$ref": "#/components/schemas/IKey"
|
|
3404
|
+
},
|
|
3405
|
+
"kid": {
|
|
3406
|
+
"type": "string"
|
|
3407
|
+
},
|
|
3408
|
+
"issuer": {
|
|
3409
|
+
"type": "string"
|
|
3410
|
+
},
|
|
3411
|
+
"clientId": {
|
|
3412
|
+
"type": "string"
|
|
3413
|
+
},
|
|
3414
|
+
"clientIdScheme": {
|
|
3415
|
+
"anyOf": [
|
|
3416
|
+
{
|
|
3417
|
+
"$ref": "#/components/schemas/ClientIdScheme"
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
"type": "string",
|
|
3421
|
+
"const": "did"
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"type": "string"
|
|
3425
|
+
}
|
|
3426
|
+
]
|
|
3427
|
+
},
|
|
3428
|
+
"identifier": {
|
|
3429
|
+
"$ref": "#/components/schemas/ManagedIdentifierType"
|
|
3430
|
+
}
|
|
3431
|
+
},
|
|
3432
|
+
"required": [
|
|
3433
|
+
"identifier",
|
|
3434
|
+
"jwk",
|
|
3435
|
+
"jwkThumbprint",
|
|
3436
|
+
"key",
|
|
3437
|
+
"kmsKeyRef",
|
|
3438
|
+
"method",
|
|
3439
|
+
"opts"
|
|
3440
|
+
]
|
|
3441
|
+
},
|
|
3108
3442
|
{
|
|
3109
3443
|
"type": "object",
|
|
3110
3444
|
"properties": {
|