@nexeraid/identity-schemas 2.3.22-dev → 2.3.23-dev
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.
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from "./declarations/src/index";
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV4ZXJhaWQtaWRlbnRpdHktc2NoZW1hcy5janMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4vZGVjbGFyYXRpb25zL3NyYy9pbmRleC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBIn0=
|
package/dist/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexeraid/identity-schemas",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.23",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"author": "",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"import":
|
|
11
|
-
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/nexeraid-identity-schemas.esm.d.mts",
|
|
12
|
+
"default": "./dist/nexeraid-identity-schemas.esm.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/nexeraid-identity-schemas.cjs.d.ts",
|
|
16
|
+
"default": "./dist/nexeraid-identity-schemas.cjs.js"
|
|
17
|
+
}
|
|
12
18
|
},
|
|
13
19
|
"./identity": {
|
|
14
20
|
"import": "./identity/dist/nexeraid-identity-schemas-identity.esm.js",
|
|
@@ -38,8 +44,9 @@
|
|
|
38
44
|
"providers"
|
|
39
45
|
],
|
|
40
46
|
"scripts": {
|
|
41
|
-
"build": "preconstruct build && npm run copy-package-json-to-dist",
|
|
47
|
+
"build": "preconstruct build && npm run copy-package-json-to-dist && npm run copy-type-defs-as-duplicate",
|
|
42
48
|
"copy-package-json-to-dist": "copyfiles package.json dist/",
|
|
49
|
+
"copy-type-defs-as-duplicate": "cp dist/nexeraid-identity-schemas.cjs.d.ts dist/nexeraid-identity-schemas.esm.d.mts",
|
|
43
50
|
"download-schemas": "./scripts/download-schemas.sh",
|
|
44
51
|
"generate-schemas-ts": "./scripts/generate-schemas-ts.sh",
|
|
45
52
|
"generate-zod-schemas": "./scripts/generate-zod-schemas.sh",
|
package/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexeraid/identity-schemas",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.23-dev",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"author": "",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"import":
|
|
11
|
-
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/nexeraid-identity-schemas.esm.d.mts",
|
|
12
|
+
"default": "./dist/nexeraid-identity-schemas.esm.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/nexeraid-identity-schemas.cjs.d.ts",
|
|
16
|
+
"default": "./dist/nexeraid-identity-schemas.cjs.js"
|
|
17
|
+
}
|
|
12
18
|
},
|
|
13
19
|
"./identity": {
|
|
14
20
|
"import": "./identity/dist/nexeraid-identity-schemas-identity.esm.js",
|
|
@@ -64,8 +70,9 @@
|
|
|
64
70
|
]
|
|
65
71
|
},
|
|
66
72
|
"scripts": {
|
|
67
|
-
"build": "preconstruct build && npm run copy-package-json-to-dist",
|
|
73
|
+
"build": "preconstruct build && npm run copy-package-json-to-dist && npm run copy-type-defs-as-duplicate",
|
|
68
74
|
"copy-package-json-to-dist": "copyfiles package.json dist/",
|
|
75
|
+
"copy-type-defs-as-duplicate": "cp dist/nexeraid-identity-schemas.cjs.d.ts dist/nexeraid-identity-schemas.esm.d.mts",
|
|
69
76
|
"download-schemas": "./scripts/download-schemas.sh",
|
|
70
77
|
"generate-schemas-ts": "./scripts/generate-schemas-ts.sh",
|
|
71
78
|
"generate-zod-schemas": "./scripts/generate-zod-schemas.sh",
|