@magic-xpa/utils 4.1201.0-dev4121.307 → 4.1201.0-dev4121.309
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/fesm2022/magic-xpa-utils.mjs +23 -2
- package/fesm2022/magic-xpa-utils.mjs.map +1 -1
- package/package.json +6 -6
- package/types/magic-xpa-utils.d.ts +2847 -0
- package/index.d.ts +0 -29
- package/src/Base64.d.ts +0 -17
- package/src/ChoiceUtils.d.ts +0 -5
- package/src/Constants.d.ts +0 -71
- package/src/DateTimeUtils.d.ts +0 -5
- package/src/DateUtil.d.ts +0 -6
- package/src/InternalInterface.d.ts +0 -337
- package/src/JSON_Utils.d.ts +0 -3
- package/src/Logger.d.ts +0 -49
- package/src/MagicConstants.d.ts +0 -9
- package/src/Misc.d.ts +0 -13
- package/src/MsgInterface.d.ts +0 -180
- package/src/PICInterface.d.ts +0 -50
- package/src/PlatformUtils.d.ts +0 -5
- package/src/Queue.d.ts +0 -9
- package/src/Randomizer.d.ts +0 -14
- package/src/RequestInfo.d.ts +0 -15
- package/src/Rtf.d.ts +0 -152
- package/src/StorageAttribute.d.ts +0 -14
- package/src/StrUtil.d.ts +0 -46
- package/src/SyncExecutionHelper.d.ts +0 -7
- package/src/UtilDateJpn.d.ts +0 -19
- package/src/UtilImeJpn.d.ts +0 -9
- package/src/UtilStrByteMode.d.ts +0 -27
- package/src/XMLConstants.d.ts +0 -170
- package/src/Xml/XmlParser.d.ts +0 -34
- package/src/enums.d.ts +0 -1564
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/utils",
|
|
3
|
-
"version": "4.1201.0-dev4121.
|
|
3
|
+
"version": "4.1201.0-dev4121.309",
|
|
4
4
|
"description": "magic utils package",
|
|
5
5
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"
|
|
7
|
+
"fast-xml-parser": "^5.3.7",
|
|
8
8
|
"tslib": "^2.3.0"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@magic-xpa/mscorelib": "4.1201.0-dev4121.
|
|
11
|
+
"@magic-xpa/mscorelib": "4.1201.0-dev4121.309"
|
|
12
12
|
},
|
|
13
13
|
"module": "fesm2022/magic-xpa-utils.mjs",
|
|
14
|
-
"typings": "
|
|
14
|
+
"typings": "types/magic-xpa-utils.d.ts",
|
|
15
15
|
"exports": {
|
|
16
16
|
"./package.json": {
|
|
17
17
|
"default": "./package.json"
|
|
18
18
|
},
|
|
19
19
|
".": {
|
|
20
|
-
"types": "./
|
|
20
|
+
"types": "./types/magic-xpa-utils.d.ts",
|
|
21
21
|
"default": "./fesm2022/magic-xpa-utils.mjs"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"scripts": {
|
|
26
|
-
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled
|
|
26
|
+
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with partial compilation mode, before attempting to publish.\\n')\" && exit 1"
|
|
27
27
|
}
|
|
28
28
|
}
|