@skyramp/mcp 0.1.4 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/mcp",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "main": "build/index.js",
5
5
  "exports": {
6
6
  ".": "./build/index.js",
@@ -1,12 +0,0 @@
1
- /**
2
- * Shared HTTP method defaults used across scenario drafting and test generation.
3
- */
4
- /** Returns the conventional success status code for a given HTTP method. */
5
- export function inferExpectedStatus(method) {
6
- const m = method.toUpperCase();
7
- if (m === "POST")
8
- return 201;
9
- if (m === "DELETE")
10
- return 204;
11
- return 200;
12
- }