@adgytec/adgytec-web-utils 0.0.4 → 0.0.5
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/chunks/applicationError +3 -3
- package/dist/chunks/applicationError.map +1 -0
- package/dist/chunks/decode +21 -20
- package/dist/chunks/decode.map +1 -0
- package/dist/chunks/formParse +1 -0
- package/dist/chunks/formParse.map +1 -0
- package/dist/chunks/parse +5 -4
- package/dist/chunks/parse.map +1 -0
- package/dist/chunks/schema +219 -218
- package/dist/chunks/schema.map +1 -0
- package/dist/chunks/{upload → uploadDetails} +78 -77
- package/dist/chunks/uploadDetails.map +1 -0
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +7 -6
- package/dist/constants/index.js.map +1 -0
- package/dist/errorCodes/index.d.ts +5 -5
- package/dist/errorCodes/index.js +48 -47
- package/dist/errorCodes/index.js.map +1 -0
- package/dist/errorSchema/index.d.ts +6 -6
- package/dist/errorSchema/index.js +1 -0
- package/dist/errorSchema/index.js.map +1 -0
- package/dist/errors/index.d.ts +1 -1
- package/dist/errors/index.js +1 -0
- package/dist/errors/index.js.map +1 -0
- package/dist/errors/parse.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -0
- package/dist/media/index.d.ts +2 -2
- package/dist/media/index.js +2 -1
- package/dist/media/index.js.map +1 -0
- package/dist/media/mediaInfo.d.ts +1 -1
- package/dist/media/types/index.d.ts +3 -3
- package/dist/media/upload.d.ts +1 -1
- package/dist/response/index.js +1 -0
- package/dist/response/index.js.map +1 -0
- package/package.json +13 -6
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { a as f, c as v, b as g, d as U, e as y, f as F, g as I, h as x, i as C,
|
|
|
4
4
|
import { f as Na } from "./chunks/formParse";
|
|
5
5
|
import { A as Da, B as Ma } from "./chunks/applicationError";
|
|
6
6
|
import { p as qa } from "./chunks/parse";
|
|
7
|
-
import { U as Va, n as ba, a as Oa, b as Ta, c as ka, t as Ha, d as La, u as ja, e as za } from "./chunks/
|
|
7
|
+
import { U as Va, n as ba, a as Oa, b as Ta, c as ka, t as Ha, d as La, u as ja, e as za } from "./chunks/uploadDetails";
|
|
8
8
|
import { d as Ka } from "./chunks/decode";
|
|
9
9
|
export {
|
|
10
10
|
Da as ApplicationError,
|
|
@@ -99,3 +99,4 @@ export {
|
|
|
99
99
|
Ca as userNotExistsInOrganizationManagementSchema,
|
|
100
100
|
wa as userNotFoundSchema
|
|
101
101
|
};
|
|
102
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
package/dist/media/index.d.ts
CHANGED
package/dist/media/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { U as e, n as o, a as d, b as l, c as t, t as p, d as n, u as U, e as i } from "../chunks/
|
|
1
|
+
import { U as e, n as o, a as d, b as l, c as t, t as p, d as n, u as U, e as i } from "../chunks/uploadDetails";
|
|
2
2
|
export {
|
|
3
3
|
e as UploadDetailsAPIResSchema,
|
|
4
4
|
o as newMediaInfo,
|
|
@@ -10,3 +10,4 @@ export {
|
|
|
10
10
|
U as uploadItem,
|
|
11
11
|
i as uploadItems
|
|
12
12
|
};
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './mediaInfo';
|
|
2
|
-
export * from './toUploadPayload';
|
|
3
|
-
export * from './uploadDetails';
|
|
4
1
|
export * from './apiResponse';
|
|
5
2
|
export * from './lifecycle';
|
|
3
|
+
export * from './mediaInfo';
|
|
4
|
+
export * from './toUploadPayload';
|
|
6
5
|
export * from './upload';
|
|
6
|
+
export * from './uploadDetails';
|
package/dist/media/upload.d.ts
CHANGED
package/dist/response/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adgytec/adgytec-web-utils",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"files": [
|
|
@@ -20,21 +20,28 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"generate:index": "node src/scripts/generate-root-index.mjs",
|
|
23
|
+
"lint": "biome check .",
|
|
24
|
+
"lint:fix": "biome check --write .",
|
|
25
|
+
"format": "biome format --write .",
|
|
23
26
|
"dev": "vite",
|
|
24
|
-
"
|
|
27
|
+
"typecheck": "tsc -b",
|
|
28
|
+
"build": "npm run generate:index && npm run lint && npm run typecheck && vite build",
|
|
25
29
|
"preview": "vite preview",
|
|
26
|
-
"release": "npm run build && npm publish --public"
|
|
30
|
+
"release": "npm run build && npm publish --public",
|
|
31
|
+
"test": "echo \"No tests\""
|
|
27
32
|
},
|
|
28
33
|
"peerDependencies": {
|
|
29
34
|
"@datastructures-js/queue": ">=4.3.0",
|
|
35
|
+
"is-network-error": ">=1.3.1",
|
|
30
36
|
"uuid": ">=13.0.0",
|
|
31
|
-
"zod": ">=4.3.6"
|
|
32
|
-
"is-network-error": ">=1.3.1"
|
|
37
|
+
"zod": ">=4.3.6"
|
|
33
38
|
},
|
|
34
39
|
"devDependencies": {
|
|
40
|
+
"@biomejs/biome": "^2.4.8",
|
|
35
41
|
"@datastructures-js/queue": "^4.3.0",
|
|
36
42
|
"@types/node": "^25.3.3",
|
|
37
43
|
"glob": "^13.0.6",
|
|
44
|
+
"sonda": "^0.11.1",
|
|
38
45
|
"tsx": "^4.21.0",
|
|
39
46
|
"typescript": "~5.9.3",
|
|
40
47
|
"uuid": "^13.0.0",
|
|
@@ -50,7 +57,7 @@
|
|
|
50
57
|
"license": "MIT",
|
|
51
58
|
"repository": {
|
|
52
59
|
"type": "git",
|
|
53
|
-
"url": "
|
|
60
|
+
"url": "https://github.com/Adgytec/adgytec-web-utils.git"
|
|
54
61
|
},
|
|
55
62
|
"homepage": "https://github.com/Adgytec/adgytec-web-utils/#/README.md"
|
|
56
63
|
}
|