payid 1.0.2 → 1.0.4
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.js +4 -4
- package/package.json +22 -8
package/dist/index.js
CHANGED
|
@@ -11,10 +11,6 @@ import {
|
|
|
11
11
|
import {
|
|
12
12
|
sessionPolicy_exports
|
|
13
13
|
} from "./chunk-XMUHMJRD.js";
|
|
14
|
-
import {
|
|
15
|
-
PayIDServer,
|
|
16
|
-
server_exports
|
|
17
|
-
} from "./chunk-ESTGPUEQ.js";
|
|
18
14
|
import {
|
|
19
15
|
PayIDClient,
|
|
20
16
|
client_exports
|
|
@@ -22,6 +18,10 @@ import {
|
|
|
22
18
|
import "./chunk-GG34PNTF.js";
|
|
23
19
|
import "./chunk-AUW7WDAB.js";
|
|
24
20
|
import "./chunk-6VPSJFO4.js";
|
|
21
|
+
import {
|
|
22
|
+
PayIDServer,
|
|
23
|
+
server_exports
|
|
24
|
+
} from "./chunk-ESTGPUEQ.js";
|
|
25
25
|
import {
|
|
26
26
|
verifyAttestation
|
|
27
27
|
} from "./chunk-HKHRYRD6.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payid",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,31 +8,45 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
12
14
|
},
|
|
13
15
|
"./sessionPolicy": {
|
|
14
16
|
"types": "./dist/sessionPolicy/index.d.ts",
|
|
15
|
-
"import": "./dist/sessionPolicy/index.js"
|
|
17
|
+
"import": "./dist/sessionPolicy/index.js",
|
|
18
|
+
"require": "./dist/sessionPolicy/index.js",
|
|
19
|
+
"default": "./dist/sessionPolicy/index.js"
|
|
16
20
|
},
|
|
17
21
|
"./rule": {
|
|
18
22
|
"types": "./dist/rule/index.d.ts",
|
|
19
|
-
"import": "./dist/rule/index.js"
|
|
23
|
+
"import": "./dist/rule/index.js",
|
|
24
|
+
"require": "./dist/rule/index.js",
|
|
25
|
+
"default": "./dist/rule/index.js"
|
|
20
26
|
},
|
|
21
27
|
"./issuer": {
|
|
22
28
|
"types": "./dist/issuer/index.d.ts",
|
|
23
|
-
"import": "./dist/issuer/index.js"
|
|
29
|
+
"import": "./dist/issuer/index.js",
|
|
30
|
+
"require": "./dist/issuer/index.js",
|
|
31
|
+
"default": "./dist/issuer/index.js"
|
|
24
32
|
},
|
|
25
33
|
"./context": {
|
|
26
34
|
"types": "./dist/context/index.d.ts",
|
|
27
|
-
"import": "./dist/context/index.js"
|
|
35
|
+
"import": "./dist/context/index.js",
|
|
36
|
+
"require": "./dist/context/index.js",
|
|
37
|
+
"default": "./dist/context/index.js"
|
|
28
38
|
},
|
|
29
39
|
"./client": {
|
|
30
40
|
"types": "./dist/core/client/index.d.ts",
|
|
31
|
-
"import": "./dist/core/client/index.js"
|
|
41
|
+
"import": "./dist/core/client/index.js",
|
|
42
|
+
"require": "./dist/core/client/index.js",
|
|
43
|
+
"default": "./dist/core/client/index.js"
|
|
32
44
|
},
|
|
33
45
|
"./server": {
|
|
34
46
|
"types": "./dist/core/server/index.d.ts",
|
|
35
|
-
"import": "./dist/core/server/index.js"
|
|
47
|
+
"import": "./dist/core/server/index.js",
|
|
48
|
+
"require": "./dist/core/server/index.js",
|
|
49
|
+
"default": "./dist/core/server/index.js"
|
|
36
50
|
}
|
|
37
51
|
},
|
|
38
52
|
"files": [
|