@http-forge/core 0.2.1 → 0.2.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.
Files changed (165) hide show
  1. package/dist/application/dto/index.d.ts +8 -0
  2. package/dist/application/dto/request-dtos.d.ts +105 -0
  3. package/dist/application/dto/response-dtos.d.ts +185 -0
  4. package/dist/application/events/application-events.d.ts +53 -0
  5. package/dist/application/events/index.d.ts +6 -0
  6. package/dist/application/index.d.ts +25 -0
  7. package/dist/application/mappers/collection-mapper.d.ts +39 -0
  8. package/dist/application/mappers/execution-result-mapper.d.ts +16 -0
  9. package/dist/application/mappers/index.d.ts +9 -0
  10. package/dist/application/mappers/request-mapper.d.ts +29 -0
  11. package/dist/application/queries/get-request-schema.query.d.ts +32 -0
  12. package/dist/application/queries/index.d.ts +6 -0
  13. package/dist/application/use-cases/create-request.use-case.d.ts +23 -0
  14. package/dist/application/use-cases/delete-request.use-case.d.ts +15 -0
  15. package/dist/application/use-cases/execute-request.use-case.d.ts +46 -0
  16. package/dist/application/use-cases/export-collection.use-case.d.ts +22 -0
  17. package/dist/application/use-cases/get-collection.use-case.d.ts +13 -0
  18. package/dist/application/use-cases/index.d.ts +12 -0
  19. package/dist/application/use-cases/list-requests.use-case.d.ts +14 -0
  20. package/dist/application/use-cases/load-collection.use-case.d.ts +30 -0
  21. package/dist/application/use-cases/save-collection.use-case.d.ts +25 -0
  22. package/dist/application/use-cases/update-request.use-case.d.ts +17 -0
  23. package/dist/container.d.ts +30 -13
  24. package/dist/di/index.d.ts +8 -0
  25. package/dist/di/platform-adapters.d.ts +14 -1
  26. package/dist/di/service-container.d.ts +12 -12
  27. package/dist/di/service-identifiers.d.ts +1 -1
  28. package/dist/domain/errors/domain-errors.d.ts +52 -0
  29. package/dist/domain/errors/index.d.ts +4 -0
  30. package/dist/domain/index.d.ts +24 -0
  31. package/dist/domain/models/execution.d.ts +88 -0
  32. package/dist/domain/models/index.d.ts +4 -0
  33. package/dist/domain/services/domain-events.d.ts +60 -0
  34. package/dist/domain/services/execution-planner.domain-service.d.ts +40 -0
  35. package/dist/domain/services/index.d.ts +9 -0
  36. package/dist/domain/services/schema-inference.domain-service.d.ts +54 -0
  37. package/dist/domain/value-objects/entity-id.d.ts +26 -0
  38. package/dist/domain/value-objects/http-method.d.ts +30 -0
  39. package/dist/domain/value-objects/index.d.ts +9 -0
  40. package/dist/domain/value-objects/request-url.d.ts +28 -0
  41. package/dist/index.d.ts +86 -86
  42. package/dist/index.js +110 -110
  43. package/dist/index.mjs +116 -116
  44. package/dist/infrastructure/adapters/index.d.ts +5 -0
  45. package/dist/infrastructure/adapters/logger.adapter.d.ts +25 -0
  46. package/dist/infrastructure/adapters/node-file-system.adapter.d.ts +18 -0
  47. package/dist/{auth → infrastructure/auth}/interfaces.d.ts +1 -1
  48. package/dist/{auth → infrastructure/auth}/oauth2-token-manager.d.ts +3 -3
  49. package/dist/{collection → infrastructure/collection}/collection-loader.d.ts +3 -3
  50. package/dist/{collection → infrastructure/collection}/collection-service.d.ts +2 -2
  51. package/dist/{collection → infrastructure/collection}/collection-store.d.ts +2 -2
  52. package/dist/{collection → infrastructure/collection}/folder-collection-loader.d.ts +2 -2
  53. package/dist/{collection → infrastructure/collection}/folder-collection-store.d.ts +1 -1
  54. package/dist/{collection → infrastructure/collection}/folder-io.d.ts +1 -1
  55. package/dist/{collection → infrastructure/collection}/json-collection-loader.d.ts +1 -1
  56. package/dist/{collection → infrastructure/collection}/parser-registry.d.ts +1 -1
  57. package/dist/{config → infrastructure/config}/config-service.d.ts +1 -1
  58. package/dist/{cookie → infrastructure/cookie}/cookie-service.d.ts +1 -1
  59. package/dist/infrastructure/di/complete-bootstrap.d.ts +24 -0
  60. package/dist/infrastructure/di/index.d.ts +6 -0
  61. package/dist/infrastructure/di/infrastructure-di-config.d.ts +33 -0
  62. package/dist/infrastructure/di/simple-event-publisher.d.ts +17 -0
  63. package/dist/{environment → infrastructure/environment}/environment-config-service.d.ts +2 -2
  64. package/dist/{environment → infrastructure/environment}/environment-resolver.d.ts +1 -1
  65. package/dist/{environment → infrastructure/environment}/forge-env.d.ts +1 -1
  66. package/dist/{environment → infrastructure/environment}/variable-interpolator.d.ts +1 -1
  67. package/dist/{execution → infrastructure/execution}/collection-request-executor-interfaces.d.ts +1 -1
  68. package/dist/{execution → infrastructure/execution}/collection-request-executor.d.ts +2 -2
  69. package/dist/{execution → infrastructure/execution}/request-executor.d.ts +2 -2
  70. package/dist/{execution → infrastructure/execution}/request-preparer-interfaces.d.ts +2 -2
  71. package/dist/{execution → infrastructure/execution}/request-preparer.d.ts +3 -3
  72. package/dist/{graphql → infrastructure/graphql}/graphql-schema-service.d.ts +1 -1
  73. package/dist/{history → infrastructure/history}/history-interfaces.d.ts +1 -1
  74. package/dist/{history → infrastructure/history}/request-history.d.ts +1 -1
  75. package/dist/{http → infrastructure/http}/fetch-http-client.d.ts +2 -2
  76. package/dist/{http → infrastructure/http}/http-request-service.d.ts +2 -2
  77. package/dist/infrastructure/http/index.d.ts +4 -0
  78. package/dist/{http → infrastructure/http}/interceptor-chain.d.ts +1 -1
  79. package/dist/{http → infrastructure/http}/interfaces.d.ts +1 -1
  80. package/dist/{http → infrastructure/http}/merge-request-settings.d.ts +1 -1
  81. package/dist/{http → infrastructure/http}/native-http-client.d.ts +2 -2
  82. package/dist/infrastructure/http/node-http-executor.adapter.d.ts +25 -0
  83. package/dist/{http → infrastructure/http}/request-preprocessor.d.ts +1 -1
  84. package/dist/{import-export → infrastructure/import-export}/import-postman-environment.d.ts +3 -3
  85. package/dist/{import-export → infrastructure/import-export}/rest-client-export.d.ts +3 -3
  86. package/dist/infrastructure/index.d.ts +31 -0
  87. package/dist/{openapi → infrastructure/openapi}/example-generator.d.ts +1 -1
  88. package/dist/{openapi → infrastructure/openapi}/history-analyzer.d.ts +1 -1
  89. package/dist/{openapi → infrastructure/openapi}/interfaces.d.ts +2 -2
  90. package/dist/{openapi → infrastructure/openapi}/openapi-exporter.d.ts +2 -2
  91. package/dist/{openapi → infrastructure/openapi}/openapi-importer.d.ts +2 -2
  92. package/dist/{openapi → infrastructure/openapi}/schema-inference-service.d.ts +1 -1
  93. package/dist/{openapi → infrastructure/openapi}/schema-inferrer.d.ts +1 -1
  94. package/dist/infrastructure/parsers/collection-parser.adapter.d.ts +32 -0
  95. package/dist/{parsers → infrastructure/parsers}/http-forge-parser.d.ts +2 -2
  96. package/dist/infrastructure/parsers/index.d.ts +7 -0
  97. package/dist/infrastructure/persistence/file-system-history-loader.d.ts +31 -0
  98. package/dist/infrastructure/persistence/index.d.ts +6 -0
  99. package/dist/{platform → infrastructure/platform}/node-file-system.d.ts +1 -1
  100. package/dist/infrastructure/repositories/file-system/fs-collection-repository.d.ts +72 -0
  101. package/dist/infrastructure/repositories/file-system/fs-environment-file-loader.adapter.d.ts +41 -0
  102. package/dist/infrastructure/repositories/file-system/fs-environment-repository.d.ts +34 -0
  103. package/dist/infrastructure/repositories/file-system/fs-request-repository.d.ts +31 -0
  104. package/dist/infrastructure/repositories/file-system/index.d.ts +7 -0
  105. package/dist/infrastructure/repositories/in-memory/in-memory-collection-repository.d.ts +18 -0
  106. package/dist/infrastructure/repositories/in-memory/in-memory-environment-repository.d.ts +25 -0
  107. package/dist/infrastructure/repositories/in-memory/in-memory-request-repository.d.ts +25 -0
  108. package/dist/infrastructure/repositories/in-memory/index.d.ts +7 -0
  109. package/dist/infrastructure/script/index.d.ts +4 -0
  110. package/dist/{script → infrastructure/script}/interfaces.d.ts +1 -1
  111. package/dist/{script → infrastructure/script}/script-utils.d.ts +1 -1
  112. package/dist/infrastructure/script/vm-script-executor.adapter.d.ts +19 -0
  113. package/dist/{test-suite → infrastructure/test-suite}/result-storage-service.d.ts +1 -1
  114. package/dist/{test-suite → infrastructure/test-suite}/result-storage.d.ts +1 -1
  115. package/dist/{test-suite → infrastructure/test-suite}/test-suite-service.d.ts +1 -1
  116. package/dist/{test-suite → infrastructure/test-suite}/test-suite-store.d.ts +1 -1
  117. package/dist/ports/executors/http-executor.interface.d.ts +34 -0
  118. package/dist/ports/executors/index.d.ts +5 -0
  119. package/dist/ports/executors/script-executor.interface.d.ts +43 -0
  120. package/dist/ports/external/file-system.interface.d.ts +44 -0
  121. package/dist/ports/external/http-client.interface.d.ts +25 -0
  122. package/dist/ports/external/index.d.ts +7 -0
  123. package/dist/ports/external/logger.interface.d.ts +17 -0
  124. package/dist/ports/index.d.ts +17 -0
  125. package/dist/ports/parsers/collection-parser.interface.d.ts +23 -0
  126. package/dist/ports/parsers/index.d.ts +4 -0
  127. package/dist/ports/repositories/collection-repository.interface.d.ts +32 -0
  128. package/dist/ports/repositories/environment-repository.interface.d.ts +31 -0
  129. package/dist/ports/repositories/index.d.ts +6 -0
  130. package/dist/ports/repositories/request-repository.interface.d.ts +32 -0
  131. package/dist/ports/storage/cache-store.interface.d.ts +26 -0
  132. package/dist/ports/storage/history-loader.interface.d.ts +37 -0
  133. package/dist/ports/storage/index.d.ts +5 -0
  134. package/dist/{collection/collection-service-interfaces.d.ts → types/collection.d.ts} +19 -4
  135. package/dist/types/environment-config.d.ts +143 -0
  136. package/dist/types/types.d.ts +20 -7
  137. package/package.json +1 -1
  138. package/dist/collection/interfaces.d.ts +0 -32
  139. package/dist/parsers/index.d.ts +0 -6
  140. /package/dist/{collection → infrastructure/collection}/collection-loader-factory.d.ts +0 -0
  141. /package/dist/{config → infrastructure/config}/config.interface.d.ts +0 -0
  142. /package/dist/{config → infrastructure/config}/default-config.d.ts +0 -0
  143. /package/dist/{config → infrastructure/config}/index.d.ts +0 -0
  144. /package/dist/{cookie → infrastructure/cookie}/cookie-jar.d.ts +0 -0
  145. /package/dist/{cookie → infrastructure/cookie}/cookie-utils.d.ts +0 -0
  146. /package/dist/{cookie → infrastructure/cookie}/in-memory-cookie-jar.d.ts +0 -0
  147. /package/dist/{cookie → infrastructure/cookie}/interfaces.d.ts +0 -0
  148. /package/dist/{cookie → infrastructure/cookie}/persistent-cookie-jar.d.ts +0 -0
  149. /package/dist/{environment → infrastructure/environment}/environment-file-loader.d.ts +0 -0
  150. /package/dist/{environment → infrastructure/environment}/interfaces.d.ts +0 -0
  151. /package/dist/{graphql → infrastructure/graphql}/graphql-completion-provider.d.ts +0 -0
  152. /package/dist/{history → infrastructure/history}/request-history-service-interfaces.d.ts +0 -0
  153. /package/dist/{history → infrastructure/history}/request-history-service.d.ts +0 -0
  154. /package/dist/{http → infrastructure/http}/url-builder.d.ts +0 -0
  155. /package/dist/{openapi → infrastructure/openapi}/index.d.ts +0 -0
  156. /package/dist/{openapi → infrastructure/openapi}/ref-resolver.d.ts +0 -0
  157. /package/dist/{openapi → infrastructure/openapi}/script-analyzer.d.ts +0 -0
  158. /package/dist/{platform → infrastructure/platform}/data-file-parser.d.ts +0 -0
  159. /package/dist/{script → infrastructure/script}/module-loader.d.ts +0 -0
  160. /package/dist/{script → infrastructure/script}/request-script-session.d.ts +0 -0
  161. /package/dist/{script → infrastructure/script}/script-executor.d.ts +0 -0
  162. /package/dist/{script → infrastructure/script}/script-factories.d.ts +0 -0
  163. /package/dist/{test-suite → infrastructure/test-suite}/index.d.ts +0 -0
  164. /package/dist/{test-suite → infrastructure/test-suite}/interfaces.d.ts +0 -0
  165. /package/dist/{test-suite → infrastructure/test-suite}/statistics-service.d.ts +0 -0
