@nmshd/runtime 7.5.4 → 7.5.10
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/buildInformation.js +5 -5
- package/dist/dataViews/DataViewExpander.d.ts.map +1 -1
- package/dist/dataViews/DataViewExpander.js +10 -3
- package/dist/dataViews/DataViewExpander.js.map +1 -1
- package/dist/useCases/common/Schemas.d.ts.map +1 -1
- package/dist/useCases/common/Schemas.js +238 -0
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.d.ts +1 -0
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.d.ts.map +1 -1
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.js +15 -0
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.js.map +1 -1
- package/dist/useCases/consumption/openid4vc/StoreCredentials.d.ts +3 -1
- package/dist/useCases/consumption/openid4vc/StoreCredentials.d.ts.map +1 -1
- package/dist/useCases/consumption/openid4vc/StoreCredentials.js +12 -3
- package/dist/useCases/consumption/openid4vc/StoreCredentials.js.map +1 -1
- package/package.json +15 -15
|
@@ -1921,6 +1921,12 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
1921
1921
|
"items": {
|
|
1922
1922
|
"type": "object"
|
|
1923
1923
|
}
|
|
1924
|
+
},
|
|
1925
|
+
"displayInformationCachedImages": {
|
|
1926
|
+
"type": "array",
|
|
1927
|
+
"items": {
|
|
1928
|
+
"$ref": "#/definitions/DisplayInformationCachedImagesJSON"
|
|
1929
|
+
}
|
|
1924
1930
|
}
|
|
1925
1931
|
},
|
|
1926
1932
|
"required": [
|
|
@@ -1930,6 +1936,34 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
1930
1936
|
],
|
|
1931
1937
|
"additionalProperties": false
|
|
1932
1938
|
},
|
|
1939
|
+
"DisplayInformationCachedImagesJSON": {
|
|
1940
|
+
"type": "object",
|
|
1941
|
+
"properties": {
|
|
1942
|
+
"@type": {
|
|
1943
|
+
"type": "string",
|
|
1944
|
+
"const": "DisplayInformationCachedImages"
|
|
1945
|
+
},
|
|
1946
|
+
"@context": {
|
|
1947
|
+
"type": "string"
|
|
1948
|
+
},
|
|
1949
|
+
"@version": {
|
|
1950
|
+
"type": "string"
|
|
1951
|
+
},
|
|
1952
|
+
"locale": {
|
|
1953
|
+
"type": "string"
|
|
1954
|
+
},
|
|
1955
|
+
"logo": {
|
|
1956
|
+
"type": "string"
|
|
1957
|
+
},
|
|
1958
|
+
"backgroundImage": {
|
|
1959
|
+
"type": "string"
|
|
1960
|
+
}
|
|
1961
|
+
},
|
|
1962
|
+
"required": [
|
|
1963
|
+
"@type"
|
|
1964
|
+
],
|
|
1965
|
+
"additionalProperties": false
|
|
1966
|
+
},
|
|
1933
1967
|
"WebsiteJSON": {
|
|
1934
1968
|
"type": "object",
|
|
1935
1969
|
"properties": {
|
|
@@ -4098,6 +4132,12 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
4098
4132
|
"items": {
|
|
4099
4133
|
"type": "object"
|
|
4100
4134
|
}
|
|
4135
|
+
},
|
|
4136
|
+
"displayInformationCachedImages": {
|
|
4137
|
+
"type": "array",
|
|
4138
|
+
"items": {
|
|
4139
|
+
"$ref": "#/definitions/DisplayInformationCachedImagesJSON"
|
|
4140
|
+
}
|
|
4101
4141
|
}
|
|
4102
4142
|
},
|
|
4103
4143
|
"required": [
|
|
@@ -4107,6 +4147,34 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
4107
4147
|
],
|
|
4108
4148
|
"additionalProperties": false
|
|
4109
4149
|
},
|
|
4150
|
+
"DisplayInformationCachedImagesJSON": {
|
|
4151
|
+
"type": "object",
|
|
4152
|
+
"properties": {
|
|
4153
|
+
"@type": {
|
|
4154
|
+
"type": "string",
|
|
4155
|
+
"const": "DisplayInformationCachedImages"
|
|
4156
|
+
},
|
|
4157
|
+
"@context": {
|
|
4158
|
+
"type": "string"
|
|
4159
|
+
},
|
|
4160
|
+
"@version": {
|
|
4161
|
+
"type": "string"
|
|
4162
|
+
},
|
|
4163
|
+
"locale": {
|
|
4164
|
+
"type": "string"
|
|
4165
|
+
},
|
|
4166
|
+
"logo": {
|
|
4167
|
+
"type": "string"
|
|
4168
|
+
},
|
|
4169
|
+
"backgroundImage": {
|
|
4170
|
+
"type": "string"
|
|
4171
|
+
}
|
|
4172
|
+
},
|
|
4173
|
+
"required": [
|
|
4174
|
+
"@type"
|
|
4175
|
+
],
|
|
4176
|
+
"additionalProperties": false
|
|
4177
|
+
},
|
|
4110
4178
|
"WebsiteJSON": {
|
|
4111
4179
|
"type": "object",
|
|
4112
4180
|
"properties": {
|
|
@@ -6192,6 +6260,12 @@ exports.CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest
|
|
|
6192
6260
|
"items": {
|
|
6193
6261
|
"type": "object"
|
|
6194
6262
|
}
|
|
6263
|
+
},
|
|
6264
|
+
"displayInformationCachedImages": {
|
|
6265
|
+
"type": "array",
|
|
6266
|
+
"items": {
|
|
6267
|
+
"$ref": "#/definitions/DisplayInformationCachedImagesJSON"
|
|
6268
|
+
}
|
|
6195
6269
|
}
|
|
6196
6270
|
},
|
|
6197
6271
|
"required": [
|
|
@@ -6201,6 +6275,34 @@ exports.CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest
|
|
|
6201
6275
|
],
|
|
6202
6276
|
"additionalProperties": false
|
|
6203
6277
|
},
|
|
6278
|
+
"DisplayInformationCachedImagesJSON": {
|
|
6279
|
+
"type": "object",
|
|
6280
|
+
"properties": {
|
|
6281
|
+
"@type": {
|
|
6282
|
+
"type": "string",
|
|
6283
|
+
"const": "DisplayInformationCachedImages"
|
|
6284
|
+
},
|
|
6285
|
+
"@context": {
|
|
6286
|
+
"type": "string"
|
|
6287
|
+
},
|
|
6288
|
+
"@version": {
|
|
6289
|
+
"type": "string"
|
|
6290
|
+
},
|
|
6291
|
+
"locale": {
|
|
6292
|
+
"type": "string"
|
|
6293
|
+
},
|
|
6294
|
+
"logo": {
|
|
6295
|
+
"type": "string"
|
|
6296
|
+
},
|
|
6297
|
+
"backgroundImage": {
|
|
6298
|
+
"type": "string"
|
|
6299
|
+
}
|
|
6300
|
+
},
|
|
6301
|
+
"required": [
|
|
6302
|
+
"@type"
|
|
6303
|
+
],
|
|
6304
|
+
"additionalProperties": false
|
|
6305
|
+
},
|
|
6204
6306
|
"WebsiteJSON": {
|
|
6205
6307
|
"type": "object",
|
|
6206
6308
|
"properties": {
|
|
@@ -8909,6 +9011,12 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8909
9011
|
"items": {
|
|
8910
9012
|
"type": "object"
|
|
8911
9013
|
}
|
|
9014
|
+
},
|
|
9015
|
+
"displayInformationCachedImages": {
|
|
9016
|
+
"type": "array",
|
|
9017
|
+
"items": {
|
|
9018
|
+
"$ref": "#/definitions/DisplayInformationCachedImagesJSON"
|
|
9019
|
+
}
|
|
8912
9020
|
}
|
|
8913
9021
|
},
|
|
8914
9022
|
"required": [
|
|
@@ -8918,6 +9026,34 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8918
9026
|
],
|
|
8919
9027
|
"additionalProperties": false
|
|
8920
9028
|
},
|
|
9029
|
+
"DisplayInformationCachedImagesJSON": {
|
|
9030
|
+
"type": "object",
|
|
9031
|
+
"properties": {
|
|
9032
|
+
"@type": {
|
|
9033
|
+
"type": "string",
|
|
9034
|
+
"const": "DisplayInformationCachedImages"
|
|
9035
|
+
},
|
|
9036
|
+
"@context": {
|
|
9037
|
+
"type": "string"
|
|
9038
|
+
},
|
|
9039
|
+
"@version": {
|
|
9040
|
+
"type": "string"
|
|
9041
|
+
},
|
|
9042
|
+
"locale": {
|
|
9043
|
+
"type": "string"
|
|
9044
|
+
},
|
|
9045
|
+
"logo": {
|
|
9046
|
+
"type": "string"
|
|
9047
|
+
},
|
|
9048
|
+
"backgroundImage": {
|
|
9049
|
+
"type": "string"
|
|
9050
|
+
}
|
|
9051
|
+
},
|
|
9052
|
+
"required": [
|
|
9053
|
+
"@type"
|
|
9054
|
+
],
|
|
9055
|
+
"additionalProperties": false
|
|
9056
|
+
},
|
|
8921
9057
|
"WebsiteJSON": {
|
|
8922
9058
|
"type": "object",
|
|
8923
9059
|
"properties": {
|
|
@@ -12095,6 +12231,12 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
12095
12231
|
"items": {
|
|
12096
12232
|
"type": "object"
|
|
12097
12233
|
}
|
|
12234
|
+
},
|
|
12235
|
+
"displayInformationCachedImages": {
|
|
12236
|
+
"type": "array",
|
|
12237
|
+
"items": {
|
|
12238
|
+
"$ref": "#/definitions/DisplayInformationCachedImagesJSON"
|
|
12239
|
+
}
|
|
12098
12240
|
}
|
|
12099
12241
|
},
|
|
12100
12242
|
"required": [
|
|
@@ -12104,6 +12246,34 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
12104
12246
|
],
|
|
12105
12247
|
"additionalProperties": false
|
|
12106
12248
|
},
|
|
12249
|
+
"DisplayInformationCachedImagesJSON": {
|
|
12250
|
+
"type": "object",
|
|
12251
|
+
"properties": {
|
|
12252
|
+
"@type": {
|
|
12253
|
+
"type": "string",
|
|
12254
|
+
"const": "DisplayInformationCachedImages"
|
|
12255
|
+
},
|
|
12256
|
+
"@context": {
|
|
12257
|
+
"type": "string"
|
|
12258
|
+
},
|
|
12259
|
+
"@version": {
|
|
12260
|
+
"type": "string"
|
|
12261
|
+
},
|
|
12262
|
+
"locale": {
|
|
12263
|
+
"type": "string"
|
|
12264
|
+
},
|
|
12265
|
+
"logo": {
|
|
12266
|
+
"type": "string"
|
|
12267
|
+
},
|
|
12268
|
+
"backgroundImage": {
|
|
12269
|
+
"type": "string"
|
|
12270
|
+
}
|
|
12271
|
+
},
|
|
12272
|
+
"required": [
|
|
12273
|
+
"@type"
|
|
12274
|
+
],
|
|
12275
|
+
"additionalProperties": false
|
|
12276
|
+
},
|
|
12107
12277
|
"WebsiteJSON": {
|
|
12108
12278
|
"type": "object",
|
|
12109
12279
|
"properties": {
|
|
@@ -16254,6 +16424,12 @@ exports.SucceedOwnIdentityAttributeRequest = {
|
|
|
16254
16424
|
"items": {
|
|
16255
16425
|
"type": "object"
|
|
16256
16426
|
}
|
|
16427
|
+
},
|
|
16428
|
+
"displayInformationCachedImages": {
|
|
16429
|
+
"type": "array",
|
|
16430
|
+
"items": {
|
|
16431
|
+
"$ref": "#/definitions/DisplayInformationCachedImagesJSON"
|
|
16432
|
+
}
|
|
16257
16433
|
}
|
|
16258
16434
|
},
|
|
16259
16435
|
"required": [
|
|
@@ -16263,6 +16439,34 @@ exports.SucceedOwnIdentityAttributeRequest = {
|
|
|
16263
16439
|
],
|
|
16264
16440
|
"additionalProperties": false
|
|
16265
16441
|
},
|
|
16442
|
+
"DisplayInformationCachedImagesJSON": {
|
|
16443
|
+
"type": "object",
|
|
16444
|
+
"properties": {
|
|
16445
|
+
"@type": {
|
|
16446
|
+
"type": "string",
|
|
16447
|
+
"const": "DisplayInformationCachedImages"
|
|
16448
|
+
},
|
|
16449
|
+
"@context": {
|
|
16450
|
+
"type": "string"
|
|
16451
|
+
},
|
|
16452
|
+
"@version": {
|
|
16453
|
+
"type": "string"
|
|
16454
|
+
},
|
|
16455
|
+
"locale": {
|
|
16456
|
+
"type": "string"
|
|
16457
|
+
},
|
|
16458
|
+
"logo": {
|
|
16459
|
+
"type": "string"
|
|
16460
|
+
},
|
|
16461
|
+
"backgroundImage": {
|
|
16462
|
+
"type": "string"
|
|
16463
|
+
}
|
|
16464
|
+
},
|
|
16465
|
+
"required": [
|
|
16466
|
+
"@type"
|
|
16467
|
+
],
|
|
16468
|
+
"additionalProperties": false
|
|
16469
|
+
},
|
|
16266
16470
|
"WebsiteJSON": {
|
|
16267
16471
|
"type": "object",
|
|
16268
16472
|
"properties": {
|
|
@@ -21870,6 +22074,12 @@ exports.VerifiableCredential = {
|
|
|
21870
22074
|
"items": {
|
|
21871
22075
|
"type": "object"
|
|
21872
22076
|
}
|
|
22077
|
+
},
|
|
22078
|
+
"displayInformationCachedImages": {
|
|
22079
|
+
"type": "array",
|
|
22080
|
+
"items": {
|
|
22081
|
+
"$ref": "#/definitions/DisplayInformationCachedImages"
|
|
22082
|
+
}
|
|
21873
22083
|
}
|
|
21874
22084
|
},
|
|
21875
22085
|
"required": [
|
|
@@ -21878,6 +22088,34 @@ exports.VerifiableCredential = {
|
|
|
21878
22088
|
"value"
|
|
21879
22089
|
],
|
|
21880
22090
|
"additionalProperties": false
|
|
22091
|
+
},
|
|
22092
|
+
"DisplayInformationCachedImages": {
|
|
22093
|
+
"type": "object",
|
|
22094
|
+
"properties": {
|
|
22095
|
+
"@type": {
|
|
22096
|
+
"type": "string",
|
|
22097
|
+
"const": "DisplayInformationCachedImages"
|
|
22098
|
+
},
|
|
22099
|
+
"@context": {
|
|
22100
|
+
"type": "string"
|
|
22101
|
+
},
|
|
22102
|
+
"@version": {
|
|
22103
|
+
"type": "string"
|
|
22104
|
+
},
|
|
22105
|
+
"locale": {
|
|
22106
|
+
"type": "string"
|
|
22107
|
+
},
|
|
22108
|
+
"logo": {
|
|
22109
|
+
"type": "string"
|
|
22110
|
+
},
|
|
22111
|
+
"backgroundImage": {
|
|
22112
|
+
"type": "string"
|
|
22113
|
+
}
|
|
22114
|
+
},
|
|
22115
|
+
"required": [
|
|
22116
|
+
"@type"
|
|
22117
|
+
],
|
|
22118
|
+
"additionalProperties": false
|
|
21881
22119
|
}
|
|
21882
22120
|
}
|
|
21883
22121
|
};
|