@zintrust/storage 0.4.87 → 0.4.92
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/build-manifest.json +14 -18
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/register.d.ts +2 -3
- package/dist/register.js +2 -2
- package/package.json +3 -3
package/dist/build-manifest.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/storage",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"buildDate": "2026-04-
|
|
3
|
+
"version": "0.4.92",
|
|
4
|
+
"buildDate": "2026-04-10T08:40:36.581Z",
|
|
5
5
|
"buildEnvironment": {
|
|
6
|
-
"node": "
|
|
7
|
-
"platform": "
|
|
8
|
-
"arch": "
|
|
6
|
+
"node": "v20.20.2",
|
|
7
|
+
"platform": "linux",
|
|
8
|
+
"arch": "x64"
|
|
9
9
|
},
|
|
10
10
|
"git": {
|
|
11
|
-
"commit": "
|
|
12
|
-
"branch": "
|
|
11
|
+
"commit": "d195a996",
|
|
12
|
+
"branch": "master"
|
|
13
13
|
},
|
|
14
14
|
"package": {
|
|
15
15
|
"engines": {
|
|
@@ -23,25 +23,21 @@
|
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
25
|
"files": {
|
|
26
|
-
"build-manifest.json": {
|
|
27
|
-
"size": 1416,
|
|
28
|
-
"sha256": "4fd1ab38ac6be3576817c66d0a1a8fc1233d3805b9eddd7c58a9591ef60f84a9"
|
|
29
|
-
},
|
|
30
26
|
"index.d.ts": {
|
|
31
|
-
"size":
|
|
32
|
-
"sha256": "
|
|
27
|
+
"size": 487,
|
|
28
|
+
"sha256": "fd2e25abb5cd7ecb06186a31fce33d7115034cf88c5252fe09d543668de41f5d"
|
|
33
29
|
},
|
|
34
30
|
"index.js": {
|
|
35
31
|
"size": 517,
|
|
36
|
-
"sha256": "
|
|
32
|
+
"sha256": "f753ccecaaea99ea95445279e7c3850d72b02cca2bca0eb975764c7a0dea013f"
|
|
37
33
|
},
|
|
38
34
|
"register.d.ts": {
|
|
39
|
-
"size":
|
|
40
|
-
"sha256": "
|
|
35
|
+
"size": 184,
|
|
36
|
+
"sha256": "d47ae5ce9d74ee6e5c3a2f488b0a382e33529e7167881273f996c0cee2b24993"
|
|
41
37
|
},
|
|
42
38
|
"register.js": {
|
|
43
|
-
"size":
|
|
44
|
-
"sha256": "
|
|
39
|
+
"size": 216,
|
|
40
|
+
"sha256": "d7266f1000ada692ee185b2544d9ae190e99bc27ef2dbb0e01819bb5982ef465"
|
|
45
41
|
},
|
|
46
42
|
"registerStreamingMultipartParser.d.ts": {
|
|
47
43
|
"size": 372,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type { MultipartFieldValue, MultipartParseInput, MultipartParserProvider, ParsedMultipartData, } from '@zintrust/core';
|
|
2
|
-
export { registerStreamingMultipartParser, type StreamingMultipartParserOptions, } from './registerStreamingMultipartParser';
|
|
2
|
+
export { registerStreamingMultipartParser, type StreamingMultipartParserOptions, } from './registerStreamingMultipartParser.js';
|
|
3
3
|
/**
|
|
4
4
|
* Package version and build metadata
|
|
5
5
|
* Available at runtime for debugging and health checks
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { registerStreamingMultipartParser, } from './registerStreamingMultipartParser';
|
|
1
|
+
export { registerStreamingMultipartParser, } from './registerStreamingMultipartParser.js';
|
|
2
2
|
/**
|
|
3
3
|
* Package version and build metadata
|
|
4
4
|
* Available at runtime for debugging and health checks
|
package/dist/register.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export type { StreamingMultipartParserOptions } from './registerStreamingMultipartParser';
|
|
3
|
-
export { registerStreamingMultipartParser };
|
|
1
|
+
export { registerStreamingMultipartParser } from './registerStreamingMultipartParser.js';
|
|
2
|
+
export type { StreamingMultipartParserOptions } from './registerStreamingMultipartParser.js';
|
package/dist/register.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { registerStreamingMultipartParser } from './registerStreamingMultipartParser';
|
|
2
|
-
export { registerStreamingMultipartParser };
|
|
1
|
+
import { registerStreamingMultipartParser } from './registerStreamingMultipartParser.js';
|
|
2
|
+
export { registerStreamingMultipartParser } from './registerStreamingMultipartParser.js';
|
|
3
3
|
registerStreamingMultipartParser();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/storage",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.92",
|
|
4
4
|
"description": "Storage abstraction and upload utilities for ZinTrust.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"node": ">=20.0.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@zintrust/core": "^0.4.
|
|
26
|
+
"@zintrust/core": "^0.4.91"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"busboy": "^1.6.0"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"adapter"
|
|
40
40
|
],
|
|
41
41
|
"scripts": {
|
|
42
|
-
"build": "tsc -p tsconfig.json",
|
|
42
|
+
"build": "tsc -p tsconfig.json && node ../../scripts/fix-dist-esm-imports.mjs dist",
|
|
43
43
|
"prepublishOnly": "npm run build"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|