@nxtedition/types 23.0.62 → 23.0.63
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/common/render-profile.d.ts +15 -0
- package/dist/common/settings.d.ts +12 -0
- package/dist/common/subtitle-style.d.ts +1 -0
- package/dist/nxtpression.d.ts +45 -7
- package/dist/records/domains/event.d.ts +2 -0
- package/dist/records/domains/script.d.ts +8 -3
- package/dist/records/domains/shotbox.d.ts +1 -0
- package/dist/records/validate/assert-guard.js +1061 -613
- package/dist/records/validate/assert.js +1061 -613
- package/dist/records/validate/is.js +72 -63
- package/dist/records/validate/schemas.d.ts +9 -6
- package/dist/records/validate/schemas.js +844 -859
- package/dist/records/validate/stringify.js +156 -114
- package/dist/records/validate/validate-equals.js +1473 -743
- package/dist/records/validate/validate.js +963 -601
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nxtedition/types",
|
|
3
|
-
"version": "23.0.
|
|
3
|
+
"version": "23.0.63",
|
|
4
4
|
"description": "TypeScript types to be shared between nxtedition packages.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"build": "tspc --project tsconfig.transform.json",
|
|
31
31
|
"postbuild": "yarn bundle-for-nxtpressions",
|
|
32
32
|
"bundle-for-nxtpressions": "yarn api-extractor run --local",
|
|
33
|
-
"lint": "npx
|
|
33
|
+
"lint": "npx oxlint ./src",
|
|
34
34
|
"prepare": "ts-patch install",
|
|
35
35
|
"prepublishOnly": "yarn lint && yarn test",
|
|
36
|
-
"test": "yarn build && node --test",
|
|
36
|
+
"test": "yarn build && node --test && tsd --typings dist/index.d.ts --files src/**/*.tds.ts ",
|
|
37
37
|
"watch": "nodemon --watch src --ext ts --exec 'yarn build'"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"rfc6902": "^5.1.1",
|
|
43
43
|
"rxjs": "^7.8.1",
|
|
44
44
|
"type-fest": "^5.0.1",
|
|
45
|
-
"typia": "^
|
|
45
|
+
"typia": "^11.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@microsoft/api-extractor": "7.52.13",
|