@sphereon/ssi-sdk.pd-manager 0.33.1-feature.jose.vcdm.62 → 0.33.1-feature.jose.vcdm.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +30 -123
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +30 -123
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/plugin.schema.json +31 -124
package/plugin.schema.json
CHANGED
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
"type": "string"
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
|
-
"required": [
|
|
13
|
-
"itemId"
|
|
14
|
-
],
|
|
12
|
+
"required": ["itemId"],
|
|
15
13
|
"additionalProperties": false
|
|
16
14
|
},
|
|
17
15
|
"DeleteDefinitionItemsArgs": {
|
|
@@ -86,9 +84,7 @@
|
|
|
86
84
|
"type": "string"
|
|
87
85
|
}
|
|
88
86
|
},
|
|
89
|
-
"required": [
|
|
90
|
-
"itemId"
|
|
91
|
-
],
|
|
87
|
+
"required": ["itemId"],
|
|
92
88
|
"additionalProperties": false
|
|
93
89
|
},
|
|
94
90
|
"PresentationDefinitionItem": {
|
|
@@ -127,14 +123,7 @@
|
|
|
127
123
|
"format": "date-time"
|
|
128
124
|
}
|
|
129
125
|
},
|
|
130
|
-
"required": [
|
|
131
|
-
"id",
|
|
132
|
-
"definitionId",
|
|
133
|
-
"version",
|
|
134
|
-
"definitionPayload",
|
|
135
|
-
"createdAt",
|
|
136
|
-
"lastUpdatedAt"
|
|
137
|
-
],
|
|
126
|
+
"required": ["id", "definitionId", "version", "definitionPayload", "createdAt", "lastUpdatedAt"],
|
|
138
127
|
"additionalProperties": false
|
|
139
128
|
},
|
|
140
129
|
"IPresentationDefinition": {
|
|
@@ -175,10 +164,7 @@
|
|
|
175
164
|
}
|
|
176
165
|
}
|
|
177
166
|
},
|
|
178
|
-
"required": [
|
|
179
|
-
"id",
|
|
180
|
-
"input_descriptors"
|
|
181
|
-
],
|
|
167
|
+
"required": ["id", "input_descriptors"],
|
|
182
168
|
"additionalProperties": false
|
|
183
169
|
},
|
|
184
170
|
"Format": {
|
|
@@ -236,9 +222,7 @@
|
|
|
236
222
|
}
|
|
237
223
|
}
|
|
238
224
|
},
|
|
239
|
-
"required": [
|
|
240
|
-
"alg"
|
|
241
|
-
],
|
|
225
|
+
"required": ["alg"],
|
|
242
226
|
"additionalProperties": false
|
|
243
227
|
},
|
|
244
228
|
"LdpObject": {
|
|
@@ -251,9 +235,7 @@
|
|
|
251
235
|
}
|
|
252
236
|
}
|
|
253
237
|
},
|
|
254
|
-
"required": [
|
|
255
|
-
"proof_type"
|
|
256
|
-
],
|
|
238
|
+
"required": ["proof_type"],
|
|
257
239
|
"additionalProperties": false
|
|
258
240
|
},
|
|
259
241
|
"DiObject": {
|
|
@@ -272,10 +254,7 @@
|
|
|
272
254
|
}
|
|
273
255
|
}
|
|
274
256
|
},
|
|
275
|
-
"required": [
|
|
276
|
-
"proof_type",
|
|
277
|
-
"cryptosuite"
|
|
278
|
-
],
|
|
257
|
+
"required": ["proof_type", "cryptosuite"],
|
|
279
258
|
"additionalProperties": false
|
|
280
259
|
},
|
|
281
260
|
"SdJwtObject": {
|
|
@@ -306,9 +285,7 @@
|
|
|
306
285
|
}
|
|
307
286
|
}
|
|
308
287
|
},
|
|
309
|
-
"required": [
|
|
310
|
-
"alg"
|
|
311
|
-
],
|
|
288
|
+
"required": ["alg"],
|
|
312
289
|
"additionalProperties": false
|
|
313
290
|
},
|
|
314
291
|
"SubmissionRequirement": {
|
|
@@ -342,17 +319,12 @@
|
|
|
342
319
|
}
|
|
343
320
|
}
|
|
344
321
|
},
|
|
345
|
-
"required": [
|
|
346
|
-
"rule"
|
|
347
|
-
],
|
|
322
|
+
"required": ["rule"],
|
|
348
323
|
"additionalProperties": false
|
|
349
324
|
},
|
|
350
325
|
"Rules": {
|
|
351
326
|
"type": "string",
|
|
352
|
-
"enum": [
|
|
353
|
-
"all",
|
|
354
|
-
"pick"
|
|
355
|
-
]
|
|
327
|
+
"enum": ["all", "pick"]
|
|
356
328
|
},
|
|
357
329
|
"InputDescriptorV1": {
|
|
358
330
|
"type": "object",
|
|
@@ -388,10 +360,7 @@
|
|
|
388
360
|
"$ref": "#/components/schemas/ConstraintsV1"
|
|
389
361
|
}
|
|
390
362
|
},
|
|
391
|
-
"required": [
|
|
392
|
-
"id",
|
|
393
|
-
"schema"
|
|
394
|
-
],
|
|
363
|
+
"required": ["id", "schema"],
|
|
395
364
|
"additionalProperties": false
|
|
396
365
|
},
|
|
397
366
|
"Schema": {
|
|
@@ -404,9 +373,7 @@
|
|
|
404
373
|
"type": "boolean"
|
|
405
374
|
}
|
|
406
375
|
},
|
|
407
|
-
"required": [
|
|
408
|
-
"uri"
|
|
409
|
-
],
|
|
376
|
+
"required": ["uri"],
|
|
410
377
|
"additionalProperties": false
|
|
411
378
|
},
|
|
412
379
|
"Issuance": {
|
|
@@ -453,10 +420,7 @@
|
|
|
453
420
|
},
|
|
454
421
|
"Optionality": {
|
|
455
422
|
"type": "string",
|
|
456
|
-
"enum": [
|
|
457
|
-
"required",
|
|
458
|
-
"preferred"
|
|
459
|
-
]
|
|
423
|
+
"enum": ["required", "preferred"]
|
|
460
424
|
},
|
|
461
425
|
"Statuses": {
|
|
462
426
|
"type": "object",
|
|
@@ -484,11 +448,7 @@
|
|
|
484
448
|
},
|
|
485
449
|
"Directives": {
|
|
486
450
|
"type": "string",
|
|
487
|
-
"enum": [
|
|
488
|
-
"required",
|
|
489
|
-
"allowed",
|
|
490
|
-
"disallowed"
|
|
491
|
-
]
|
|
451
|
+
"enum": ["required", "allowed", "disallowed"]
|
|
492
452
|
},
|
|
493
453
|
"FieldV1": {
|
|
494
454
|
"type": "object",
|
|
@@ -512,9 +472,7 @@
|
|
|
512
472
|
"$ref": "#/components/schemas/Optionality"
|
|
513
473
|
}
|
|
514
474
|
},
|
|
515
|
-
"required": [
|
|
516
|
-
"path"
|
|
517
|
-
],
|
|
475
|
+
"required": ["path"],
|
|
518
476
|
"additionalProperties": false
|
|
519
477
|
},
|
|
520
478
|
"FilterV1": {
|
|
@@ -563,17 +521,10 @@
|
|
|
563
521
|
"additionalProperties": false
|
|
564
522
|
},
|
|
565
523
|
"OneOfNumberStringBoolean": {
|
|
566
|
-
"type": [
|
|
567
|
-
"boolean",
|
|
568
|
-
"number",
|
|
569
|
-
"string"
|
|
570
|
-
]
|
|
524
|
+
"type": ["boolean", "number", "string"]
|
|
571
525
|
},
|
|
572
526
|
"OneOfNumberString": {
|
|
573
|
-
"type": [
|
|
574
|
-
"number",
|
|
575
|
-
"string"
|
|
576
|
-
]
|
|
527
|
+
"type": ["number", "string"]
|
|
577
528
|
},
|
|
578
529
|
"HolderSubject": {
|
|
579
530
|
"type": "object",
|
|
@@ -588,10 +539,7 @@
|
|
|
588
539
|
"$ref": "#/components/schemas/Optionality"
|
|
589
540
|
}
|
|
590
541
|
},
|
|
591
|
-
"required": [
|
|
592
|
-
"field_id",
|
|
593
|
-
"directive"
|
|
594
|
-
],
|
|
542
|
+
"required": ["field_id", "directive"],
|
|
595
543
|
"additionalProperties": false
|
|
596
544
|
},
|
|
597
545
|
"PresentationDefinitionV2": {
|
|
@@ -625,10 +573,7 @@
|
|
|
625
573
|
"type": "object"
|
|
626
574
|
}
|
|
627
575
|
},
|
|
628
|
-
"required": [
|
|
629
|
-
"id",
|
|
630
|
-
"input_descriptors"
|
|
631
|
-
],
|
|
576
|
+
"required": ["id", "input_descriptors"],
|
|
632
577
|
"additionalProperties": false
|
|
633
578
|
},
|
|
634
579
|
"InputDescriptorV2": {
|
|
@@ -662,10 +607,7 @@
|
|
|
662
607
|
"$ref": "#/components/schemas/ConstraintsV2"
|
|
663
608
|
}
|
|
664
609
|
},
|
|
665
|
-
"required": [
|
|
666
|
-
"id",
|
|
667
|
-
"constraints"
|
|
668
|
-
],
|
|
610
|
+
"required": ["id", "constraints"],
|
|
669
611
|
"additionalProperties": false
|
|
670
612
|
},
|
|
671
613
|
"ConstraintsV2": {
|
|
@@ -732,9 +674,7 @@
|
|
|
732
674
|
"type": "boolean"
|
|
733
675
|
}
|
|
734
676
|
},
|
|
735
|
-
"required": [
|
|
736
|
-
"path"
|
|
737
|
-
],
|
|
677
|
+
"required": ["path"],
|
|
738
678
|
"additionalProperties": false
|
|
739
679
|
},
|
|
740
680
|
"FilterV2": {
|
|
@@ -873,9 +813,7 @@
|
|
|
873
813
|
}
|
|
874
814
|
}
|
|
875
815
|
},
|
|
876
|
-
"required": [
|
|
877
|
-
"credentials"
|
|
878
|
-
],
|
|
816
|
+
"required": ["credentials"],
|
|
879
817
|
"additionalProperties": false
|
|
880
818
|
},
|
|
881
819
|
"DcqlCredentialQuery": {
|
|
@@ -903,11 +841,7 @@
|
|
|
903
841
|
"$ref": "#/components/schemas/Record<string,any>"
|
|
904
842
|
}
|
|
905
843
|
},
|
|
906
|
-
"required": [
|
|
907
|
-
"id",
|
|
908
|
-
"format",
|
|
909
|
-
"claims"
|
|
910
|
-
],
|
|
844
|
+
"required": ["id", "format", "claims"],
|
|
911
845
|
"additionalProperties": false
|
|
912
846
|
},
|
|
913
847
|
"DcqlClaim": {
|
|
@@ -923,10 +857,7 @@
|
|
|
923
857
|
"$ref": "#/components/schemas/DcqlFilter"
|
|
924
858
|
}
|
|
925
859
|
},
|
|
926
|
-
"required": [
|
|
927
|
-
"namespace",
|
|
928
|
-
"claim_name"
|
|
929
|
-
],
|
|
860
|
+
"required": ["namespace", "claim_name"],
|
|
930
861
|
"additionalProperties": false
|
|
931
862
|
},
|
|
932
863
|
"DcqlFilter": {
|
|
@@ -934,11 +865,7 @@
|
|
|
934
865
|
"properties": {
|
|
935
866
|
"type": {
|
|
936
867
|
"type": "string",
|
|
937
|
-
"enum": [
|
|
938
|
-
"string",
|
|
939
|
-
"number",
|
|
940
|
-
"boolean"
|
|
941
|
-
]
|
|
868
|
+
"enum": ["string", "number", "boolean"]
|
|
942
869
|
},
|
|
943
870
|
"pattern": {
|
|
944
871
|
"type": "string"
|
|
@@ -950,9 +877,7 @@
|
|
|
950
877
|
"type": "number"
|
|
951
878
|
}
|
|
952
879
|
},
|
|
953
|
-
"required": [
|
|
954
|
-
"type"
|
|
955
|
-
],
|
|
880
|
+
"required": ["type"],
|
|
956
881
|
"additionalProperties": false
|
|
957
882
|
},
|
|
958
883
|
"Record<string,any>": {
|
|
@@ -974,9 +899,7 @@
|
|
|
974
899
|
"$ref": "#/components/schemas/PersistOptions"
|
|
975
900
|
}
|
|
976
901
|
},
|
|
977
|
-
"required": [
|
|
978
|
-
"definitionItem"
|
|
979
|
-
],
|
|
902
|
+
"required": ["definitionItem"],
|
|
980
903
|
"additionalProperties": false
|
|
981
904
|
},
|
|
982
905
|
"PersistPresentationDefinitionItem": {
|
|
@@ -1008,9 +931,7 @@
|
|
|
1008
931
|
"$ref": "#/components/schemas/DcqlQueryREST"
|
|
1009
932
|
}
|
|
1010
933
|
},
|
|
1011
|
-
"required": [
|
|
1012
|
-
"definitionPayload"
|
|
1013
|
-
]
|
|
934
|
+
"required": ["definitionPayload"]
|
|
1014
935
|
},
|
|
1015
936
|
"PersistOptions": {
|
|
1016
937
|
"type": "object",
|
|
@@ -1026,25 +947,11 @@
|
|
|
1026
947
|
},
|
|
1027
948
|
"VersionControlMode": {
|
|
1028
949
|
"type": "string",
|
|
1029
|
-
"enum": [
|
|
1030
|
-
"AutoIncrement",
|
|
1031
|
-
"Manual",
|
|
1032
|
-
"Overwrite",
|
|
1033
|
-
"OverwriteLatest"
|
|
1034
|
-
]
|
|
950
|
+
"enum": ["AutoIncrement", "Manual", "Overwrite", "OverwriteLatest"]
|
|
1035
951
|
},
|
|
1036
952
|
"ReleaseType": {
|
|
1037
953
|
"type": "string",
|
|
1038
|
-
"enum": [
|
|
1039
|
-
"major",
|
|
1040
|
-
"premajor",
|
|
1041
|
-
"minor",
|
|
1042
|
-
"preminor",
|
|
1043
|
-
"patch",
|
|
1044
|
-
"prepatch",
|
|
1045
|
-
"prerelease",
|
|
1046
|
-
"release"
|
|
1047
|
-
]
|
|
954
|
+
"enum": ["major", "premajor", "minor", "preminor", "patch", "prepatch", "prerelease", "release"]
|
|
1048
955
|
}
|
|
1049
956
|
},
|
|
1050
957
|
"methods": {
|
|
@@ -1117,4 +1024,4 @@
|
|
|
1117
1024
|
}
|
|
1118
1025
|
}
|
|
1119
1026
|
}
|
|
1120
|
-
}
|
|
1027
|
+
}
|