@sd-jwt/present 0.15.2-next.8 → 0.15.2-next.9
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +10 -10
- package/package.json +7 -7
- package/src/present.ts +9 -9
- package/src/test/present.spec.ts +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Hasher, PresentationFrame } from '@sd-jwt/types';
|
|
2
|
-
import { Disclosure } from '@sd-jwt/utils';
|
|
3
2
|
import { HasherSync, Extensible } from '@sd-jwt/types/src/type';
|
|
3
|
+
import { Disclosure } from '@sd-jwt/utils';
|
|
4
4
|
|
|
5
5
|
declare const presentableKeys: (rawPayload: Record<string, unknown>, disclosures: Array<Disclosure>, hasher: Hasher) => Promise<string[]>;
|
|
6
6
|
declare const presentableKeysSync: (rawPayload: Record<string, unknown>, disclosures: Array<Disclosure>, hasher: HasherSync) => string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Hasher, PresentationFrame } from '@sd-jwt/types';
|
|
2
|
-
import { Disclosure } from '@sd-jwt/utils';
|
|
3
2
|
import { HasherSync, Extensible } from '@sd-jwt/types/src/type';
|
|
3
|
+
import { Disclosure } from '@sd-jwt/utils';
|
|
4
4
|
|
|
5
5
|
declare const presentableKeys: (rawPayload: Record<string, unknown>, disclosures: Array<Disclosure>, hasher: Hasher) => Promise<string[]>;
|
|
6
6
|
declare const presentableKeysSync: (rawPayload: Record<string, unknown>, disclosures: Array<Disclosure>, hasher: HasherSync) => string[];
|
package/dist/index.js
CHANGED
|
@@ -51,10 +51,10 @@ __export(index_exports, {
|
|
|
51
51
|
module.exports = __toCommonJS(index_exports);
|
|
52
52
|
|
|
53
53
|
// src/present.ts
|
|
54
|
+
var import_decode = require("@sd-jwt/decode");
|
|
54
55
|
var import_types = require("@sd-jwt/types");
|
|
55
56
|
var import_utils = require("@sd-jwt/utils");
|
|
56
|
-
var
|
|
57
|
-
var presentableKeys = (rawPayload, disclosures, hasher) => __async(void 0, null, function* () {
|
|
57
|
+
var presentableKeys = (rawPayload, disclosures, hasher) => __async(null, null, function* () {
|
|
58
58
|
const { disclosureKeymap } = yield (0, import_decode.unpack)(rawPayload, disclosures, hasher);
|
|
59
59
|
return Object.keys(disclosureKeymap).sort();
|
|
60
60
|
});
|
|
@@ -62,7 +62,7 @@ var presentableKeysSync = (rawPayload, disclosures, hasher) => {
|
|
|
62
62
|
const { disclosureKeymap } = (0, import_decode.unpackSync)(rawPayload, disclosures, hasher);
|
|
63
63
|
return Object.keys(disclosureKeymap).sort();
|
|
64
64
|
};
|
|
65
|
-
var present = (sdJwt, presentFrame, hasher) => __async(
|
|
65
|
+
var present = (sdJwt, presentFrame, hasher) => __async(null, null, function* () {
|
|
66
66
|
const { jwt, kbJwt } = (0, import_decode.splitSdJwt)(sdJwt);
|
|
67
67
|
const {
|
|
68
68
|
jwt: { payload },
|
package/dist/index.mjs
CHANGED
|
@@ -20,22 +20,22 @@ var __async = (__this, __arguments, generator) => {
|
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
// src/present.ts
|
|
23
|
-
import {
|
|
24
|
-
SD_SEPARATOR
|
|
25
|
-
} from "@sd-jwt/types";
|
|
26
|
-
import { Disclosure, SDJWTException } from "@sd-jwt/utils";
|
|
27
23
|
import {
|
|
28
24
|
createHashMapping,
|
|
25
|
+
createHashMappingSync,
|
|
29
26
|
decodeSdJwt,
|
|
27
|
+
decodeSdJwtSync,
|
|
30
28
|
getSDAlgAndPayload,
|
|
31
29
|
splitSdJwt,
|
|
32
30
|
unpack,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
unpackSync,
|
|
36
|
-
unpackObj
|
|
31
|
+
unpackObj,
|
|
32
|
+
unpackSync
|
|
37
33
|
} from "@sd-jwt/decode";
|
|
38
|
-
|
|
34
|
+
import {
|
|
35
|
+
SD_SEPARATOR
|
|
36
|
+
} from "@sd-jwt/types";
|
|
37
|
+
import { Disclosure, SDJWTException } from "@sd-jwt/utils";
|
|
38
|
+
var presentableKeys = (rawPayload, disclosures, hasher) => __async(null, null, function* () {
|
|
39
39
|
const { disclosureKeymap } = yield unpack(rawPayload, disclosures, hasher);
|
|
40
40
|
return Object.keys(disclosureKeymap).sort();
|
|
41
41
|
});
|
|
@@ -43,7 +43,7 @@ var presentableKeysSync = (rawPayload, disclosures, hasher) => {
|
|
|
43
43
|
const { disclosureKeymap } = unpackSync(rawPayload, disclosures, hasher);
|
|
44
44
|
return Object.keys(disclosureKeymap).sort();
|
|
45
45
|
};
|
|
46
|
-
var present = (sdJwt, presentFrame, hasher) => __async(
|
|
46
|
+
var present = (sdJwt, presentFrame, hasher) => __async(null, null, function* () {
|
|
47
47
|
const { jwt, kbJwt } = splitSdJwt(sdJwt);
|
|
48
48
|
const {
|
|
49
49
|
jwt: { payload },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-jwt/present",
|
|
3
|
-
"version": "0.15.2-next.
|
|
3
|
+
"version": "0.15.2-next.9+75d5780",
|
|
4
4
|
"description": "sd-jwt draft 7 implementation in typescript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"sd-jwt-vc"
|
|
26
26
|
],
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=
|
|
28
|
+
"node": ">=20"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"url": "https://github.com/openwallet-foundation/sd-jwt-js"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
},
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@sd-jwt/crypto-nodejs": "0.15.2-next.
|
|
40
|
+
"@sd-jwt/crypto-nodejs": "0.15.2-next.9+75d5780"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@sd-jwt/decode": "0.15.2-next.
|
|
44
|
-
"@sd-jwt/types": "0.15.2-next.
|
|
45
|
-
"@sd-jwt/utils": "0.15.2-next.
|
|
43
|
+
"@sd-jwt/decode": "0.15.2-next.9+75d5780",
|
|
44
|
+
"@sd-jwt/types": "0.15.2-next.9+75d5780",
|
|
45
|
+
"@sd-jwt/utils": "0.15.2-next.9+75d5780"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"esm"
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "75d5780fb53c5e2c886537b283503fc6fb088a4a"
|
|
64
64
|
}
|
package/src/present.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type Hasher,
|
|
3
|
-
type PresentationFrame,
|
|
4
|
-
SD_SEPARATOR,
|
|
5
|
-
} from '@sd-jwt/types';
|
|
6
|
-
import { Disclosure, SDJWTException } from '@sd-jwt/utils';
|
|
7
1
|
import {
|
|
8
2
|
createHashMapping,
|
|
3
|
+
createHashMappingSync,
|
|
9
4
|
decodeSdJwt,
|
|
5
|
+
decodeSdJwtSync,
|
|
10
6
|
getSDAlgAndPayload,
|
|
11
7
|
splitSdJwt,
|
|
12
8
|
unpack,
|
|
13
|
-
createHashMappingSync,
|
|
14
|
-
decodeSdJwtSync,
|
|
15
|
-
unpackSync,
|
|
16
9
|
unpackObj,
|
|
10
|
+
unpackSync,
|
|
17
11
|
} from '@sd-jwt/decode';
|
|
12
|
+
import {
|
|
13
|
+
type Hasher,
|
|
14
|
+
type PresentationFrame,
|
|
15
|
+
SD_SEPARATOR,
|
|
16
|
+
} from '@sd-jwt/types';
|
|
18
17
|
import type { Extensible, HasherSync } from '@sd-jwt/types/src/type';
|
|
18
|
+
import { Disclosure, SDJWTException } from '@sd-jwt/utils';
|
|
19
19
|
|
|
20
20
|
// Presentable keys
|
|
21
21
|
// The presentable keys are the path of JSON object that are presentable in the SD JWT
|
package/src/test/present.spec.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { describe, expect, test } from 'vitest';
|
|
2
1
|
import { digest } from '@sd-jwt/crypto-nodejs';
|
|
2
|
+
import { decodeSdJwt, decodeSdJwtSync } from '@sd-jwt/decode';
|
|
3
|
+
import type { PresentationFrame } from '@sd-jwt/types';
|
|
4
|
+
import { describe, expect, test } from 'vitest';
|
|
3
5
|
import {
|
|
4
|
-
type SerializedDisclosure,
|
|
5
6
|
present,
|
|
6
|
-
presentSync,
|
|
7
7
|
presentableKeys,
|
|
8
8
|
presentableKeysSync,
|
|
9
|
+
presentSync,
|
|
10
|
+
type SerializedDisclosure,
|
|
9
11
|
selectDisclosures,
|
|
10
12
|
transformPresentationFrame,
|
|
11
13
|
} from '../index';
|
|
12
|
-
import { decodeSdJwt, decodeSdJwtSync } from '@sd-jwt/decode';
|
|
13
|
-
import type { PresentationFrame } from '@sd-jwt/types';
|
|
14
14
|
|
|
15
15
|
describe('Present tests', () => {
|
|
16
16
|
test('presentableKeys', async () => {
|
|
@@ -275,7 +275,7 @@ describe('Present tests', () => {
|
|
|
275
275
|
};
|
|
276
276
|
|
|
277
277
|
const disclosures: SerializedDisclosure[] = [
|
|
278
|
-
//@ts-
|
|
278
|
+
//@ts-expect-error
|
|
279
279
|
{
|
|
280
280
|
encoded: 'WyJiMDQ3NjBiOTgxMDgyM2ZhIiwiZmlyc3RuYW1lIiwiSm9obiJd',
|
|
281
281
|
salt: 'b04760b9810823fa',
|