@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/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/upload";
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":";;;;;;;;"}
@@ -1,5 +1,5 @@
1
- export * from './types';
2
1
  export * from './mediaInfo';
3
2
  export * from './toUploadPayload';
4
- export * from './uploadDetails';
3
+ export * from './types';
5
4
  export * from './upload';
5
+ export * from './uploadDetails';
@@ -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/upload";
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,3 +1,3 @@
1
- import { NewMediaInfos, NewMediaInfo } from './types';
1
+ import { NewMediaInfo, NewMediaInfos } from './types';
2
2
  export declare const newMediaInfo: NewMediaInfo;
3
3
  export declare const newMediaInfos: NewMediaInfos;
@@ -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';
@@ -1,3 +1,3 @@
1
- import { UploadItems, UploadItem } from './types';
1
+ import { UploadItem, UploadItems } from './types';
2
2
  export declare const uploadItem: UploadItem;
3
3
  export declare const uploadItems: UploadItems;
@@ -2,3 +2,4 @@ import { d } from "../chunks/decode";
2
2
  export {
3
3
  d as decodeAPIResponse
4
4
  };
5
+ //# sourceMappingURL=index.js.map
@@ -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",
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
- "build": "npm run generate:index && tsc && vite build",
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": "git+https://github.com/Adgytec/adgytec-web-utils.git"
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
  }