@sphereon/ssi-types 0.36.1-next.150 → 0.36.1-next.153
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.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +2 -2
- package/src/types/sd-jwt-type-metadata.ts +10 -0
package/dist/index.d.cts
CHANGED
|
@@ -1289,6 +1289,10 @@ interface SdJwtClaimDisplayMetadata {
|
|
|
1289
1289
|
* REQUIRED. Language tag for the display information.
|
|
1290
1290
|
*/
|
|
1291
1291
|
lang: string;
|
|
1292
|
+
/**
|
|
1293
|
+
* OPTIONAL. Locale identifier for the display information.
|
|
1294
|
+
*/
|
|
1295
|
+
locale?: string;
|
|
1292
1296
|
/**
|
|
1293
1297
|
* REQUIRED. A human-readable label for the claim, intended for end users.
|
|
1294
1298
|
*/
|
|
@@ -1306,6 +1310,10 @@ interface SdJwtTypeDisplayMetadata {
|
|
|
1306
1310
|
* REQUIRED. Language tag for the display information.
|
|
1307
1311
|
*/
|
|
1308
1312
|
lang: string;
|
|
1313
|
+
/**
|
|
1314
|
+
* OPTIONAL. Locale identifier for the display information.
|
|
1315
|
+
*/
|
|
1316
|
+
locale?: string;
|
|
1309
1317
|
/**
|
|
1310
1318
|
* REQUIRED. Human-readable name for the type.
|
|
1311
1319
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1289,6 +1289,10 @@ interface SdJwtClaimDisplayMetadata {
|
|
|
1289
1289
|
* REQUIRED. Language tag for the display information.
|
|
1290
1290
|
*/
|
|
1291
1291
|
lang: string;
|
|
1292
|
+
/**
|
|
1293
|
+
* OPTIONAL. Locale identifier for the display information.
|
|
1294
|
+
*/
|
|
1295
|
+
locale?: string;
|
|
1292
1296
|
/**
|
|
1293
1297
|
* REQUIRED. A human-readable label for the claim, intended for end users.
|
|
1294
1298
|
*/
|
|
@@ -1306,6 +1310,10 @@ interface SdJwtTypeDisplayMetadata {
|
|
|
1306
1310
|
* REQUIRED. Language tag for the display information.
|
|
1307
1311
|
*/
|
|
1308
1312
|
lang: string;
|
|
1313
|
+
/**
|
|
1314
|
+
* OPTIONAL. Locale identifier for the display information.
|
|
1315
|
+
*/
|
|
1316
|
+
locale?: string;
|
|
1309
1317
|
/**
|
|
1310
1318
|
* REQUIRED. Human-readable name for the type.
|
|
1311
1319
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-types",
|
|
3
3
|
"description": "SSI Common Types",
|
|
4
|
-
"version": "0.36.1-next.
|
|
4
|
+
"version": "0.36.1-next.153+e4f2b9e7",
|
|
5
5
|
"source": "./src/index.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"Verifiable Credentials",
|
|
60
60
|
"DIDs"
|
|
61
61
|
],
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "e4f2b9e7fb8fac668483633c8604f863357107fa"
|
|
63
63
|
}
|
|
@@ -82,6 +82,11 @@ export interface SdJwtClaimDisplayMetadata {
|
|
|
82
82
|
*/
|
|
83
83
|
lang: string
|
|
84
84
|
|
|
85
|
+
/**
|
|
86
|
+
* OPTIONAL. Locale identifier for the display information.
|
|
87
|
+
*/
|
|
88
|
+
locale?: string
|
|
89
|
+
|
|
85
90
|
/**
|
|
86
91
|
* REQUIRED. A human-readable label for the claim, intended for end users.
|
|
87
92
|
*/
|
|
@@ -102,6 +107,11 @@ export interface SdJwtTypeDisplayMetadata {
|
|
|
102
107
|
*/
|
|
103
108
|
lang: string
|
|
104
109
|
|
|
110
|
+
/**
|
|
111
|
+
* OPTIONAL. Locale identifier for the display information.
|
|
112
|
+
*/
|
|
113
|
+
locale?: string
|
|
114
|
+
|
|
105
115
|
/**
|
|
106
116
|
* REQUIRED. Human-readable name for the type.
|
|
107
117
|
*/
|