@http-forge/core 0.2.12 → 0.2.14

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.
@@ -66,6 +66,20 @@ export declare class VariableResolver {
66
66
  * Handles: @ (no-input), string literals, $dynamic variable, variable name, JS expression
67
67
  */
68
68
  private resolveFilterInput;
69
+ /**
70
+ * Deserialize a single value: strip \x1E type marker and JSON.parse if present.
71
+ * Returns the native type for marked values, or the raw value as-is.
72
+ */
73
+ private deserializeValue;
74
+ /**
75
+ * Deserialize all type-marked variables for expression evaluation.
76
+ */
77
+ private deserializeVariables;
78
+ /**
79
+ * Resolve property/index access on a value.
80
+ * Supports: [0], ["key"], .prop, and chained access like [0].name or .a.b
81
+ */
82
+ private resolvePropertyAccess;
69
83
  /**
70
84
  * Escape special characters for string context
71
85
  */
@@ -23,6 +23,8 @@ export interface SuiteRequest {
23
23
  folderPath: string;
24
24
  /** Whether this request is enabled for execution */
25
25
  enabled?: boolean;
26
+ /** Optional description of what this request does in the suite */
27
+ description?: string;
26
28
  }
27
29
  /**
28
30
  * Test Suite run configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@http-forge/core",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "description": "Headless HTTP testing engine with Postman collection support, dynamic variables, and script-based automation.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",