@http-forge/core 0.4.0 → 0.4.2

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/README.md CHANGED
@@ -17,7 +17,7 @@
17
17
  - � **Cloud Secret Resolvers** - Resolve `{{secret:alias/path}}` from AWS Secrets Manager, Azure Key Vault, Google Secret Manager, HashiCorp Vault, 1Password, and Doppler; credentials read from the ambient environment, never from config
18
18
  - �👁️ **File Watching** - Automatic reload on collection/environment file changes with notification callbacks
19
19
  - 🍪 **Cookie Persistence** - Automatic cookie storage and reuse, `pm.cookies.jar()` and `.toObject()`
20
- - 📊 **Test Assertions** - BDD-style testing with `pm.test()` (sync/async) and full Chai `expect()` chains
20
+ - 📊 **Test Assertions** - BDD-style testing with `pm.test()` (sync/async), `pm.test.skip()` / `.fail()` / `.index()`, full Chai `expect()` chains (incl. `.contain()`), and JSON Schema validation via `pm.response.to.have.jsonSchema()`
21
21
  - 🔐 **CryptoJS** - Full crypto library: hash, HMAC, AES/DES/TripleDES, PBKDF2, encoding helpers
22
22
  - 🎯 **Execution Flow** - `pm.setNextRequest()`, `pm.execution.skipRequest()` for suite runner flow control
23
23
  - 📈 **Visualizer** - `pm.visualizer.set(template, data)` for custom Handlebars-based HTML output
@@ -88,7 +88,7 @@ export declare class ServiceContainer {
88
88
  get scriptExecutor(): IScriptExecutor;
89
89
  get requestPreparer(): IRequestPreparer;
90
90
  get persistentCookieJar(): ICookieJar;
91
- get oauth2TokenManager(): IOAuth2TokenManager;
91
+ get oauth2TokenManager(): IOAuth2TokenManager | undefined;
92
92
  get graphqlSchemaService(): IGraphQLSchemaService;
93
93
  get testSuite(): ITestSuiteService;
94
94
  }
package/dist/index.d.ts CHANGED
@@ -20,7 +20,7 @@ export { ForgeContainer } from './container';
20
20
  export type { ForgeContainerOptions, StorageFormat } from './container';
21
21
  export { getServiceContainer, registerCoreServices, ServiceContainer, ServiceIdentifiers } from './di';
22
22
  export type { PlatformAdapters, ServiceIdentifier } from './di';
23
- export { createMcpRuntime, runCollection, runRequest, runSuite } from './runtime/runtime-contracts';
23
+ export { createMcpRuntime, runCollection, runFolder, runRequest, runSuite } from './runtime/runtime-contracts';
24
24
  export type { McpRuntimeHandle, McpRuntimeOptions, RunCollectionOptions, RunRequestOptions, RunSuiteOptions } from './runtime/runtime-contracts';
25
25
  export { bootstrapNodeRuntime, createNodeContainer } from './runtime/node-bootstrap';
26
26
  export type { NodeBootstrapOptions } from './runtime/node-bootstrap';