@sphereon/ssi-sdk.issuance-branding 0.32.1-next.54 → 0.33.1-feature.jose.vcdm.55
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 +1623 -0
- package/dist/index.cjs.map +1 -0
- package/dist/{ssi-sdk.issuance-branding.d.ts → index.d.cts} +152 -188
- package/dist/index.d.ts +148 -4
- package/dist/index.js +1590 -24
- package/dist/index.js.map +1 -1
- package/package.json +24 -13
- package/plugin.schema.json +261 -160
- package/dist/agent/IssuanceBranding.d.ts +0 -56
- package/dist/agent/IssuanceBranding.d.ts.map +0 -1
- package/dist/agent/IssuanceBranding.js +0 -288
- package/dist/agent/IssuanceBranding.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/tsdoc-metadata.json +0 -11
- package/dist/types/IIssuanceBranding.d.ts +0 -92
- package/dist/types/IIssuanceBranding.d.ts.map +0 -1
- package/dist/types/IIssuanceBranding.js +0 -3
- package/dist/types/IIssuanceBranding.js.map +0 -1
package/plugin.schema.json
CHANGED
|
@@ -22,14 +22,21 @@
|
|
|
22
22
|
"issuerCorrelationId",
|
|
23
23
|
"vcHash",
|
|
24
24
|
"localeBranding"
|
|
25
|
-
]
|
|
25
|
+
],
|
|
26
|
+
"additionalProperties": false
|
|
26
27
|
},
|
|
27
28
|
"IBasicCredentialLocaleBranding": {
|
|
28
29
|
"type": "object",
|
|
29
30
|
"properties": {
|
|
30
|
-
"alias": {
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
"alias": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
},
|
|
34
|
+
"locale": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"description": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
33
40
|
"logo": {
|
|
34
41
|
"$ref": "#/components/schemas/IBasicImageAttributes"
|
|
35
42
|
},
|
|
@@ -46,11 +53,7 @@
|
|
|
46
53
|
}
|
|
47
54
|
}
|
|
48
55
|
},
|
|
49
|
-
"
|
|
50
|
-
"alias",
|
|
51
|
-
"description",
|
|
52
|
-
"locale"
|
|
53
|
-
]
|
|
56
|
+
"additionalProperties": false
|
|
54
57
|
},
|
|
55
58
|
"IBasicImageAttributes": {
|
|
56
59
|
"type": "object",
|
|
@@ -70,10 +73,12 @@
|
|
|
70
73
|
"dimensions": {
|
|
71
74
|
"$ref": "#/components/schemas/IBasicImageDimensions"
|
|
72
75
|
}
|
|
73
|
-
}
|
|
76
|
+
},
|
|
77
|
+
"additionalProperties": false
|
|
74
78
|
},
|
|
75
79
|
"IBasicImageDimensions": {
|
|
76
80
|
"type": "object",
|
|
81
|
+
"additionalProperties": false,
|
|
77
82
|
"properties": {
|
|
78
83
|
"width": {
|
|
79
84
|
"type": "number"
|
|
@@ -96,10 +101,12 @@
|
|
|
96
101
|
"image": {
|
|
97
102
|
"$ref": "#/components/schemas/IBasicImageAttributes"
|
|
98
103
|
}
|
|
99
|
-
}
|
|
104
|
+
},
|
|
105
|
+
"additionalProperties": false
|
|
100
106
|
},
|
|
101
107
|
"IBasicTextAttributes": {
|
|
102
108
|
"type": "object",
|
|
109
|
+
"additionalProperties": false,
|
|
103
110
|
"properties": {
|
|
104
111
|
"color": {
|
|
105
112
|
"type": "string"
|
|
@@ -108,6 +115,7 @@
|
|
|
108
115
|
},
|
|
109
116
|
"IBasicCredentialClaim": {
|
|
110
117
|
"type": "object",
|
|
118
|
+
"additionalProperties": false,
|
|
111
119
|
"properties": {
|
|
112
120
|
"key": {
|
|
113
121
|
"type": "string"
|
|
@@ -155,7 +163,8 @@
|
|
|
155
163
|
"localeBranding",
|
|
156
164
|
"createdAt",
|
|
157
165
|
"lastUpdatedAt"
|
|
158
|
-
]
|
|
166
|
+
],
|
|
167
|
+
"additionalProperties": false
|
|
159
168
|
},
|
|
160
169
|
"ICredentialLocaleBranding": {
|
|
161
170
|
"type": "object",
|
|
@@ -196,6 +205,7 @@
|
|
|
196
205
|
}
|
|
197
206
|
}
|
|
198
207
|
},
|
|
208
|
+
"additionalProperties": false,
|
|
199
209
|
"required": [
|
|
200
210
|
"createdAt",
|
|
201
211
|
"id",
|
|
@@ -226,7 +236,8 @@
|
|
|
226
236
|
},
|
|
227
237
|
"required": [
|
|
228
238
|
"id"
|
|
229
|
-
]
|
|
239
|
+
],
|
|
240
|
+
"additionalProperties": false
|
|
230
241
|
},
|
|
231
242
|
"IImageDimensions": {
|
|
232
243
|
"type": "object",
|
|
@@ -245,7 +256,8 @@
|
|
|
245
256
|
"id",
|
|
246
257
|
"width",
|
|
247
258
|
"height"
|
|
248
|
-
]
|
|
259
|
+
],
|
|
260
|
+
"additionalProperties": false
|
|
249
261
|
},
|
|
250
262
|
"IBackgroundAttributes": {
|
|
251
263
|
"type": "object",
|
|
@@ -262,7 +274,8 @@
|
|
|
262
274
|
},
|
|
263
275
|
"required": [
|
|
264
276
|
"id"
|
|
265
|
-
]
|
|
277
|
+
],
|
|
278
|
+
"additionalProperties": false
|
|
266
279
|
},
|
|
267
280
|
"ITextAttributes": {
|
|
268
281
|
"type": "object",
|
|
@@ -276,7 +289,8 @@
|
|
|
276
289
|
},
|
|
277
290
|
"required": [
|
|
278
291
|
"id"
|
|
279
|
-
]
|
|
292
|
+
],
|
|
293
|
+
"additionalProperties": false
|
|
280
294
|
},
|
|
281
295
|
"ICredentialClaim": {
|
|
282
296
|
"type": "object",
|
|
@@ -295,7 +309,8 @@
|
|
|
295
309
|
"id",
|
|
296
310
|
"key",
|
|
297
311
|
"name"
|
|
298
|
-
]
|
|
312
|
+
],
|
|
313
|
+
"additionalProperties": false
|
|
299
314
|
},
|
|
300
315
|
"IAddCredentialLocaleBrandingArgs": {
|
|
301
316
|
"type": "object",
|
|
@@ -313,7 +328,8 @@
|
|
|
313
328
|
"required": [
|
|
314
329
|
"credentialBrandingId",
|
|
315
330
|
"localeBranding"
|
|
316
|
-
]
|
|
331
|
+
],
|
|
332
|
+
"additionalProperties": false
|
|
317
333
|
},
|
|
318
334
|
"IAddIssuerBrandingArgs": {
|
|
319
335
|
"type": "object",
|
|
@@ -331,7 +347,8 @@
|
|
|
331
347
|
"required": [
|
|
332
348
|
"issuerCorrelationId",
|
|
333
349
|
"localeBranding"
|
|
334
|
-
]
|
|
350
|
+
],
|
|
351
|
+
"additionalProperties": false
|
|
335
352
|
},
|
|
336
353
|
"IBasicIssuerLocaleBranding": {
|
|
337
354
|
"type": "object",
|
|
@@ -351,9 +368,15 @@
|
|
|
351
368
|
"type": "string"
|
|
352
369
|
}
|
|
353
370
|
},
|
|
354
|
-
"alias": {
|
|
355
|
-
|
|
356
|
-
|
|
371
|
+
"alias": {
|
|
372
|
+
"type": "string"
|
|
373
|
+
},
|
|
374
|
+
"locale": {
|
|
375
|
+
"type": "string"
|
|
376
|
+
},
|
|
377
|
+
"description": {
|
|
378
|
+
"type": "string"
|
|
379
|
+
},
|
|
357
380
|
"logo": {
|
|
358
381
|
"$ref": "#/components/schemas/IBasicImageAttributes"
|
|
359
382
|
},
|
|
@@ -364,11 +387,7 @@
|
|
|
364
387
|
"$ref": "#/components/schemas/IBasicTextAttributes"
|
|
365
388
|
}
|
|
366
389
|
},
|
|
367
|
-
"
|
|
368
|
-
"alias",
|
|
369
|
-
"description",
|
|
370
|
-
"locale"
|
|
371
|
-
]
|
|
390
|
+
"additionalProperties": false
|
|
372
391
|
},
|
|
373
392
|
"IIssuerBranding": {
|
|
374
393
|
"type": "object",
|
|
@@ -400,7 +419,8 @@
|
|
|
400
419
|
"localeBranding",
|
|
401
420
|
"createdAt",
|
|
402
421
|
"lastUpdatedAt"
|
|
403
|
-
]
|
|
422
|
+
],
|
|
423
|
+
"additionalProperties": false
|
|
404
424
|
},
|
|
405
425
|
"IIssuerLocaleBranding": {
|
|
406
426
|
"type": "object",
|
|
@@ -450,6 +470,7 @@
|
|
|
450
470
|
}
|
|
451
471
|
}
|
|
452
472
|
},
|
|
473
|
+
"additionalProperties": false,
|
|
453
474
|
"required": [
|
|
454
475
|
"createdAt",
|
|
455
476
|
"id",
|
|
@@ -472,7 +493,8 @@
|
|
|
472
493
|
"required": [
|
|
473
494
|
"issuerBrandingId",
|
|
474
495
|
"localeBranding"
|
|
475
|
-
]
|
|
496
|
+
],
|
|
497
|
+
"additionalProperties": false
|
|
476
498
|
},
|
|
477
499
|
"ICredentialBrandingFromArgs": {
|
|
478
500
|
"type": "object",
|
|
@@ -483,7 +505,8 @@
|
|
|
483
505
|
},
|
|
484
506
|
"required": [
|
|
485
507
|
"localeBranding"
|
|
486
|
-
]
|
|
508
|
+
],
|
|
509
|
+
"additionalProperties": false
|
|
487
510
|
},
|
|
488
511
|
"IGetCredentialBrandingArgs": {
|
|
489
512
|
"type": "object",
|
|
@@ -491,7 +514,8 @@
|
|
|
491
514
|
"filter": {
|
|
492
515
|
"$ref": "#/components/schemas/FindCredentialBrandingArgs"
|
|
493
516
|
}
|
|
494
|
-
}
|
|
517
|
+
},
|
|
518
|
+
"additionalProperties": false
|
|
495
519
|
},
|
|
496
520
|
"FindCredentialBrandingArgs": {
|
|
497
521
|
"type": "array",
|
|
@@ -501,6 +525,7 @@
|
|
|
501
525
|
},
|
|
502
526
|
"ICredentialBrandingFilter": {
|
|
503
527
|
"type": "object",
|
|
528
|
+
"additionalProperties": false,
|
|
504
529
|
"properties": {
|
|
505
530
|
"id": {
|
|
506
531
|
"type": "string"
|
|
@@ -527,12 +552,26 @@
|
|
|
527
552
|
"IPartialCredentialLocaleBranding": {
|
|
528
553
|
"type": "object",
|
|
529
554
|
"properties": {
|
|
530
|
-
"id": {
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
"
|
|
534
|
-
|
|
535
|
-
|
|
555
|
+
"id": {
|
|
556
|
+
"type": "string"
|
|
557
|
+
},
|
|
558
|
+
"alias": {
|
|
559
|
+
"type": "string"
|
|
560
|
+
},
|
|
561
|
+
"locale": {
|
|
562
|
+
"type": "string"
|
|
563
|
+
},
|
|
564
|
+
"description": {
|
|
565
|
+
"type": "string"
|
|
566
|
+
},
|
|
567
|
+
"createdAt": {
|
|
568
|
+
"type": "string",
|
|
569
|
+
"format": "date-time"
|
|
570
|
+
},
|
|
571
|
+
"lastUpdatedAt": {
|
|
572
|
+
"type": "string",
|
|
573
|
+
"format": "date-time"
|
|
574
|
+
},
|
|
536
575
|
"logo": {
|
|
537
576
|
"$ref": "#/components/schemas/IPartialImageAttributes"
|
|
538
577
|
},
|
|
@@ -545,7 +584,8 @@
|
|
|
545
584
|
"claims": {
|
|
546
585
|
"$ref": "#/components/schemas/IPartialCredentialClaim"
|
|
547
586
|
}
|
|
548
|
-
}
|
|
587
|
+
},
|
|
588
|
+
"additionalProperties": false
|
|
549
589
|
},
|
|
550
590
|
"IPartialImageAttributes": {
|
|
551
591
|
"type": "object",
|
|
@@ -568,10 +608,12 @@
|
|
|
568
608
|
"dimensions": {
|
|
569
609
|
"$ref": "#/components/schemas/IPartialImageDimensions"
|
|
570
610
|
}
|
|
571
|
-
}
|
|
611
|
+
},
|
|
612
|
+
"additionalProperties": false
|
|
572
613
|
},
|
|
573
614
|
"IPartialImageDimensions": {
|
|
574
615
|
"type": "object",
|
|
616
|
+
"additionalProperties": false,
|
|
575
617
|
"properties": {
|
|
576
618
|
"id": {
|
|
577
619
|
"type": "string"
|
|
@@ -596,10 +638,12 @@
|
|
|
596
638
|
"image": {
|
|
597
639
|
"$ref": "#/components/schemas/IPartialImageAttributes"
|
|
598
640
|
}
|
|
599
|
-
}
|
|
641
|
+
},
|
|
642
|
+
"additionalProperties": false
|
|
600
643
|
},
|
|
601
644
|
"IPartialTextAttributes": {
|
|
602
645
|
"type": "object",
|
|
646
|
+
"additionalProperties": false,
|
|
603
647
|
"properties": {
|
|
604
648
|
"id": {
|
|
605
649
|
"type": "string"
|
|
@@ -611,6 +655,7 @@
|
|
|
611
655
|
},
|
|
612
656
|
"IPartialCredentialClaim": {
|
|
613
657
|
"type": "object",
|
|
658
|
+
"additionalProperties": false,
|
|
614
659
|
"properties": {
|
|
615
660
|
"id": {
|
|
616
661
|
"type": "string"
|
|
@@ -629,7 +674,8 @@
|
|
|
629
674
|
"filter": {
|
|
630
675
|
"$ref": "#/components/schemas/FindCredentialLocaleBrandingArgs"
|
|
631
676
|
}
|
|
632
|
-
}
|
|
677
|
+
},
|
|
678
|
+
"additionalProperties": false
|
|
633
679
|
},
|
|
634
680
|
"FindCredentialLocaleBrandingArgs": {
|
|
635
681
|
"type": "array",
|
|
@@ -640,12 +686,26 @@
|
|
|
640
686
|
"ICredentialLocaleBrandingFilter": {
|
|
641
687
|
"type": "object",
|
|
642
688
|
"properties": {
|
|
643
|
-
"id": {
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
"
|
|
647
|
-
|
|
648
|
-
|
|
689
|
+
"id": {
|
|
690
|
+
"type": "string"
|
|
691
|
+
},
|
|
692
|
+
"alias": {
|
|
693
|
+
"type": "string"
|
|
694
|
+
},
|
|
695
|
+
"locale": {
|
|
696
|
+
"type": "string"
|
|
697
|
+
},
|
|
698
|
+
"description": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
"createdAt": {
|
|
702
|
+
"type": "string",
|
|
703
|
+
"format": "date-time"
|
|
704
|
+
},
|
|
705
|
+
"lastUpdatedAt": {
|
|
706
|
+
"type": "string",
|
|
707
|
+
"format": "date-time"
|
|
708
|
+
},
|
|
649
709
|
"logo": {
|
|
650
710
|
"$ref": "#/components/schemas/IPartialImageAttributes"
|
|
651
711
|
},
|
|
@@ -661,7 +721,8 @@
|
|
|
661
721
|
"credentialBranding": {
|
|
662
722
|
"$ref": "#/components/schemas/IPartialCredentialBranding"
|
|
663
723
|
}
|
|
664
|
-
}
|
|
724
|
+
},
|
|
725
|
+
"additionalProperties": false
|
|
665
726
|
},
|
|
666
727
|
"IPartialCredentialBranding": {
|
|
667
728
|
"type": "object",
|
|
@@ -686,7 +747,8 @@
|
|
|
686
747
|
"localeBranding": {
|
|
687
748
|
"$ref": "#/components/schemas/IPartialCredentialLocaleBranding"
|
|
688
749
|
}
|
|
689
|
-
}
|
|
750
|
+
},
|
|
751
|
+
"additionalProperties": false
|
|
690
752
|
},
|
|
691
753
|
"IGetIssuerBrandingArgs": {
|
|
692
754
|
"type": "object",
|
|
@@ -694,7 +756,8 @@
|
|
|
694
756
|
"filter": {
|
|
695
757
|
"$ref": "#/components/schemas/FindIssuerBrandingArgs"
|
|
696
758
|
}
|
|
697
|
-
}
|
|
759
|
+
},
|
|
760
|
+
"additionalProperties": false
|
|
698
761
|
},
|
|
699
762
|
"FindIssuerBrandingArgs": {
|
|
700
763
|
"type": "array",
|
|
@@ -704,6 +767,7 @@
|
|
|
704
767
|
},
|
|
705
768
|
"IIssuerBrandingFilter": {
|
|
706
769
|
"type": "object",
|
|
770
|
+
"additionalProperties": false,
|
|
707
771
|
"properties": {
|
|
708
772
|
"id": {
|
|
709
773
|
"type": "string"
|
|
@@ -736,12 +800,26 @@
|
|
|
736
800
|
"policyUri": {
|
|
737
801
|
"type": "string"
|
|
738
802
|
},
|
|
739
|
-
"id": {
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
"
|
|
743
|
-
|
|
744
|
-
|
|
803
|
+
"id": {
|
|
804
|
+
"type": "string"
|
|
805
|
+
},
|
|
806
|
+
"alias": {
|
|
807
|
+
"type": "string"
|
|
808
|
+
},
|
|
809
|
+
"locale": {
|
|
810
|
+
"type": "string"
|
|
811
|
+
},
|
|
812
|
+
"description": {
|
|
813
|
+
"type": "string"
|
|
814
|
+
},
|
|
815
|
+
"createdAt": {
|
|
816
|
+
"type": "string",
|
|
817
|
+
"format": "date-time"
|
|
818
|
+
},
|
|
819
|
+
"lastUpdatedAt": {
|
|
820
|
+
"type": "string",
|
|
821
|
+
"format": "date-time"
|
|
822
|
+
},
|
|
745
823
|
"logo": {
|
|
746
824
|
"$ref": "#/components/schemas/IPartialImageAttributes"
|
|
747
825
|
},
|
|
@@ -754,7 +832,8 @@
|
|
|
754
832
|
"contacts": {
|
|
755
833
|
"type": "string"
|
|
756
834
|
}
|
|
757
|
-
}
|
|
835
|
+
},
|
|
836
|
+
"additionalProperties": false
|
|
758
837
|
},
|
|
759
838
|
"IGetIssuerLocaleBrandingArgs": {
|
|
760
839
|
"type": "object",
|
|
@@ -762,7 +841,8 @@
|
|
|
762
841
|
"filter": {
|
|
763
842
|
"$ref": "#/components/schemas/FindIssuerLocaleBrandingArgs"
|
|
764
843
|
}
|
|
765
|
-
}
|
|
844
|
+
},
|
|
845
|
+
"additionalProperties": false
|
|
766
846
|
},
|
|
767
847
|
"FindIssuerLocaleBrandingArgs": {
|
|
768
848
|
"type": "array",
|
|
@@ -782,12 +862,26 @@
|
|
|
782
862
|
"policyUri": {
|
|
783
863
|
"type": "string"
|
|
784
864
|
},
|
|
785
|
-
"id": {
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
"
|
|
789
|
-
|
|
790
|
-
|
|
865
|
+
"id": {
|
|
866
|
+
"type": "string"
|
|
867
|
+
},
|
|
868
|
+
"alias": {
|
|
869
|
+
"type": "string"
|
|
870
|
+
},
|
|
871
|
+
"locale": {
|
|
872
|
+
"type": "string"
|
|
873
|
+
},
|
|
874
|
+
"description": {
|
|
875
|
+
"type": "string"
|
|
876
|
+
},
|
|
877
|
+
"createdAt": {
|
|
878
|
+
"type": "string",
|
|
879
|
+
"format": "date-time"
|
|
880
|
+
},
|
|
881
|
+
"lastUpdatedAt": {
|
|
882
|
+
"type": "string",
|
|
883
|
+
"format": "date-time"
|
|
884
|
+
},
|
|
791
885
|
"logo": {
|
|
792
886
|
"$ref": "#/components/schemas/IPartialImageAttributes"
|
|
793
887
|
},
|
|
@@ -803,7 +897,8 @@
|
|
|
803
897
|
"issuerBranding": {
|
|
804
898
|
"$ref": "#/components/schemas/IPartialIssuerBranding"
|
|
805
899
|
}
|
|
806
|
-
}
|
|
900
|
+
},
|
|
901
|
+
"additionalProperties": false
|
|
807
902
|
},
|
|
808
903
|
"IPartialIssuerBranding": {
|
|
809
904
|
"type": "object",
|
|
@@ -825,7 +920,8 @@
|
|
|
825
920
|
"localeBranding": {
|
|
826
921
|
"$ref": "#/components/schemas/IPartialIssuerLocaleBranding"
|
|
827
922
|
}
|
|
828
|
-
}
|
|
923
|
+
},
|
|
924
|
+
"additionalProperties": false
|
|
829
925
|
},
|
|
830
926
|
"IIssuerBrandingFromArgs": {
|
|
831
927
|
"type": "object",
|
|
@@ -836,7 +932,8 @@
|
|
|
836
932
|
},
|
|
837
933
|
"required": [
|
|
838
934
|
"localeBranding"
|
|
839
|
-
]
|
|
935
|
+
],
|
|
936
|
+
"additionalProperties": false
|
|
840
937
|
},
|
|
841
938
|
"IRemoveCredentialBrandingArgs": {
|
|
842
939
|
"type": "object",
|
|
@@ -847,7 +944,8 @@
|
|
|
847
944
|
},
|
|
848
945
|
"required": [
|
|
849
946
|
"filter"
|
|
850
|
-
]
|
|
947
|
+
],
|
|
948
|
+
"additionalProperties": false
|
|
851
949
|
},
|
|
852
950
|
"IDeletionResult": {
|
|
853
951
|
"type": "object",
|
|
@@ -861,7 +959,8 @@
|
|
|
861
959
|
},
|
|
862
960
|
"required": [
|
|
863
961
|
"result"
|
|
864
|
-
]
|
|
962
|
+
],
|
|
963
|
+
"additionalProperties": false
|
|
865
964
|
},
|
|
866
965
|
"IRemoveCredentialLocaleBrandingArgs": {
|
|
867
966
|
"type": "object",
|
|
@@ -872,7 +971,8 @@
|
|
|
872
971
|
},
|
|
873
972
|
"required": [
|
|
874
973
|
"filter"
|
|
875
|
-
]
|
|
974
|
+
],
|
|
975
|
+
"additionalProperties": false
|
|
876
976
|
},
|
|
877
977
|
"IRemoveIssuerBrandingArgs": {
|
|
878
978
|
"type": "object",
|
|
@@ -883,7 +983,8 @@
|
|
|
883
983
|
},
|
|
884
984
|
"required": [
|
|
885
985
|
"filter"
|
|
886
|
-
]
|
|
986
|
+
],
|
|
987
|
+
"additionalProperties": false
|
|
887
988
|
},
|
|
888
989
|
"IRemoveIssuerLocaleBrandingArgs": {
|
|
889
990
|
"type": "object",
|
|
@@ -894,131 +995,131 @@
|
|
|
894
995
|
},
|
|
895
996
|
"required": [
|
|
896
997
|
"filter"
|
|
897
|
-
]
|
|
998
|
+
],
|
|
999
|
+
"additionalProperties": false
|
|
898
1000
|
},
|
|
899
1001
|
"IUpdateCredentialBrandingArgs": {
|
|
900
1002
|
"type": "object",
|
|
901
1003
|
"properties": {
|
|
902
1004
|
"credentialBranding": {
|
|
903
|
-
"
|
|
904
|
-
"properties": {
|
|
905
|
-
"id": {
|
|
906
|
-
"type": "string"
|
|
907
|
-
},
|
|
908
|
-
"issuerCorrelationId": {
|
|
909
|
-
"type": "string"
|
|
910
|
-
},
|
|
911
|
-
"vcHash": {
|
|
912
|
-
"type": "string"
|
|
913
|
-
}
|
|
914
|
-
},
|
|
915
|
-
"required": [
|
|
916
|
-
"id",
|
|
917
|
-
"issuerCorrelationId",
|
|
918
|
-
"vcHash"
|
|
919
|
-
]
|
|
1005
|
+
"$ref": "#/components/schemas/Omit<ICredentialBranding,(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>"
|
|
920
1006
|
}
|
|
921
1007
|
},
|
|
922
1008
|
"required": [
|
|
923
1009
|
"credentialBranding"
|
|
924
|
-
]
|
|
1010
|
+
],
|
|
1011
|
+
"additionalProperties": false
|
|
1012
|
+
},
|
|
1013
|
+
"Omit<ICredentialBranding,(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>": {
|
|
1014
|
+
"$ref": "#/components/schemas/Pick<ICredentialBranding,Exclude<(\"id\"|\"issuerCorrelationId\"|\"vcHash\"|\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\"),(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>>"
|
|
1015
|
+
},
|
|
1016
|
+
"Pick<ICredentialBranding,Exclude<(\"id\"|\"issuerCorrelationId\"|\"vcHash\"|\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\"),(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>>": {
|
|
1017
|
+
"type": "object",
|
|
1018
|
+
"properties": {
|
|
1019
|
+
"id": {
|
|
1020
|
+
"type": "string"
|
|
1021
|
+
},
|
|
1022
|
+
"issuerCorrelationId": {
|
|
1023
|
+
"type": "string"
|
|
1024
|
+
},
|
|
1025
|
+
"vcHash": {
|
|
1026
|
+
"type": "string"
|
|
1027
|
+
}
|
|
1028
|
+
},
|
|
1029
|
+
"required": [
|
|
1030
|
+
"id",
|
|
1031
|
+
"issuerCorrelationId",
|
|
1032
|
+
"vcHash"
|
|
1033
|
+
],
|
|
1034
|
+
"additionalProperties": false
|
|
925
1035
|
},
|
|
926
1036
|
"IUpdateCredentialLocaleBrandingArgs": {
|
|
927
1037
|
"type": "object",
|
|
928
1038
|
"properties": {
|
|
929
1039
|
"localeBranding": {
|
|
930
|
-
"
|
|
931
|
-
"properties": {
|
|
932
|
-
"id": {
|
|
933
|
-
"type": "string"
|
|
934
|
-
},
|
|
935
|
-
"alias": {
|
|
936
|
-
"type": "string"
|
|
937
|
-
},
|
|
938
|
-
"locale": {
|
|
939
|
-
"type": "string"
|
|
940
|
-
},
|
|
941
|
-
"logo": {
|
|
942
|
-
"$ref": "#/components/schemas/IImageAttributes"
|
|
943
|
-
},
|
|
944
|
-
"description": {
|
|
945
|
-
"type": "string"
|
|
946
|
-
},
|
|
947
|
-
"background": {
|
|
948
|
-
"$ref": "#/components/schemas/IBackgroundAttributes"
|
|
949
|
-
},
|
|
950
|
-
"text": {
|
|
951
|
-
"$ref": "#/components/schemas/ITextAttributes"
|
|
952
|
-
}
|
|
953
|
-
},
|
|
954
|
-
"required": [
|
|
955
|
-
"id"
|
|
956
|
-
]
|
|
1040
|
+
"$ref": "#/components/schemas/Omit<ILocaleBranding,(\"createdAt\"|\"lastUpdatedAt\")>"
|
|
957
1041
|
}
|
|
958
1042
|
},
|
|
959
1043
|
"required": [
|
|
960
1044
|
"localeBranding"
|
|
961
|
-
]
|
|
1045
|
+
],
|
|
1046
|
+
"additionalProperties": false
|
|
1047
|
+
},
|
|
1048
|
+
"Omit<ILocaleBranding,(\"createdAt\"|\"lastUpdatedAt\")>": {
|
|
1049
|
+
"$ref": "#/components/schemas/Pick<ILocaleBranding,Exclude<(\"id\"|\"alias\"|\"locale\"|\"logo\"|\"description\"|\"background\"|\"text\"|\"createdAt\"|\"lastUpdatedAt\"),(\"createdAt\"|\"lastUpdatedAt\")>>"
|
|
1050
|
+
},
|
|
1051
|
+
"Pick<ILocaleBranding,Exclude<(\"id\"|\"alias\"|\"locale\"|\"logo\"|\"description\"|\"background\"|\"text\"|\"createdAt\"|\"lastUpdatedAt\"),(\"createdAt\"|\"lastUpdatedAt\")>>": {
|
|
1052
|
+
"type": "object",
|
|
1053
|
+
"properties": {
|
|
1054
|
+
"id": {
|
|
1055
|
+
"type": "string"
|
|
1056
|
+
},
|
|
1057
|
+
"alias": {
|
|
1058
|
+
"type": "string"
|
|
1059
|
+
},
|
|
1060
|
+
"locale": {
|
|
1061
|
+
"type": "string"
|
|
1062
|
+
},
|
|
1063
|
+
"logo": {
|
|
1064
|
+
"$ref": "#/components/schemas/IImageAttributes"
|
|
1065
|
+
},
|
|
1066
|
+
"description": {
|
|
1067
|
+
"type": "string"
|
|
1068
|
+
},
|
|
1069
|
+
"background": {
|
|
1070
|
+
"$ref": "#/components/schemas/IBackgroundAttributes"
|
|
1071
|
+
},
|
|
1072
|
+
"text": {
|
|
1073
|
+
"$ref": "#/components/schemas/ITextAttributes"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"required": [
|
|
1077
|
+
"id"
|
|
1078
|
+
],
|
|
1079
|
+
"additionalProperties": false
|
|
962
1080
|
},
|
|
963
1081
|
"IUpdateIssuerBrandingArgs": {
|
|
964
1082
|
"type": "object",
|
|
965
1083
|
"properties": {
|
|
966
1084
|
"issuerBranding": {
|
|
967
|
-
"
|
|
968
|
-
"properties": {
|
|
969
|
-
"id": {
|
|
970
|
-
"type": "string"
|
|
971
|
-
},
|
|
972
|
-
"issuerCorrelationId": {
|
|
973
|
-
"type": "string"
|
|
974
|
-
}
|
|
975
|
-
},
|
|
976
|
-
"required": [
|
|
977
|
-
"id",
|
|
978
|
-
"issuerCorrelationId"
|
|
979
|
-
]
|
|
1085
|
+
"$ref": "#/components/schemas/Omit<IIssuerBranding,(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>"
|
|
980
1086
|
}
|
|
981
1087
|
},
|
|
982
1088
|
"required": [
|
|
983
1089
|
"issuerBranding"
|
|
984
|
-
]
|
|
1090
|
+
],
|
|
1091
|
+
"additionalProperties": false
|
|
1092
|
+
},
|
|
1093
|
+
"Omit<IIssuerBranding,(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>": {
|
|
1094
|
+
"$ref": "#/components/schemas/Pick<IIssuerBranding,Exclude<(\"id\"|\"issuerCorrelationId\"|\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\"),(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>>"
|
|
1095
|
+
},
|
|
1096
|
+
"Pick<IIssuerBranding,Exclude<(\"id\"|\"issuerCorrelationId\"|\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\"),(\"localeBranding\"|\"createdAt\"|\"lastUpdatedAt\")>>": {
|
|
1097
|
+
"type": "object",
|
|
1098
|
+
"properties": {
|
|
1099
|
+
"id": {
|
|
1100
|
+
"type": "string"
|
|
1101
|
+
},
|
|
1102
|
+
"issuerCorrelationId": {
|
|
1103
|
+
"type": "string"
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
"required": [
|
|
1107
|
+
"id",
|
|
1108
|
+
"issuerCorrelationId"
|
|
1109
|
+
],
|
|
1110
|
+
"additionalProperties": false
|
|
985
1111
|
},
|
|
986
1112
|
"IUpdateIssuerLocaleBrandingArgs": {
|
|
987
1113
|
"type": "object",
|
|
988
1114
|
"properties": {
|
|
989
1115
|
"localeBranding": {
|
|
990
|
-
"
|
|
991
|
-
"properties": {
|
|
992
|
-
"id": {
|
|
993
|
-
"type": "string"
|
|
994
|
-
},
|
|
995
|
-
"alias": {
|
|
996
|
-
"type": "string"
|
|
997
|
-
},
|
|
998
|
-
"locale": {
|
|
999
|
-
"type": "string"
|
|
1000
|
-
},
|
|
1001
|
-
"logo": {
|
|
1002
|
-
"$ref": "#/components/schemas/IImageAttributes"
|
|
1003
|
-
},
|
|
1004
|
-
"description": {
|
|
1005
|
-
"type": "string"
|
|
1006
|
-
},
|
|
1007
|
-
"background": {
|
|
1008
|
-
"$ref": "#/components/schemas/IBackgroundAttributes"
|
|
1009
|
-
},
|
|
1010
|
-
"text": {
|
|
1011
|
-
"$ref": "#/components/schemas/ITextAttributes"
|
|
1012
|
-
}
|
|
1013
|
-
},
|
|
1014
|
-
"required": [
|
|
1015
|
-
"id"
|
|
1016
|
-
]
|
|
1116
|
+
"$ref": "#/components/schemas/Omit<ILocaleBranding,(\"createdAt\"|\"lastUpdatedAt\")>"
|
|
1017
1117
|
}
|
|
1018
1118
|
},
|
|
1019
1119
|
"required": [
|
|
1020
1120
|
"localeBranding"
|
|
1021
|
-
]
|
|
1121
|
+
],
|
|
1122
|
+
"additionalProperties": false
|
|
1022
1123
|
}
|
|
1023
1124
|
},
|
|
1024
1125
|
"methods": {
|