@http-forge/core 0.4.1 → 0.4.3
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 +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +189 -186
- package/dist/index.mjs +188 -185
- package/dist/infrastructure/test-suite/interfaces.d.ts +1 -0
- package/dist/infrastructure/test-suite/test-suite-service.d.ts +10 -0
- package/dist/runtime/direct-execution.d.ts +11 -0
- package/dist/runtime/ref-resolver.d.ts +80 -0
- package/dist/runtime/runtime-contracts.d.ts +58 -6
- package/package.json +1 -1
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)
|
|
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
|
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';
|
|
@@ -67,6 +67,8 @@ export { generateSlug } from './infrastructure/collection/folder-io';
|
|
|
67
67
|
export { ParserRegistry } from './infrastructure/collection/parser-registry';
|
|
68
68
|
export { JsonCollectionLoader } from './infrastructure/collection/json-collection-loader';
|
|
69
69
|
export type { Collection, CollectionFolderItem, CollectionItem, CollectionRequestItem, ICollectionService } from './types/collection';
|
|
70
|
+
export { AmbiguousRefError, resolveCollectionRef, resolveFolderRef, resolveRequestRef } from './runtime/ref-resolver';
|
|
71
|
+
export type { RefCandidate, RefKind, RefTier, ResolutionInfo } from './runtime/ref-resolver';
|
|
70
72
|
export { EnvironmentConfigService } from './infrastructure/environment/environment-config-service';
|
|
71
73
|
export { isSystemEnvironmentFile, loadEnvironmentsFromFolder } from './infrastructure/environment/environment-file-loader';
|
|
72
74
|
export type { EnvironmentEntry, EnvironmentFolderData } from './infrastructure/environment/environment-file-loader';
|