@@ -0,0 +1,28 @@
1
+ /**
2
+ * RequestUrl Value Object
3
+ *
4
+ * Validates and normalizes request URLs.
5
+ * Supports both absolute URLs and URL templates with variables (e.g. {{baseUrl}}/users).
6
+ */
7
+ export declare class RequestUrl {
8
+ readonly value: string;
9
+ private constructor();
10
+ /**
11
+ * Create a RequestUrl from a string.
12
+ * Allows variable templates like {{baseUrl}}/path.
13
+ */
14
+ static create(url: string): RequestUrl;
15
+ /**
16
+ * Create without validation (for trusted internal data).
17
+ */
18
+ static fromTrusted(url: string): RequestUrl;
19
+ /** Whether the URL contains template variables */
20
+ get hasVariables(): boolean;
21
+ /** Extract variable names from the URL template */
22
+ get variableNames(): string[];
23
+ /** Get the protocol if present */
24
+ get protocol(): string | undefined;
25
+ equals(other: RequestUrl): boolean;
26
+ toString(): string;
27
+ private static isValidUrl;
28
+ }
package/dist/index.d.ts CHANGED
@@ -23,92 +23,92 @@ export type { PlatformAdapters, ServiceIdentifier } from './di';
23
23
  export * from './types/console-service';
