@uwrl/qc-utils 0.0.17 → 0.0.18

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.
Files changed (27) hide show
  1. package/README.md +56 -0
  2. package/dist/index.js +2149 -893
  3. package/dist/index.umd.cjs +15 -5
  4. package/dist/types/index.d.ts +38 -16
  5. package/dist/utils/format.d.ts +0 -1
  6. package/dist/utils/index.d.ts +1 -0
  7. package/dist/utils/plotting/__tests__/calibration.spec.d.ts +16 -0
  8. package/dist/utils/plotting/__tests__/observation-record-paths.spec.d.ts +21 -0
  9. package/dist/utils/plotting/__tests__/operation-cores.spec.d.ts +12 -0
  10. package/dist/utils/plotting/__tests__/workerMocks.d.ts +119 -0
  11. package/dist/utils/plotting/__tests__/workers.spec.d.ts +18 -0
  12. package/dist/utils/plotting/add-data.worker.d.ts +1 -0
  13. package/dist/utils/plotting/calibration.d.ts +99 -0
  14. package/dist/utils/plotting/change.worker.d.ts +1 -0
  15. package/dist/utils/plotting/delete-data.worker.d.ts +1 -0
  16. package/dist/utils/plotting/drift-correction.worker.d.ts +1 -0
  17. package/dist/utils/plotting/fill-gaps.worker.d.ts +1 -0
  18. package/dist/utils/plotting/find-gaps.worker.d.ts +1 -0
  19. package/dist/utils/plotting/interpolate.worker.d.ts +1 -0
  20. package/dist/utils/plotting/observation-record.d.ts +153 -27
  21. package/dist/utils/plotting/operation-cores.d.ts +139 -0
  22. package/dist/utils/plotting/persistence.worker.d.ts +1 -0
  23. package/dist/utils/plotting/rate-of-change.worker.d.ts +1 -0
  24. package/dist/utils/plotting/shift-datetimes.worker.d.ts +1 -0
  25. package/dist/utils/plotting/value-threshold.worker.d.ts +1 -0
  26. package/package.json +61 -56
  27. /package/dist/utils/plotting/{__tests__/delete-data.worker.spec.d.ts → change-values.worker.d.ts} +0 -0
package/package.json CHANGED
@@ -1,57 +1,62 @@
1
- {
2
- "name": "@uwrl/qc-utils",
3
- "version": "0.0.17",
4
- "description": "Quality Control Utilities",
5
- "homepage": "https://github.com/hydroserver2/qc-utils#readme",
6
- "bugs": {
7
- "url": "https://github.com/hydroserver2/qc-utils/issues"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/hydroserver2/qc-utils.git"
12
- },
13
- "license": "ISC",
14
- "author": "Maurier Ramirez",
15
- "main": "./dist/index.cjs",
16
- "module": "./dist/index.js",
17
- "exports": {
18
- ".": {
19
- "require": "./dist/index.cjs",
20
- "import": "./dist/index.js"
21
- }
22
- },
23
- "types": "./dist/types.d.ts",
24
- "files": [
25
- "dist"
26
- ],
27
- "type": "module",
28
- "scripts": {
29
- "build": "npm run clean:dist && vite build --mode prod && vue-tsc --declaration --emitDeclarationOnly",
30
- "pub": "npm publish --access public",
31
- "clean:dist": "rimraf dist",
32
- "clean:coverage": "rimraf coverage",
33
- "preview": "vite preview",
34
- "lint": "eslint .",
35
- "lint:fix": "eslint . --fix",
36
- "test": "npm run clean:coverage",
37
- "up": "taze major -I",
38
- "link": "npm link"
39
- },
40
- "dependencies": {
41
- "rxjs": "^7.8.2",
42
- "vite": "^7.0.4"
43
- },
44
- "devDependencies": {
45
- "@types/node": "^24.0.14",
46
- "eslint": "^9.27.0",
47
- "eslint-plugin-cypress": "^5.0.0",
48
- "eslint-plugin-prettier": "^5.4.1",
49
- "rimraf": "^6.0.1",
50
- "rollup-plugin-visualizer": "^6.0.3",
51
- "stylelint": "^16.20.0",
52
- "taze": "^19.1.0",
53
- "typescript": "latest",
54
- "vitest": "^3.2.4",
55
- "vue-tsc": "^3.0.5"
56
- }
1
+ {
2
+ "name": "@uwrl/qc-utils",
3
+ "version": "0.0.18",
4
+ "description": "Quality Control Utilities",
5
+ "homepage": "https://github.com/hydroserver2/qc-utils#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/hydroserver2/qc-utils/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/hydroserver2/qc-utils.git"
12
+ },
13
+ "license": "ISC",
14
+ "author": "Maurier Ramirez",
15
+ "main": "./dist/index.cjs",
16
+ "module": "./dist/index.js",
17
+ "exports": {
18
+ ".": {
19
+ "require": "./dist/index.cjs",
20
+ "import": "./dist/index.js"
21
+ }
22
+ },
23
+ "types": "./dist/types.d.ts",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "type": "module",
28
+ "scripts": {
29
+ "build": "npm run clean:dist && vite build --mode prod && vue-tsc --declaration --emitDeclarationOnly",
30
+ "pub": "npm publish --access public",
31
+ "clean:dist": "rimraf dist",
32
+ "clean:coverage": "rimraf coverage",
33
+ "preview": "vite preview",
34
+ "lint": "eslint .",
35
+ "lint:fix": "eslint . --fix",
36
+ "test": "vitest run",
37
+ "coverage": "vitest run --coverage",
38
+ "up": "taze major -I",
39
+ "link": "npm link",
40
+ "dev": "vite build --watch --mode prod"
41
+ },
42
+ "dependencies": {
43
+ "rxjs": "^7.8.2",
44
+ "vite": "^8.0.0"
45
+ },
46
+ "devDependencies": {
47
+ "@eslint/js": "^10.0.1",
48
+ "@types/node": "^25.0.0",
49
+ "eslint": "^10.0.0",
50
+ "eslint-plugin-cypress": "^6.0.0",
51
+ "eslint-plugin-prettier": "^5.4.1",
52
+ "happy-dom": "^20.9.0",
53
+ "rimraf": "^6.0.1",
54
+ "rollup-plugin-visualizer": "^7.0.0",
55
+ "stylelint": "^17.0.0",
56
+ "taze": "^19.1.0",
57
+ "typescript": "latest",
58
+ "typescript-eslint": "^8.58.2",
59
+ "vitest": "^4.0.1",
60
+ "vue-tsc": "^3.0.5"
61
+ }
57
62
  }