@nxtedition/types 23.1.4 → 23.1.6
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/block.d.ts +1 -0
- package/dist/common/block.js +31 -13
- package/dist/common/file.js +9 -8
- package/dist/common/location.js +1 -1
- package/dist/common/render-scene.d.ts +5 -0
- package/dist/common/rule.js +2 -2
- package/dist/nxtpression.d.ts +120 -163
- package/dist/records/domains/event.d.ts +14 -0
- package/dist/records/validate/assert-guard.js +333 -162
- package/dist/records/validate/assert.js +335 -162
- package/dist/records/validate/is.js +32 -26
- package/dist/records/validate/schemas.js +160 -4
- package/dist/records/validate/stringify.js +269 -262
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +567 -238
- package/dist/records/validate/validate.js +330 -162
- package/dist/rpc.js +2 -2
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +13 -14
package/dist/rpc.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as __typia_transform__assertGuard from "typia/lib/internal/_assertGuard
|
|
2
|
-
import * as __typia_transform__accessExpressionAsString from "typia/lib/internal/_accessExpressionAsString
|
|
1
|
+
import * as __typia_transform__assertGuard from "typia/lib/internal/_assertGuard";
|
|
2
|
+
import * as __typia_transform__accessExpressionAsString from "typia/lib/internal/_accessExpressionAsString";
|
|
3
3
|
import typia from 'typia';
|
|
4
4
|
export const assertGuardNxtExport = (() => { const _io0 = input => "number" === typeof input.version && (undefined === input.date || "string" === typeof input.date) && (undefined === input.root || Array.isArray(input.root) && input.root.every(elem => "string" === typeof elem)) && ("object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io1(input.assets)) && (undefined === input.files || Array.isArray(input.files) && input.files.every(elem => "string" === typeof elem)); const _io1 = input => Object.keys(input).every(key => {
|
|
5
5
|
const value = input[key];
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nxtedition/types",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.6",
|
|
4
4
|
"description": "TypeScript types to be shared between nxtedition packages.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -39,24 +39,23 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@types/lodash": "^4.17.17",
|
|
41
41
|
"lodash": "^4.17.21",
|
|
42
|
-
"rfc6902": "^5.
|
|
43
|
-
"rxjs": "^7.8.
|
|
44
|
-
"type-fest": "^5.
|
|
45
|
-
"typia": "^
|
|
42
|
+
"rfc6902": "^5.2.0",
|
|
43
|
+
"rxjs": "^7.8.2",
|
|
44
|
+
"type-fest": "^5.4.4",
|
|
45
|
+
"typia": "^12.0.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "7.
|
|
49
|
-
"@
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"rimraf": "^5.0.8",
|
|
48
|
+
"@microsoft/api-extractor": "7.57.7",
|
|
49
|
+
"@types/node": "^25.5.0",
|
|
50
|
+
"fast-json-stringify": "^6.3.0",
|
|
51
|
+
"lexical": "^0.41.0",
|
|
52
|
+
"mitata": "^1.0.34",
|
|
53
|
+
"nodemon": "^3.1.14",
|
|
54
|
+
"rimraf": "^6.1.3",
|
|
56
55
|
"spark-md5": "^3.0.2",
|
|
57
56
|
"ts-node": "^10.9.2",
|
|
58
57
|
"ts-patch": "^3.3.0",
|
|
59
58
|
"tsd": "^0.33.0",
|
|
60
|
-
"typescript": "5.
|
|
59
|
+
"typescript": "5.9.3"
|
|
61
60
|
}
|
|
62
61
|
}
|