pepr 0.55.1 → 0.55.2-nightly.1

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/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "!src/fixtures/**",
17
17
  "!dist/**/*.test.d.ts*"
18
18
  ],
19
- "version": "0.55.1",
19
+ "version": "0.55.2-nightly.1",
20
20
  "main": "dist/lib.js",
21
21
  "types": "dist/lib.d.ts",
22
22
  "scripts": {
@@ -58,7 +58,7 @@
58
58
  "http-status-codes": "^2.3.0",
59
59
  "json-pointer": "^0.6.2",
60
60
  "kubernetes-fluent-client": "3.10.4",
61
- "pino": "9.11.0",
61
+ "pino": "9.12.0",
62
62
  "pino-pretty": "13.1.1",
63
63
  "prom-client": "15.1.3",
64
64
  "quicktype-core": "^23.2.6",
@@ -66,7 +66,7 @@
66
66
  "ts-morph": "^27.0.0"
67
67
  },
68
68
  "devDependencies": {
69
- "@commitlint/cli": "20.0.0",
69
+ "@commitlint/cli": "20.1.0",
70
70
  "@commitlint/config-conventional": "20.0.0",
71
71
  "@fast-check/vitest": "^0.2.1",
72
72
  "@types/command-line-args": "^5.2.3",
@@ -78,7 +78,6 @@
78
78
  "@types/node-forge": "1.3.14",
79
79
  "@types/readable-stream": "^4.0.21",
80
80
  "@types/urijs": "^1.19.25",
81
- "@types/uuid": "11.0.0",
82
81
  "@types/ws": "^8.18.1",
83
82
  "@vitest/coverage-v8": "^3.2.3",
84
83
  "fast-check": "^4.0.0",
@@ -95,14 +94,14 @@
95
94
  },
96
95
  "peerDependencies": {
97
96
  "@types/prompts": "2.4.9",
98
- "@typescript-eslint/eslint-plugin": "8.42.0",
99
- "@typescript-eslint/parser": "8.42.0",
100
- "esbuild": "0.25.9",
101
- "eslint": "9.34.0",
97
+ "@typescript-eslint/eslint-plugin": "8.45.0",
98
+ "@typescript-eslint/parser": "8.45.0",
99
+ "esbuild": "0.25.10",
100
+ "eslint": "9.36.0",
102
101
  "node-forge": "1.3.1",
103
102
  "prettier": "3.6.2",
104
103
  "prompts": "2.4.2",
105
104
  "typescript": "5.8.3",
106
- "uuid": "11.1.0"
105
+ "uuid": "13.0.0"
107
106
  }
108
- }
107
+ }
@@ -49,7 +49,7 @@ export const definedEvent = (binding: Binding): Event => {
49
49
  return binding.event;
50
50
  };
51
51
 
52
- export const definesDelete = pipe(definedEvent, equals(Event.DELETE));
52
+ export const definesDelete = (binding: Binding): boolean => definedEvent(binding) === Event.DELETE;
53
53
 
54
54
  export const definedGroup = pipe((binding): string => binding?.kind?.group, defaultTo(""));
55
55
  export const definesGroup = pipe(definedGroup, equals(""), not);