@mll-lab/js-utils 2.20.0 → 2.21.0

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.
@@ -1,15 +1,18 @@
1
1
  export declare type PredicateFn = (value: unknown) => boolean;
2
2
  export declare const isAlphanumeric: PredicateFn;
3
3
  /**
4
- * BSNR (Betriebsstättennummer) ist eine eindeutige Zuordnung von Leistungen zu dem entsprechenden Ort der Leistungserbringung ermöglicht,
5
- * für alle vertrags(zahn)ärztlichen Leistungserbringer gültig
4
+ * Die BSNR (Betriebsstättennummer) ist eine neunstellige Zahl, die eine eindeutige Zuordnung
5
+ * von Leistungen zu dem entsprechenden Ort der Leistungserbringung ermöglicht.
6
+ * Die BSNR ist für alle vertrags(zahn)ärztlichen Leistungserbringer gültig
6
7
  * und klar abzugrenzen vom Institutskennzeichen (IK-Nummer) eines Krankenhauses.
8
+ *
9
+ * https://reimbursement.institute/glossar/bsnr-betriebsstaettennummer
7
10
  */
8
11
  export declare const isBSNR: PredicateFn;
9
12
  export declare const EMAIL_REGEX: RegExp;
10
13
  export declare const isEmail: PredicateFn;
14
+ export declare const isLabId: PredicateFn;
11
15
  export declare const isOnlyDigits: PredicateFn;
16
+ export declare const isRackBarcode: PredicateFn;
12
17
  export declare const isURL: PredicateFn;
13
18
  export declare const isWord: PredicateFn;
14
- export declare const isLabId: PredicateFn;
15
- export declare const isRackBarcode: PredicateFn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mll-lab/js-utils",
3
- "version": "2.20.0",
3
+ "version": "2.21.0",
4
4
  "main": "dist/index.common.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  "test:watch": "jest --watch",
15
15
  "typecheck": "tsc --noEmit",
16
16
  "lint": "eslint --ignore-path .gitignore --ext .ts .",
17
- "format": "yarn run lint --fix",
17
+ "fix": "yarn run lint --fix",
18
18
  "release": "standard-version"
19
19
  },
20
20
  "repository": {
@@ -47,30 +47,36 @@
47
47
  "@babel/plugin-transform-runtime": "^7.13.6",
48
48
  "@babel/preset-env": "^7.13.0",
49
49
  "@babel/runtime": "^7.13.6",
50
- "@mll-lab/eslint-config": "^1.19.0",
51
- "@mll-lab/eslint-plugin": "^1.3.1",
50
+ "@mll-lab/eslint-config": "^3.1.0",
51
+ "@mll-lab/eslint-plugin": "^1.3.4",
52
52
  "@mll-lab/prettier-config": "^1.0.0",
53
53
  "@mll-lab/tsconfig": "^1.1.0",
54
54
  "@rollup/plugin-babel": "^5.3.0",
55
55
  "@rollup/plugin-commonjs": "^18.0.0",
56
56
  "@rollup/plugin-node-resolve": "^11.2.1",
57
57
  "@rollup/plugin-typescript": "^8.2.1",
58
- "@semantic-release/changelog": "^5.0.1",
59
- "@semantic-release/git": "^9.0.0",
58
+ "@semantic-release/changelog": "^6.0.3",
59
+ "@semantic-release/git": "^10.0.1",
60
60
  "@types/jest": "^26.0.20",
61
61
  "@types/lodash": "4.14.136",
62
62
  "@types/node": "^14.14.31",
63
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
64
+ "@typescript-eslint/parser": "^6.13.2",
63
65
  "babel-jest": "^26.6.3",
64
66
  "babel-loader": "^8.2.2",
65
67
  "babel-plugin-require-context-hook": "^1.0.0",
68
+ "eslint": "^8.55.0",
69
+ "eslint-plugin-import": "^2.29.0",
70
+ "eslint-plugin-unused-imports": "^3.0.0",
66
71
  "jest": "^26.6.3",
67
- "prettier": "^2.2.1",
72
+ "prettier": "^3.1.0",
68
73
  "rollup": "^2.45.2",
69
74
  "rollup-plugin-peer-deps-external": "^2.2.4",
70
- "semantic-release": "^17.4.0",
75
+ "semantic-release": "^22.0.10",
71
76
  "ts-jest": "^26.5.1",
72
77
  "ts-loader": "^8.0.17",
73
78
  "ts-node": "^9.1.1",
74
79
  "typescript": "^4.8.2"
75
- }
80
+ },
81
+ "packageManager": "yarn@4.0.2"
76
82
  }