@sphereon/ssi-sdk.issuance-branding 0.36.1-next.11 → 0.36.1-next.113
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 +114 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +114 -29
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/plugin.schema.json +115 -30
package/dist/index.js
CHANGED
|
@@ -28,7 +28,11 @@ var require_plugin_schema = __commonJS({
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
|
-
required: [
|
|
31
|
+
required: [
|
|
32
|
+
"issuerCorrelationId",
|
|
33
|
+
"vcHash",
|
|
34
|
+
"localeBranding"
|
|
35
|
+
],
|
|
32
36
|
additionalProperties: false
|
|
33
37
|
},
|
|
34
38
|
IBasicCredentialLocaleBranding: {
|
|
@@ -93,7 +97,10 @@ var require_plugin_schema = __commonJS({
|
|
|
93
97
|
type: "number"
|
|
94
98
|
}
|
|
95
99
|
},
|
|
96
|
-
required: [
|
|
100
|
+
required: [
|
|
101
|
+
"height",
|
|
102
|
+
"width"
|
|
103
|
+
]
|
|
97
104
|
},
|
|
98
105
|
IBasicBackgroundAttributes: {
|
|
99
106
|
type: "object",
|
|
@@ -127,7 +134,10 @@ var require_plugin_schema = __commonJS({
|
|
|
127
134
|
type: "string"
|
|
128
135
|
}
|
|
129
136
|
},
|
|
130
|
-
required: [
|
|
137
|
+
required: [
|
|
138
|
+
"key",
|
|
139
|
+
"name"
|
|
140
|
+
]
|
|
131
141
|
},
|
|
132
142
|
ICredentialBranding: {
|
|
133
143
|
type: "object",
|
|
@@ -156,7 +166,14 @@ var require_plugin_schema = __commonJS({
|
|
|
156
166
|
format: "date-time"
|
|
157
167
|
}
|
|
158
168
|
},
|
|
159
|
-
required: [
|
|
169
|
+
required: [
|
|
170
|
+
"id",
|
|
171
|
+
"issuerCorrelationId",
|
|
172
|
+
"vcHash",
|
|
173
|
+
"localeBranding",
|
|
174
|
+
"createdAt",
|
|
175
|
+
"lastUpdatedAt"
|
|
176
|
+
],
|
|
160
177
|
additionalProperties: false
|
|
161
178
|
},
|
|
162
179
|
ICredentialLocaleBranding: {
|
|
@@ -199,7 +216,11 @@ var require_plugin_schema = __commonJS({
|
|
|
199
216
|
}
|
|
200
217
|
},
|
|
201
218
|
additionalProperties: false,
|
|
202
|
-
required: [
|
|
219
|
+
required: [
|
|
220
|
+
"createdAt",
|
|
221
|
+
"id",
|
|
222
|
+
"lastUpdatedAt"
|
|
223
|
+
]
|
|
203
224
|
},
|
|
204
225
|
IImageAttributes: {
|
|
205
226
|
type: "object",
|
|
@@ -223,7 +244,9 @@ var require_plugin_schema = __commonJS({
|
|
|
223
244
|
$ref: "#/components/schemas/IImageDimensions"
|
|
224
245
|
}
|
|
225
246
|
},
|
|
226
|
-
required: [
|
|
247
|
+
required: [
|
|
248
|
+
"id"
|
|
249
|
+
],
|
|
227
250
|
additionalProperties: false
|
|
228
251
|
},
|
|
229
252
|
IImageDimensions: {
|
|
@@ -239,7 +262,11 @@ var require_plugin_schema = __commonJS({
|
|
|
239
262
|
type: "number"
|
|
240
263
|
}
|
|
241
264
|
},
|
|
242
|
-
required: [
|
|
265
|
+
required: [
|
|
266
|
+
"id",
|
|
267
|
+
"width",
|
|
268
|
+
"height"
|
|
269
|
+
],
|
|
243
270
|
additionalProperties: false
|
|
244
271
|
},
|
|
245
272
|
IBackgroundAttributes: {
|
|
@@ -255,7 +282,9 @@ var require_plugin_schema = __commonJS({
|
|
|
255
282
|
$ref: "#/components/schemas/IImageAttributes"
|
|
256
283
|
}
|
|
257
284
|
},
|
|
258
|
-
required: [
|
|
285
|
+
required: [
|
|
286
|
+
"id"
|
|
287
|
+
],
|
|
259
288
|
additionalProperties: false
|
|
260
289
|
},
|
|
261
290
|
ITextAttributes: {
|
|
@@ -268,7 +297,9 @@ var require_plugin_schema = __commonJS({
|
|
|
268
297
|
type: "string"
|
|
269
298
|
}
|
|
270
299
|
},
|
|
271
|
-
required: [
|
|
300
|
+
required: [
|
|
301
|
+
"id"
|
|
302
|
+
],
|
|
272
303
|
additionalProperties: false
|
|
273
304
|
},
|
|
274
305
|
ICredentialClaim: {
|
|
@@ -284,7 +315,11 @@ var require_plugin_schema = __commonJS({
|
|
|
284
315
|
type: "string"
|
|
285
316
|
}
|
|
286
317
|
},
|
|
287
|
-
required: [
|
|
318
|
+
required: [
|
|
319
|
+
"id",
|
|
320
|
+
"key",
|
|
321
|
+
"name"
|
|
322
|
+
],
|
|
288
323
|
additionalProperties: false
|
|
289
324
|
},
|
|
290
325
|
IAddCredentialLocaleBrandingArgs: {
|
|
@@ -300,7 +335,10 @@ var require_plugin_schema = __commonJS({
|
|
|
300
335
|
}
|
|
301
336
|
}
|
|
302
337
|
},
|
|
303
|
-
required: [
|
|
338
|
+
required: [
|
|
339
|
+
"credentialBrandingId",
|
|
340
|
+
"localeBranding"
|
|
341
|
+
],
|
|
304
342
|
additionalProperties: false
|
|
305
343
|
},
|
|
306
344
|
IAddIssuerBrandingArgs: {
|
|
@@ -316,7 +354,10 @@ var require_plugin_schema = __commonJS({
|
|
|
316
354
|
}
|
|
317
355
|
}
|
|
318
356
|
},
|
|
319
|
-
required: [
|
|
357
|
+
required: [
|
|
358
|
+
"issuerCorrelationId",
|
|
359
|
+
"localeBranding"
|
|
360
|
+
],
|
|
320
361
|
additionalProperties: false
|
|
321
362
|
},
|
|
322
363
|
IBasicIssuerLocaleBranding: {
|
|
@@ -382,7 +423,13 @@ var require_plugin_schema = __commonJS({
|
|
|
382
423
|
format: "date-time"
|
|
383
424
|
}
|
|
384
425
|
},
|
|
385
|
-
required: [
|
|
426
|
+
required: [
|
|
427
|
+
"id",
|
|
428
|
+
"issuerCorrelationId",
|
|
429
|
+
"localeBranding",
|
|
430
|
+
"createdAt",
|
|
431
|
+
"lastUpdatedAt"
|
|
432
|
+
],
|
|
386
433
|
additionalProperties: false
|
|
387
434
|
},
|
|
388
435
|
IIssuerLocaleBranding: {
|
|
@@ -434,7 +481,11 @@ var require_plugin_schema = __commonJS({
|
|
|
434
481
|
}
|
|
435
482
|
},
|
|
436
483
|
additionalProperties: false,
|
|
437
|
-
required: [
|
|
484
|
+
required: [
|
|
485
|
+
"createdAt",
|
|
486
|
+
"id",
|
|
487
|
+
"lastUpdatedAt"
|
|
488
|
+
]
|
|
438
489
|
},
|
|
439
490
|
IAddIssuerLocaleBrandingArgs: {
|
|
440
491
|
type: "object",
|
|
@@ -449,7 +500,10 @@ var require_plugin_schema = __commonJS({
|
|
|
449
500
|
}
|
|
450
501
|
}
|
|
451
502
|
},
|
|
452
|
-
required: [
|
|
503
|
+
required: [
|
|
504
|
+
"issuerBrandingId",
|
|
505
|
+
"localeBranding"
|
|
506
|
+
],
|
|
453
507
|
additionalProperties: false
|
|
454
508
|
},
|
|
455
509
|
ICredentialBrandingFromArgs: {
|
|
@@ -459,7 +513,9 @@ var require_plugin_schema = __commonJS({
|
|
|
459
513
|
$ref: "#/components/schemas/IBasicCredentialLocaleBranding"
|
|
460
514
|
}
|
|
461
515
|
},
|
|
462
|
-
required: [
|
|
516
|
+
required: [
|
|
517
|
+
"localeBranding"
|
|
518
|
+
],
|
|
463
519
|
additionalProperties: false
|
|
464
520
|
},
|
|
465
521
|
IGetCredentialBrandingArgs: {
|
|
@@ -884,7 +940,9 @@ var require_plugin_schema = __commonJS({
|
|
|
884
940
|
$ref: "#/components/schemas/IBasicIssuerLocaleBranding"
|
|
885
941
|
}
|
|
886
942
|
},
|
|
887
|
-
required: [
|
|
943
|
+
required: [
|
|
944
|
+
"localeBranding"
|
|
945
|
+
],
|
|
888
946
|
additionalProperties: false
|
|
889
947
|
},
|
|
890
948
|
IRemoveCredentialBrandingArgs: {
|
|
@@ -894,7 +952,9 @@ var require_plugin_schema = __commonJS({
|
|
|
894
952
|
$ref: "#/components/schemas/FindCredentialBrandingArgs"
|
|
895
953
|
}
|
|
896
954
|
},
|
|
897
|
-
required: [
|
|
955
|
+
required: [
|
|
956
|
+
"filter"
|
|
957
|
+
],
|
|
898
958
|
additionalProperties: false
|
|
899
959
|
},
|
|
900
960
|
IDeletionResult: {
|
|
@@ -907,7 +967,9 @@ var require_plugin_schema = __commonJS({
|
|
|
907
967
|
type: "string"
|
|
908
968
|
}
|
|
909
969
|
},
|
|
910
|
-
required: [
|
|
970
|
+
required: [
|
|
971
|
+
"result"
|
|
972
|
+
],
|
|
911
973
|
additionalProperties: false
|
|
912
974
|
},
|
|
913
975
|
IRemoveCredentialLocaleBrandingArgs: {
|
|
@@ -917,7 +979,9 @@ var require_plugin_schema = __commonJS({
|
|
|
917
979
|
$ref: "#/components/schemas/FindCredentialLocaleBrandingArgs"
|
|
918
980
|
}
|
|
919
981
|
},
|
|
920
|
-
required: [
|
|
982
|
+
required: [
|
|
983
|
+
"filter"
|
|
984
|
+
],
|
|
921
985
|
additionalProperties: false
|
|
922
986
|
},
|
|
923
987
|
IRemoveIssuerBrandingArgs: {
|
|
@@ -927,7 +991,9 @@ var require_plugin_schema = __commonJS({
|
|
|
927
991
|
$ref: "#/components/schemas/FindIssuerBrandingArgs"
|
|
928
992
|
}
|
|
929
993
|
},
|
|
930
|
-
required: [
|
|
994
|
+
required: [
|
|
995
|
+
"filter"
|
|
996
|
+
],
|
|
931
997
|
additionalProperties: false
|
|
932
998
|
},
|
|
933
999
|
IRemoveIssuerLocaleBrandingArgs: {
|
|
@@ -937,7 +1003,9 @@ var require_plugin_schema = __commonJS({
|
|
|
937
1003
|
$ref: "#/components/schemas/FindIssuerLocaleBrandingArgs"
|
|
938
1004
|
}
|
|
939
1005
|
},
|
|
940
|
-
required: [
|
|
1006
|
+
required: [
|
|
1007
|
+
"filter"
|
|
1008
|
+
],
|
|
941
1009
|
additionalProperties: false
|
|
942
1010
|
},
|
|
943
1011
|
IUpdateCredentialBrandingArgs: {
|
|
@@ -947,7 +1015,9 @@ var require_plugin_schema = __commonJS({
|
|
|
947
1015
|
$ref: '#/components/schemas/Omit<ICredentialBranding,("localeBranding"|"createdAt"|"lastUpdatedAt")>'
|
|
948
1016
|
}
|
|
949
1017
|
},
|
|
950
|
-
required: [
|
|
1018
|
+
required: [
|
|
1019
|
+
"credentialBranding"
|
|
1020
|
+
],
|
|
951
1021
|
additionalProperties: false
|
|
952
1022
|
},
|
|
953
1023
|
'Omit<ICredentialBranding,("localeBranding"|"createdAt"|"lastUpdatedAt")>': {
|
|
@@ -966,7 +1036,11 @@ var require_plugin_schema = __commonJS({
|
|
|
966
1036
|
type: "string"
|
|
967
1037
|
}
|
|
968
1038
|
},
|
|
969
|
-
required: [
|
|
1039
|
+
required: [
|
|
1040
|
+
"id",
|
|
1041
|
+
"issuerCorrelationId",
|
|
1042
|
+
"vcHash"
|
|
1043
|
+
],
|
|
970
1044
|
additionalProperties: false
|
|
971
1045
|
},
|
|
972
1046
|
IUpdateCredentialLocaleBrandingArgs: {
|
|
@@ -976,7 +1050,9 @@ var require_plugin_schema = __commonJS({
|
|
|
976
1050
|
$ref: '#/components/schemas/Omit<ILocaleBranding,("createdAt"|"lastUpdatedAt")>'
|
|
977
1051
|
}
|
|
978
1052
|
},
|
|
979
|
-
required: [
|
|
1053
|
+
required: [
|
|
1054
|
+
"localeBranding"
|
|
1055
|
+
],
|
|
980
1056
|
additionalProperties: false
|
|
981
1057
|
},
|
|
982
1058
|
'Omit<ILocaleBranding,("createdAt"|"lastUpdatedAt")>': {
|
|
@@ -1007,7 +1083,9 @@ var require_plugin_schema = __commonJS({
|
|
|
1007
1083
|
$ref: "#/components/schemas/ITextAttributes"
|
|
1008
1084
|
}
|
|
1009
1085
|
},
|
|
1010
|
-
required: [
|
|
1086
|
+
required: [
|
|
1087
|
+
"id"
|
|
1088
|
+
],
|
|
1011
1089
|
additionalProperties: false
|
|
1012
1090
|
},
|
|
1013
1091
|
IUpdateIssuerBrandingArgs: {
|
|
@@ -1017,7 +1095,9 @@ var require_plugin_schema = __commonJS({
|
|
|
1017
1095
|
$ref: '#/components/schemas/Omit<IIssuerBranding,("localeBranding"|"createdAt"|"lastUpdatedAt")>'
|
|
1018
1096
|
}
|
|
1019
1097
|
},
|
|
1020
|
-
required: [
|
|
1098
|
+
required: [
|
|
1099
|
+
"issuerBranding"
|
|
1100
|
+
],
|
|
1021
1101
|
additionalProperties: false
|
|
1022
1102
|
},
|
|
1023
1103
|
'Omit<IIssuerBranding,("localeBranding"|"createdAt"|"lastUpdatedAt")>': {
|
|
@@ -1033,7 +1113,10 @@ var require_plugin_schema = __commonJS({
|
|
|
1033
1113
|
type: "string"
|
|
1034
1114
|
}
|
|
1035
1115
|
},
|
|
1036
|
-
required: [
|
|
1116
|
+
required: [
|
|
1117
|
+
"id",
|
|
1118
|
+
"issuerCorrelationId"
|
|
1119
|
+
],
|
|
1037
1120
|
additionalProperties: false
|
|
1038
1121
|
},
|
|
1039
1122
|
IUpdateIssuerLocaleBrandingArgs: {
|
|
@@ -1043,7 +1126,9 @@ var require_plugin_schema = __commonJS({
|
|
|
1043
1126
|
$ref: '#/components/schemas/Omit<ILocaleBranding,("createdAt"|"lastUpdatedAt")>'
|
|
1044
1127
|
}
|
|
1045
1128
|
},
|
|
1046
|
-
required: [
|
|
1129
|
+
required: [
|
|
1130
|
+
"localeBranding"
|
|
1131
|
+
],
|
|
1047
1132
|
additionalProperties: false
|
|
1048
1133
|
}
|
|
1049
1134
|
},
|