24
24
  export * from './types/platform';
25
25
  export * from './types/types';
26
- export { CookieJar } from './cookie/cookie-jar';
27
- export { CookieService } from './cookie/cookie-service';
28
- export { CookieUtils } from './cookie/cookie-utils';
29
- export { InMemoryCookieJar } from './cookie/in-memory-cookie-jar';
30
- export * from './cookie/interfaces';
31
- export { PersistentCookieJar } from './cookie/persistent-cookie-jar';
32
- export { FetchHttpClient } from './http/fetch-http-client';
33
- export { HttpRequestService } from './http/http-request-service';
34
- export { InterceptorChain, LoggingRequestInterceptor, RetryErrorInterceptor, TimingResponseInterceptor } from './http/interceptor-chain';
35
- export type { IErrorInterceptor, IInterceptorChain, IRequestInterceptor, IResponseInterceptor, InterceptorContext } from './http/interceptor-chain';
36
- export type { IHttpRequestService } from './http/interfaces';
37
- export { mergeRequestSettings } from './http/merge-request-settings';
38
- export { DEFAULT_REQUEST_SETTINGS, NodeHttpClient } from './http/native-http-client';
39
- export { RequestPreprocessor } from './http/request-preprocessor';
40
- export type { IRequestPreprocessor } from './http/request-preprocessor';
41
- export { UrlBuilder } from './http/url-builder';
42
- export type { IUrlBuilder } from './http/url-builder';
43
- export * from './script/interfaces';
44
- export { ModuleLoader, createLodashShim, createModuleLoader, createMomentShim } from './script/module-loader';
45
- export type { ModuleLoaderOptions } from './script/module-loader';
46
- export { RequestScriptSession } from './script/request-script-session';
47
- export type { SessionDependencies } from './script/request-script-session';
48
- export { ScriptExecutor } from './script/script-executor';
49
- export { createExpectChain, createResponseObject } from './script/script-factories';
50
- export type { ExpectChain, ResponseAssertions, ScriptResponse } from './script/script-factories';
51
- export { concatenateScripts, createScriptConsole, createTestFunction, formatConsoleOutput, hasChanged, normalizeHeaders } from './script/script-utils';
52
- export type { ConsoleMessage } from './script/script-utils';
53
- export { CollectionLoader } from './collection/collection-loader';
54
- export type { LoadOptions } from './collection/collection-loader';
55
- export { CollectionLoaderFactory } from './collection/collection-loader-factory';
56
- export { CollectionService } from './collection/collection-service';
57
- export { FolderCollectionLoader } from './collection/folder-collection-loader';
58
- export { FolderCollectionStore } from './collection/folder-collection-store';
59
- export * from './collection/folder-io';
60
- export { generateSlug } from './collection/folder-io';
61
- export * from './collection/interfaces';
62
- export { JsonCollectionLoader } from './collection/json-collection-loader';
63
- export { ParserRegistry } from './collection/parser-registry';
64
- export { EnvironmentConfigService } from './environment/environment-config-service';
65
- export { isSystemEnvironmentFile, loadEnvironmentsFromFolder } from './environment/environment-file-loader';
66
- export type { EnvironmentEntry, EnvironmentFolderData } from './environment/environment-file-loader';
67
- export { EnvironmentResolver } from './environment/environment-resolver';
68
- export type { Environment, EnvironmentStoreConfig } from './environment/environment-resolver';
69
- export { ForgeEnv } from './environment/forge-env';
70
- export type { IForgeEnv } from './environment/forge-env';
71
- export * from './environment/interfaces';
72
- export { VariableInterpolator, VariableResolver, createVariableResolver } from './environment/variable-interpolator';
73
- export type { VariableResolverConfig } from './environment/variable-interpolator';
74
- export { CollectionRequestExecutor } from './execution/collection-request-executor';
75
- export * from './execution/collection-request-executor-interfaces';
76
- export { RequestExecutor } from './execution/request-executor';
77
- export type { ExecuteOptions, ExecuteResult } from './execution/request-executor';
78
- export { RequestPreparer } from './execution/request-preparer';
79
- export * from './execution/request-preparer-interfaces';
80
- export * from './history/history-interfaces';
81
- export { RequestHistoryStore } from './history/request-history';
82
- export { RequestHistoryService } from './history/request-history-service';
83
- export type { IRequestHistoryService, IResponseStorage } from './history/request-history-service-interfaces';
84
- export * from './auth/interfaces';
85
- export { OAuth2TokenManager } from './auth/oauth2-token-manager';
86
- export { getCompletions, parseQueryContext } from './graphql/graphql-completion-provider';
87
- export type { CompletionItem, ContextType, QueryContext } from './graphql/graphql-completion-provider';
88
- export { GraphQLSchemaService } from './graphql/graphql-schema-service';
89
- export type { GraphQLDirective, GraphQLField, GraphQLOperation, GraphQLSchema, GraphQLType, IGraphQLSchemaService } from './graphql/graphql-schema-service';
90
- export { ExampleGenerator, HistoryAnalyzer, OpenApiExporter, OpenApiImporter, RefResolver, SchemaInferenceService, SchemaInferrer, ScriptAnalyzer } from './openapi';
91
- export type { OpenApiExportOptions, OpenApiImportOptions, ScriptAnalysisResult } from './openapi';
92
- export * from './openapi/interfaces';
93
- export { CONFIG_FILES, ConfigService, DEFAULT_CONFIG, ROOT_DIRECTORIES } from './config';
94
- export type { EnvironmentsConfig, HttpForgeConfig, IConfigService, ProxyConfig, RequestConfig, RestClientExportConfig, RunnerConfig, ScriptsConfig, StorageConfig } from './config';
95
- export { DEFAULT_SUITE_CONFIG } from './test-suite/interfaces';
96
- export type { ErrorSummary, IStatisticsService, ITestSuiteService, RequestStatistics, RunStatistics, RunSummary, SuiteConfig, SuiteRequest, TestSuite } from './test-suite/interfaces';
97
- export { HTTP_METHOD_MAP, HTTP_METHOD_REVERSE, buildResultFileName, expandSummary } from './test-suite/result-storage';
98
- export type { FullResultDetails, IResultStorageService, IndexPage, RecentError, RequestStats, ResultSummary, RunConfig, RunManifest, RunStats } from './test-suite/result-storage';
99
- export { ResultStorageService } from './test-suite/result-storage-service';
100
- export { StatisticsService } from './test-suite/statistics-service';
101
- export { TestSuiteService } from './test-suite/test-suite-service';
102
- export type { SuitesChangedCallback } from './test-suite/test-suite-service';
103
- export { TestSuiteStore } from './test-suite/test-suite-store';
104
- export type { ITestSuiteStore, SuiteRequestEntry } from './test-suite/test-suite-store';
105
- export { HttpForgeParser } from './parsers';
106
- export { parsePostmanEnvironment, parsePostmanEnvironmentFile } from './import-export/import-postman-environment';
107
- export type { ImportedEnvironment } from './import-export/import-postman-environment';
108
- export { exportCollectionToRestClient, getRestClientExportFolder, writeEnvFile, writeFolderItems, writeScriptFile } from './import-export/rest-client-export';
109
- export { DataFileParser } from './platform/data-file-parser';
110
- export type { IDataFileParser } from './platform/data-file-parser';
111
- export { NodeFileSystem } from './platform/node-file-system';
26
+ export { CookieJar } from './infrastructure/cookie/cookie-jar';
27
+ export { CookieService } from './infrastructure/cookie/cookie-service';
28
+ export { CookieUtils } from './infrastructure/cookie/cookie-utils';
29
+ export { InMemoryCookieJar } from './infrastructure/cookie/in-memory-cookie-jar';
30
+ export * from './infrastructure/cookie/interfaces';
31
+ export { PersistentCookieJar } from './infrastructure/cookie/persistent-cookie-jar';
32
+ export { FetchHttpClient } from './infrastructure/http/fetch-http-client';
33
+ export { HttpRequestService } from './infrastructure/http/http-request-service';
34
+ export { InterceptorChain, LoggingRequestInterceptor, RetryErrorInterceptor, TimingResponseInterceptor } from './infrastructure/http/interceptor-chain';
35
+ export type { IErrorInterceptor, IInterceptorChain, IRequestInterceptor, IResponseInterceptor, InterceptorContext } from './infrastructure/http/interceptor-chain';
36
+ export type { IHttpRequestService } from './infrastructure/http/interfaces';
37
+ export { mergeRequestSettings } from './infrastructure/http/merge-request-settings';
38
+ export { DEFAULT_REQUEST_SETTINGS, NodeHttpClient } from './infrastructure/http/native-http-client';
39
+ export { RequestPreprocessor } from './infrastructure/http/request-preprocessor';
40
+ export type { IRequestPreprocessor } from './infrastructure/http/request-preprocessor';
41
+ export { UrlBuilder } from './infrastructure/http/url-builder';
42
+ export type { IUrlBuilder } from './infrastructure/http/url-builder';
43
+ export * from './infrastructure/script/interfaces';
44
+ export { ModuleLoader, createLodashShim, createModuleLoader, createMomentShim } from './infrastructure/script/module-loader';
45
+ export type { ModuleLoaderOptions } from './infrastructure/script/module-loader';
46
+ export { RequestScriptSession } from './infrastructure/script/request-script-session';
47
+ export type { SessionDependencies } from './infrastructure/script/request-script-session';
48
+ export { ScriptExecutor } from './infrastructure/script/script-executor';
49
+ export { createExpectChain, createResponseObject } from './infrastructure/script/script-factories';
50
+ export type { ExpectChain, ResponseAssertions, ScriptResponse } from './infrastructure/script/script-factories';
51
+ export { concatenateScripts, createScriptConsole, createTestFunction, formatConsoleOutput, hasChanged, normalizeHeaders } from './infrastructure/script/script-utils';
52
+ export type { ConsoleMessage } from './infrastructure/script/script-utils';
53
+ export { CollectionLoader } from './infrastructure/collection/collection-loader';
54
+ export type { LoadOptions } from './infrastructure/collection/collection-loader';
55
+ export { CollectionLoaderFactory } from './infrastructure/collection/collection-loader-factory';
56
+ export { CollectionService } from './infrastructure/collection/collection-service';
57
+ export { FolderCollectionLoader } from './infrastructure/collection/folder-collection-loader';
58
+ export { FolderCollectionStore } from './infrastructure/collection/folder-collection-store';
59
+ export * from './infrastructure/collection/folder-io';
60
+ export { generateSlug } from './infrastructure/collection/folder-io';
61
+ export { ParserRegistry } from './infrastructure/collection/parser-registry';
62
+ export type { Collection, ICollectionService } from './types/collection';
63
+ export { JsonCollectionLoader } from './infrastructure/collection/json-collection-loader';
64
+ export { EnvironmentConfigService } from './infrastructure/environment/environment-config-service';
65
+ export { isSystemEnvironmentFile, loadEnvironmentsFromFolder } from './infrastructure/environment/environment-file-loader';
66
+ export type { EnvironmentEntry, EnvironmentFolderData } from './infrastructure/environment/environment-file-loader';
67
+ export { EnvironmentResolver } from './infrastructure/environment/environment-resolver';
68
+ export type { Environment, EnvironmentStoreConfig } from './infrastructure/environment/environment-resolver';
69
+ export { ForgeEnv } from './infrastructure/environment/forge-env';
70
+ export type { IForgeEnv } from './infrastructure/environment/forge-env';
71
+ export type { IEnvironmentConfigService } from './types/environment-config';
72
+ export { VariableInterpolator, VariableResolver, createVariableResolver } from './infrastructure/environment/variable-interpolator';
73
+ export type { VariableResolverConfig } from './infrastructure/environment/variable-interpolator';
74
+ export { CollectionRequestExecutor } from './infrastructure/execution/collection-request-executor';
75
+ export * from './infrastructure/execution/collection-request-executor-interfaces';
76
+ export { RequestExecutor } from './infrastructure/execution/request-executor';
77
+ export type { ExecuteOptions, ExecuteResult } from './infrastructure/execution/request-executor';
78
+ export { RequestPreparer } from './infrastructure/execution/request-preparer';
79
+ export * from './infrastructure/execution/request-preparer-interfaces';
80
+ export * from './infrastructure/history/history-interfaces';
81
+ export { RequestHistoryStore } from './infrastructure/history/request-history';
82
+ export { RequestHistoryService } from './infrastructure/history/request-history-service';
83
+ export type { IRequestHistoryService, IResponseStorage } from './infrastructure/history/request-history-service-interfaces';
84
+ export * from './infrastructure/auth/interfaces';
85
+ export { OAuth2TokenManager } from './infrastructure/auth/oauth2-token-manager';
86
+ export { getCompletions, parseQueryContext } from './infrastructure/graphql/graphql-completion-provider';
87
+ export type { CompletionItem, ContextType, QueryContext } from './infrastructure/graphql/graphql-completion-provider';
88
+ export { GraphQLSchemaService } from './infrastructure/graphql/graphql-schema-service';
89
+ export type { GraphQLDirective, GraphQLField, GraphQLOperation, GraphQLSchema, GraphQLType, IGraphQLSchemaService } from './infrastructure/graphql/graphql-schema-service';
90
+ export { ExampleGenerator, HistoryAnalyzer, OpenApiExporter, OpenApiImporter, RefResolver, SchemaInferenceService, SchemaInferrer, ScriptAnalyzer } from './infrastructure/openapi';
91
+ export type { OpenApiExportOptions, OpenApiImportOptions, ScriptAnalysisResult } from './infrastructure/openapi';
92
+ export * from './infrastructure/openapi/interfaces';
93
+ export { CONFIG_FILES, ConfigService, DEFAULT_CONFIG, ROOT_DIRECTORIES } from './infrastructure/config';
94
+ export type { EnvironmentsConfig, HttpForgeConfig, IConfigService, ProxyConfig, RequestConfig, RestClientExportConfig, RunnerConfig, ScriptsConfig, StorageConfig } from './infrastructure/config';
95
+ export { DEFAULT_SUITE_CONFIG } from './infrastructure/test-suite/interfaces';
96
+ export type { ErrorSummary, IStatisticsService, ITestSuiteService, RequestStatistics, RunStatistics, RunSummary, SuiteConfig, SuiteRequest, TestSuite } from './infrastructure/test-suite/interfaces';
97
+ export { HTTP_METHOD_MAP, HTTP_METHOD_REVERSE, buildResultFileName, expandSummary } from './infrastructure/test-suite/result-storage';
98
+ export type { FullResultDetails, IResultStorageService, IndexPage, RecentError, RequestStats, ResultSummary, RunConfig, RunManifest, RunStats } from './infrastructure/test-suite/result-storage';
99
+ export { ResultStorageService } from './infrastructure/test-suite/result-storage-service';
100
+ export { StatisticsService } from './infrastructure/test-suite/statistics-service';
101
+ export { TestSuiteService } from './infrastructure/test-suite/test-suite-service';
102
+ export type { SuitesChangedCallback } from './infrastructure/test-suite/test-suite-service';
103
+ export { TestSuiteStore } from './infrastructure/test-suite/test-suite-store';
104
+ export type { ITestSuiteStore, SuiteRequestEntry } from './infrastructure/test-suite/test-suite-store';
105
+ export { HttpForgeParser } from './infrastructure/parsers';
106
+ export { parsePostmanEnvironment, parsePostmanEnvironmentFile } from './infrastructure/import-export/import-postman-environment';
107
+ export type { ImportedEnvironment } from './infrastructure/import-export/import-postman-environment';
108
+ export { exportCollectionToRestClient, getRestClientExportFolder, writeEnvFile, writeFolderItems, writeScriptFile } from './infrastructure/import-export/rest-client-export';
109
+ export { DataFileParser } from './infrastructure/platform/data-file-parser';
110
+ export type { IDataFileParser } from './infrastructure/platform/data-file-parser';
111
+ export { NodeFileSystem } from './infrastructure/platform/node-file-system';
112
112
  export { DYNAMIC_VARIABLES, augmentWithDynamicVars, resolveDynamicVariable, resolveDynamicVariablesInString } from './utils/dynamic-variables';
113
113
  export { evaluateExpression, isExpression } from './utils/expression-evaluator';
114
114
  export { applyFilterChain, parseFilterChain } from './utils/filter-engine';