@seontechnologies/playwright-utils 3.10.0

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 (933) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +727 -0
  3. package/dist/cjs/api-request/api-request-fixture.d.ts +47 -0
  4. package/dist/cjs/api-request/api-request-fixture.d.ts.map +1 -0
  5. package/dist/cjs/api-request/api-request-fixture.js +26 -0
  6. package/dist/cjs/api-request/api-request-fixture.js.map +1 -0
  7. package/dist/cjs/api-request/api-request.d.ts +108 -0
  8. package/dist/cjs/api-request/api-request.d.ts.map +1 -0
  9. package/dist/cjs/api-request/api-request.js +326 -0
  10. package/dist/cjs/api-request/api-request.js.map +1 -0
  11. package/dist/cjs/api-request/fixtures.d.ts +3 -0
  12. package/dist/cjs/api-request/fixtures.d.ts.map +1 -0
  13. package/dist/cjs/api-request/fixtures.js +13 -0
  14. package/dist/cjs/api-request/fixtures.js.map +1 -0
  15. package/dist/cjs/api-request/index.d.ts +7 -0
  16. package/dist/cjs/api-request/index.d.ts.map +1 -0
  17. package/dist/cjs/api-request/index.js +11 -0
  18. package/dist/cjs/api-request/index.js.map +1 -0
  19. package/dist/cjs/api-request/schema-validation/core.d.ts +13 -0
  20. package/dist/cjs/api-request/schema-validation/core.d.ts.map +1 -0
  21. package/dist/cjs/api-request/schema-validation/core.js +55 -0
  22. package/dist/cjs/api-request/schema-validation/core.js.map +1 -0
  23. package/dist/cjs/api-request/schema-validation/fixture.d.ts +20 -0
  24. package/dist/cjs/api-request/schema-validation/fixture.d.ts.map +1 -0
  25. package/dist/cjs/api-request/schema-validation/fixture.js +17 -0
  26. package/dist/cjs/api-request/schema-validation/fixture.js.map +1 -0
  27. package/dist/cjs/api-request/schema-validation/index.d.ts +6 -0
  28. package/dist/cjs/api-request/schema-validation/index.d.ts.map +1 -0
  29. package/dist/cjs/api-request/schema-validation/index.js +13 -0
  30. package/dist/cjs/api-request/schema-validation/index.js.map +1 -0
  31. package/dist/cjs/api-request/schema-validation/internal/file-loader.d.ts +50 -0
  32. package/dist/cjs/api-request/schema-validation/internal/file-loader.d.ts.map +1 -0
  33. package/dist/cjs/api-request/schema-validation/internal/file-loader.js +126 -0
  34. package/dist/cjs/api-request/schema-validation/internal/file-loader.js.map +1 -0
  35. package/dist/cjs/api-request/schema-validation/internal/openapi-handler.d.ts +43 -0
  36. package/dist/cjs/api-request/schema-validation/internal/openapi-handler.d.ts.map +1 -0
  37. package/dist/cjs/api-request/schema-validation/internal/openapi-handler.js +147 -0
  38. package/dist/cjs/api-request/schema-validation/internal/openapi-handler.js.map +1 -0
  39. package/dist/cjs/api-request/schema-validation/internal/promise-extension.d.ts +10 -0
  40. package/dist/cjs/api-request/schema-validation/internal/promise-extension.d.ts.map +1 -0
  41. package/dist/cjs/api-request/schema-validation/internal/promise-extension.js +14 -0
  42. package/dist/cjs/api-request/schema-validation/internal/promise-extension.js.map +1 -0
  43. package/dist/cjs/api-request/schema-validation/internal/response-extension.d.ts +18 -0
  44. package/dist/cjs/api-request/schema-validation/internal/response-extension.d.ts.map +1 -0
  45. package/dist/cjs/api-request/schema-validation/internal/response-extension.js +212 -0
  46. package/dist/cjs/api-request/schema-validation/internal/response-extension.js.map +1 -0
  47. package/dist/cjs/api-request/schema-validation/internal/result-builder.d.ts +62 -0
  48. package/dist/cjs/api-request/schema-validation/internal/result-builder.d.ts.map +1 -0
  49. package/dist/cjs/api-request/schema-validation/internal/result-builder.js +140 -0
  50. package/dist/cjs/api-request/schema-validation/internal/result-builder.js.map +1 -0
  51. package/dist/cjs/api-request/schema-validation/internal/safe-error-serializer.d.ts +58 -0
  52. package/dist/cjs/api-request/schema-validation/internal/safe-error-serializer.d.ts.map +1 -0
  53. package/dist/cjs/api-request/schema-validation/internal/safe-error-serializer.js +221 -0
  54. package/dist/cjs/api-request/schema-validation/internal/safe-error-serializer.js.map +1 -0
  55. package/dist/cjs/api-request/schema-validation/internal/schema-processors.d.ts +38 -0
  56. package/dist/cjs/api-request/schema-validation/internal/schema-processors.d.ts.map +1 -0
  57. package/dist/cjs/api-request/schema-validation/internal/schema-processors.js +341 -0
  58. package/dist/cjs/api-request/schema-validation/internal/schema-processors.js.map +1 -0
  59. package/dist/cjs/api-request/schema-validation/internal/shape-validator.d.ts +96 -0
  60. package/dist/cjs/api-request/schema-validation/internal/shape-validator.d.ts.map +1 -0
  61. package/dist/cjs/api-request/schema-validation/internal/shape-validator.js +180 -0
  62. package/dist/cjs/api-request/schema-validation/internal/shape-validator.js.map +1 -0
  63. package/dist/cjs/api-request/schema-validation/internal/validation-engine.d.ts +63 -0
  64. package/dist/cjs/api-request/schema-validation/internal/validation-engine.d.ts.map +1 -0
  65. package/dist/cjs/api-request/schema-validation/internal/validation-engine.js +395 -0
  66. package/dist/cjs/api-request/schema-validation/internal/validation-engine.js.map +1 -0
  67. package/dist/cjs/api-request/schema-validation/types.d.ts +92 -0
  68. package/dist/cjs/api-request/schema-validation/types.d.ts.map +1 -0
  69. package/dist/cjs/api-request/schema-validation/types.js +16 -0
  70. package/dist/cjs/api-request/schema-validation/types.js.map +1 -0
  71. package/dist/cjs/api-request/ui-display.d.ts +42 -0
  72. package/dist/cjs/api-request/ui-display.d.ts.map +1 -0
  73. package/dist/cjs/api-request/ui-display.js +370 -0
  74. package/dist/cjs/api-request/ui-display.js.map +1 -0
  75. package/dist/cjs/auth-session/apply-user-cookies-to-browser-context.d.ts +17 -0
  76. package/dist/cjs/auth-session/apply-user-cookies-to-browser-context.d.ts.map +1 -0
  77. package/dist/cjs/auth-session/apply-user-cookies-to-browser-context.js +49 -0
  78. package/dist/cjs/auth-session/apply-user-cookies-to-browser-context.js.map +1 -0
  79. package/dist/cjs/auth-session/core.d.ts +56 -0
  80. package/dist/cjs/auth-session/core.d.ts.map +1 -0
  81. package/dist/cjs/auth-session/core.js +271 -0
  82. package/dist/cjs/auth-session/core.js.map +1 -0
  83. package/dist/cjs/auth-session/fixtures.d.ts +83 -0
  84. package/dist/cjs/auth-session/fixtures.d.ts.map +1 -0
  85. package/dist/cjs/auth-session/fixtures.js +147 -0
  86. package/dist/cjs/auth-session/fixtures.js.map +1 -0
  87. package/dist/cjs/auth-session/global-setup-helper.d.ts +18 -0
  88. package/dist/cjs/auth-session/global-setup-helper.d.ts.map +1 -0
  89. package/dist/cjs/auth-session/global-setup-helper.js +26 -0
  90. package/dist/cjs/auth-session/global-setup-helper.js.map +1 -0
  91. package/dist/cjs/auth-session/index.d.ts +15 -0
  92. package/dist/cjs/auth-session/index.d.ts.map +1 -0
  93. package/dist/cjs/auth-session/index.js +45 -0
  94. package/dist/cjs/auth-session/index.js.map +1 -0
  95. package/dist/cjs/auth-session/internal/auth-configure.d.ts +19 -0
  96. package/dist/cjs/auth-session/internal/auth-configure.d.ts.map +1 -0
  97. package/dist/cjs/auth-session/internal/auth-configure.js +117 -0
  98. package/dist/cjs/auth-session/internal/auth-configure.js.map +1 -0
  99. package/dist/cjs/auth-session/internal/auth-global-setup.d.ts +33 -0
  100. package/dist/cjs/auth-session/internal/auth-global-setup.d.ts.map +1 -0
  101. package/dist/cjs/auth-session/internal/auth-global-setup.js +152 -0
  102. package/dist/cjs/auth-session/internal/auth-global-setup.js.map +1 -0
  103. package/dist/cjs/auth-session/internal/auth-provider-validator.d.ts +36 -0
  104. package/dist/cjs/auth-session/internal/auth-provider-validator.d.ts.map +1 -0
  105. package/dist/cjs/auth-session/internal/auth-provider-validator.js +273 -0
  106. package/dist/cjs/auth-session/internal/auth-provider-validator.js.map +1 -0
  107. package/dist/cjs/auth-session/internal/auth-provider.d.ts +92 -0
  108. package/dist/cjs/auth-session/internal/auth-provider.d.ts.map +1 -0
  109. package/dist/cjs/auth-session/internal/auth-provider.js +40 -0
  110. package/dist/cjs/auth-session/internal/auth-provider.js.map +1 -0
  111. package/dist/cjs/auth-session/internal/auth-session.d.ts +76 -0
  112. package/dist/cjs/auth-session/internal/auth-session.d.ts.map +1 -0
  113. package/dist/cjs/auth-session/internal/auth-session.js +651 -0
  114. package/dist/cjs/auth-session/internal/auth-session.js.map +1 -0
  115. package/dist/cjs/auth-session/internal/auth-storage-utils.d.ts +62 -0
  116. package/dist/cjs/auth-session/internal/auth-storage-utils.d.ts.map +1 -0
  117. package/dist/cjs/auth-session/internal/auth-storage-utils.js +314 -0
  118. package/dist/cjs/auth-session/internal/auth-storage-utils.js.map +1 -0
  119. package/dist/cjs/auth-session/internal/cache-manager.d.ts +116 -0
  120. package/dist/cjs/auth-session/internal/cache-manager.d.ts.map +1 -0
  121. package/dist/cjs/auth-session/internal/cache-manager.js +267 -0
  122. package/dist/cjs/auth-session/internal/cache-manager.js.map +1 -0
  123. package/dist/cjs/auth-session/internal/types.d.ts +132 -0
  124. package/dist/cjs/auth-session/internal/types.d.ts.map +1 -0
  125. package/dist/cjs/auth-session/internal/types.js +4 -0
  126. package/dist/cjs/auth-session/internal/types.js.map +1 -0
  127. package/dist/cjs/burn-in/core/analyzer.d.ts +36 -0
  128. package/dist/cjs/burn-in/core/analyzer.d.ts.map +1 -0
  129. package/dist/cjs/burn-in/core/analyzer.js +329 -0
  130. package/dist/cjs/burn-in/core/analyzer.js.map +1 -0
  131. package/dist/cjs/burn-in/core/config.d.ts +4 -0
  132. package/dist/cjs/burn-in/core/config.d.ts.map +1 -0
  133. package/dist/cjs/burn-in/core/config.js +107 -0
  134. package/dist/cjs/burn-in/core/config.js.map +1 -0
  135. package/dist/cjs/burn-in/core/types.d.ts +24 -0
  136. package/dist/cjs/burn-in/core/types.d.ts.map +1 -0
  137. package/dist/cjs/burn-in/core/types.js +3 -0
  138. package/dist/cjs/burn-in/core/types.js.map +1 -0
  139. package/dist/cjs/burn-in/index.d.ts +3 -0
  140. package/dist/cjs/burn-in/index.d.ts.map +1 -0
  141. package/dist/cjs/burn-in/index.js +7 -0
  142. package/dist/cjs/burn-in/index.js.map +1 -0
  143. package/dist/cjs/burn-in/runner.d.ts +13 -0
  144. package/dist/cjs/burn-in/runner.d.ts.map +1 -0
  145. package/dist/cjs/burn-in/runner.js +61 -0
  146. package/dist/cjs/burn-in/runner.js.map +1 -0
  147. package/dist/cjs/file-utils/core/csv-reader.d.ts +35 -0
  148. package/dist/cjs/file-utils/core/csv-reader.d.ts.map +1 -0
  149. package/dist/cjs/file-utils/core/csv-reader.js +206 -0
  150. package/dist/cjs/file-utils/core/csv-reader.js.map +1 -0
  151. package/dist/cjs/file-utils/core/file-downloader.d.ts +19 -0
  152. package/dist/cjs/file-utils/core/file-downloader.d.ts.map +1 -0
  153. package/dist/cjs/file-utils/core/file-downloader.js +49 -0
  154. package/dist/cjs/file-utils/core/file-downloader.js.map +1 -0
  155. package/dist/cjs/file-utils/core/pdf-reader.d.ts +42 -0
  156. package/dist/cjs/file-utils/core/pdf-reader.d.ts.map +1 -0
  157. package/dist/cjs/file-utils/core/pdf-reader.js +135 -0
  158. package/dist/cjs/file-utils/core/pdf-reader.js.map +1 -0
  159. package/dist/cjs/file-utils/core/types.d.ts +138 -0
  160. package/dist/cjs/file-utils/core/types.d.ts.map +1 -0
  161. package/dist/cjs/file-utils/core/types.js +72 -0
  162. package/dist/cjs/file-utils/core/types.js.map +1 -0
  163. package/dist/cjs/file-utils/core/xlsx-reader.d.ts +31 -0
  164. package/dist/cjs/file-utils/core/xlsx-reader.d.ts.map +1 -0
  165. package/dist/cjs/file-utils/core/xlsx-reader.js +216 -0
  166. package/dist/cjs/file-utils/core/xlsx-reader.js.map +1 -0
  167. package/dist/cjs/file-utils/core/zip-reader.d.ts +26 -0
  168. package/dist/cjs/file-utils/core/zip-reader.d.ts.map +1 -0
  169. package/dist/cjs/file-utils/core/zip-reader.js +95 -0
  170. package/dist/cjs/file-utils/core/zip-reader.js.map +1 -0
  171. package/dist/cjs/file-utils/file-utils-fixture.d.ts +16 -0
  172. package/dist/cjs/file-utils/file-utils-fixture.d.ts.map +1 -0
  173. package/dist/cjs/file-utils/file-utils-fixture.js +65 -0
  174. package/dist/cjs/file-utils/file-utils-fixture.js.map +1 -0
  175. package/dist/cjs/file-utils/fixtures.d.ts +2 -0
  176. package/dist/cjs/file-utils/fixtures.d.ts.map +1 -0
  177. package/dist/cjs/file-utils/fixtures.js +6 -0
  178. package/dist/cjs/file-utils/fixtures.js.map +1 -0
  179. package/dist/cjs/file-utils/index.d.ts +9 -0
  180. package/dist/cjs/file-utils/index.d.ts.map +1 -0
  181. package/dist/cjs/file-utils/index.js +25 -0
  182. package/dist/cjs/file-utils/index.js.map +1 -0
  183. package/dist/cjs/index.d.ts +13 -0
  184. package/dist/cjs/index.d.ts.map +1 -0
  185. package/dist/cjs/index.js +45 -0
  186. package/dist/cjs/index.js.map +1 -0
  187. package/dist/cjs/intercept-network-call/core/fulfill-network-call.d.ts +10 -0
  188. package/dist/cjs/intercept-network-call/core/fulfill-network-call.d.ts.map +1 -0
  189. package/dist/cjs/intercept-network-call/core/fulfill-network-call.js +88 -0
  190. package/dist/cjs/intercept-network-call/core/fulfill-network-call.js.map +1 -0
  191. package/dist/cjs/intercept-network-call/core/observe-network-call.d.ts +4 -0
  192. package/dist/cjs/intercept-network-call/core/observe-network-call.d.ts.map +1 -0
  193. package/dist/cjs/intercept-network-call/core/observe-network-call.js +56 -0
  194. package/dist/cjs/intercept-network-call/core/observe-network-call.js.map +1 -0
  195. package/dist/cjs/intercept-network-call/core/types.d.ts +28 -0
  196. package/dist/cjs/intercept-network-call/core/types.d.ts.map +1 -0
  197. package/dist/cjs/intercept-network-call/core/types.js +28 -0
  198. package/dist/cjs/intercept-network-call/core/types.js.map +1 -0
  199. package/dist/cjs/intercept-network-call/core/utils/matches-request.d.ts +9 -0
  200. package/dist/cjs/intercept-network-call/core/utils/matches-request.d.ts.map +1 -0
  201. package/dist/cjs/intercept-network-call/core/utils/matches-request.js +32 -0
  202. package/dist/cjs/intercept-network-call/core/utils/matches-request.js.map +1 -0
  203. package/dist/cjs/intercept-network-call/fixtures.d.ts +2 -0
  204. package/dist/cjs/intercept-network-call/fixtures.d.ts.map +1 -0
  205. package/dist/cjs/intercept-network-call/fixtures.js +6 -0
  206. package/dist/cjs/intercept-network-call/fixtures.js.map +1 -0
  207. package/dist/cjs/intercept-network-call/index.d.ts +5 -0
  208. package/dist/cjs/intercept-network-call/index.d.ts.map +1 -0
  209. package/dist/cjs/intercept-network-call/index.js +11 -0
  210. package/dist/cjs/intercept-network-call/index.js.map +1 -0
  211. package/dist/cjs/intercept-network-call/intercept-network-call-fixture.d.ts +7 -0
  212. package/dist/cjs/intercept-network-call/intercept-network-call-fixture.d.ts.map +1 -0
  213. package/dist/cjs/intercept-network-call/intercept-network-call-fixture.js +18 -0
  214. package/dist/cjs/intercept-network-call/intercept-network-call-fixture.js.map +1 -0
  215. package/dist/cjs/intercept-network-call/intercept-network-call.d.ts +21 -0
  216. package/dist/cjs/intercept-network-call/intercept-network-call.d.ts.map +1 -0
  217. package/dist/cjs/intercept-network-call/intercept-network-call.js +59 -0
  218. package/dist/cjs/intercept-network-call/intercept-network-call.js.map +1 -0
  219. package/dist/cjs/internal/index.d.ts +2 -0
  220. package/dist/cjs/internal/index.d.ts.map +1 -0
  221. package/dist/cjs/internal/index.js +18 -0
  222. package/dist/cjs/internal/index.js.map +1 -0
  223. package/dist/cjs/internal/logger.d.ts +25 -0
  224. package/dist/cjs/internal/logger.d.ts.map +1 -0
  225. package/dist/cjs/internal/logger.js +33 -0
  226. package/dist/cjs/internal/logger.js.map +1 -0
  227. package/dist/cjs/log/config.d.ts +28 -0
  228. package/dist/cjs/log/config.d.ts.map +1 -0
  229. package/dist/cjs/log/config.js +165 -0
  230. package/dist/cjs/log/config.js.map +1 -0
  231. package/dist/cjs/log/fixtures.d.ts +2 -0
  232. package/dist/cjs/log/fixtures.d.ts.map +1 -0
  233. package/dist/cjs/log/fixtures.js +6 -0
  234. package/dist/cjs/log/fixtures.js.map +1 -0
  235. package/dist/cjs/log/formatters/colors.d.ts +13 -0
  236. package/dist/cjs/log/formatters/colors.d.ts.map +1 -0
  237. package/dist/cjs/log/formatters/colors.js +16 -0
  238. package/dist/cjs/log/formatters/colors.js.map +1 -0
  239. package/dist/cjs/log/formatters/format-message-base.d.ts +57 -0
  240. package/dist/cjs/log/formatters/format-message-base.d.ts.map +1 -0
  241. package/dist/cjs/log/formatters/format-message-base.js +198 -0
  242. package/dist/cjs/log/formatters/format-message-base.js.map +1 -0
  243. package/dist/cjs/log/formatters/format-message.d.ts +13 -0
  244. package/dist/cjs/log/formatters/format-message.d.ts.map +1 -0
  245. package/dist/cjs/log/formatters/format-message.js +127 -0
  246. package/dist/cjs/log/formatters/format-message.js.map +1 -0
  247. package/dist/cjs/log/index.d.ts +4 -0
  248. package/dist/cjs/log/index.d.ts.map +1 -0
  249. package/dist/cjs/log/index.js +14 -0
  250. package/dist/cjs/log/index.js.map +1 -0
  251. package/dist/cjs/log/log-fixture.d.ts +5 -0
  252. package/dist/cjs/log/log-fixture.d.ts.map +1 -0
  253. package/dist/cjs/log/log-fixture.js +23 -0
  254. package/dist/cjs/log/log-fixture.js.map +1 -0
  255. package/dist/cjs/log/log-organizer.d.ts +17 -0
  256. package/dist/cjs/log/log-organizer.d.ts.map +1 -0
  257. package/dist/cjs/log/log-organizer.js +81 -0
  258. package/dist/cjs/log/log-organizer.js.map +1 -0
  259. package/dist/cjs/log/log.d.ts +20 -0
  260. package/dist/cjs/log/log.d.ts.map +1 -0
  261. package/dist/cjs/log/log.js +268 -0
  262. package/dist/cjs/log/log.js.map +1 -0
  263. package/dist/cjs/log/outputs/add-test-header.d.ts +14 -0
  264. package/dist/cjs/log/outputs/add-test-header.d.ts.map +1 -0
  265. package/dist/cjs/log/outputs/add-test-header.js +92 -0
  266. package/dist/cjs/log/outputs/add-test-header.js.map +1 -0
  267. package/dist/cjs/log/outputs/context.d.ts +73 -0
  268. package/dist/cjs/log/outputs/context.d.ts.map +1 -0
  269. package/dist/cjs/log/outputs/context.js +156 -0
  270. package/dist/cjs/log/outputs/context.js.map +1 -0
  271. package/dist/cjs/log/outputs/create-log-file-path.d.ts +6 -0
  272. package/dist/cjs/log/outputs/create-log-file-path.d.ts.map +1 -0
  273. package/dist/cjs/log/outputs/create-log-file-path.js +118 -0
  274. package/dist/cjs/log/outputs/create-log-file-path.js.map +1 -0
  275. package/dist/cjs/log/outputs/log-to-console.d.ts +4 -0
  276. package/dist/cjs/log/outputs/log-to-console.d.ts.map +1 -0
  277. package/dist/cjs/log/outputs/log-to-console.js +26 -0
  278. package/dist/cjs/log/outputs/log-to-console.js.map +1 -0
  279. package/dist/cjs/log/outputs/log-to-file.d.ts +23 -0
  280. package/dist/cjs/log/outputs/log-to-file.d.ts.map +1 -0
  281. package/dist/cjs/log/outputs/log-to-file.js +198 -0
  282. package/dist/cjs/log/outputs/log-to-file.js.map +1 -0
  283. package/dist/cjs/log/test-step.d.ts +42 -0
  284. package/dist/cjs/log/test-step.d.ts.map +1 -0
  285. package/dist/cjs/log/test-step.js +110 -0
  286. package/dist/cjs/log/test-step.js.map +1 -0
  287. package/dist/cjs/log/types.d.ts +81 -0
  288. package/dist/cjs/log/types.d.ts.map +1 -0
  289. package/dist/cjs/log/types.js +13 -0
  290. package/dist/cjs/log/types.js.map +1 -0
  291. package/dist/cjs/log/utils/async.d.ts +6 -0
  292. package/dist/cjs/log/utils/async.d.ts.map +1 -0
  293. package/dist/cjs/log/utils/async.js +15 -0
  294. package/dist/cjs/log/utils/async.js.map +1 -0
  295. package/dist/cjs/log/utils/flag.d.ts +12 -0
  296. package/dist/cjs/log/utils/flag.d.ts.map +1 -0
  297. package/dist/cjs/log/utils/flag.js +19 -0
  298. package/dist/cjs/log/utils/flag.js.map +1 -0
  299. package/dist/cjs/log/utils/options.d.ts +14 -0
  300. package/dist/cjs/log/utils/options.d.ts.map +1 -0
  301. package/dist/cjs/log/utils/options.js +86 -0
  302. package/dist/cjs/log/utils/options.js.map +1 -0
  303. package/dist/cjs/log/utils/playwright-step-utils.d.ts +5 -0
  304. package/dist/cjs/log/utils/playwright-step-utils.d.ts.map +1 -0
  305. package/dist/cjs/log/utils/playwright-step-utils.js +48 -0
  306. package/dist/cjs/log/utils/playwright-step-utils.js.map +1 -0
  307. package/dist/cjs/network-error-monitor/fixtures.d.ts +91 -0
  308. package/dist/cjs/network-error-monitor/fixtures.d.ts.map +1 -0
  309. package/dist/cjs/network-error-monitor/fixtures.js +299 -0
  310. package/dist/cjs/network-error-monitor/fixtures.js.map +1 -0
  311. package/dist/cjs/network-recorder/core/har-builder.d.ts +122 -0
  312. package/dist/cjs/network-recorder/core/har-builder.d.ts.map +1 -0
  313. package/dist/cjs/network-recorder/core/har-builder.js +159 -0
  314. package/dist/cjs/network-recorder/core/har-builder.js.map +1 -0
  315. package/dist/cjs/network-recorder/core/har-manager.d.ts +74 -0
  316. package/dist/cjs/network-recorder/core/har-manager.d.ts.map +1 -0
  317. package/dist/cjs/network-recorder/core/har-manager.js +243 -0
  318. package/dist/cjs/network-recorder/core/har-manager.js.map +1 -0
  319. package/dist/cjs/network-recorder/core/har-playback-handler.d.ts +10 -0
  320. package/dist/cjs/network-recorder/core/har-playback-handler.d.ts.map +1 -0
  321. package/dist/cjs/network-recorder/core/har-playback-handler.js +291 -0
  322. package/dist/cjs/network-recorder/core/har-playback-handler.js.map +1 -0
  323. package/dist/cjs/network-recorder/core/index.d.ts +9 -0
  324. package/dist/cjs/network-recorder/core/index.d.ts.map +1 -0
  325. package/dist/cjs/network-recorder/core/index.js +35 -0
  326. package/dist/cjs/network-recorder/core/index.js.map +1 -0
  327. package/dist/cjs/network-recorder/core/mode-detector.d.ts +64 -0
  328. package/dist/cjs/network-recorder/core/mode-detector.d.ts.map +1 -0
  329. package/dist/cjs/network-recorder/core/mode-detector.js +191 -0
  330. package/dist/cjs/network-recorder/core/mode-detector.js.map +1 -0
  331. package/dist/cjs/network-recorder/core/network-recorder.d.ts +90 -0
  332. package/dist/cjs/network-recorder/core/network-recorder.d.ts.map +1 -0
  333. package/dist/cjs/network-recorder/core/network-recorder.js +260 -0
  334. package/dist/cjs/network-recorder/core/network-recorder.js.map +1 -0
  335. package/dist/cjs/network-recorder/core/stateful-api-mock.d.ts +31 -0
  336. package/dist/cjs/network-recorder/core/stateful-api-mock.d.ts.map +1 -0
  337. package/dist/cjs/network-recorder/core/stateful-api-mock.js +160 -0
  338. package/dist/cjs/network-recorder/core/stateful-api-mock.js.map +1 -0
  339. package/dist/cjs/network-recorder/core/types.d.ts +192 -0
  340. package/dist/cjs/network-recorder/core/types.d.ts.map +1 -0
  341. package/dist/cjs/network-recorder/core/types.js +54 -0
  342. package/dist/cjs/network-recorder/core/types.js.map +1 -0
  343. package/dist/cjs/network-recorder/fixtures.d.ts +2 -0
  344. package/dist/cjs/network-recorder/fixtures.d.ts.map +1 -0
  345. package/dist/cjs/network-recorder/fixtures.js +6 -0
  346. package/dist/cjs/network-recorder/fixtures.js.map +1 -0
  347. package/dist/cjs/network-recorder/index.d.ts +6 -0
  348. package/dist/cjs/network-recorder/index.d.ts.map +1 -0
  349. package/dist/cjs/network-recorder/index.js +22 -0
  350. package/dist/cjs/network-recorder/index.js.map +1 -0
  351. package/dist/cjs/network-recorder/network-recorder-fixture.d.ts +78 -0
  352. package/dist/cjs/network-recorder/network-recorder-fixture.d.ts.map +1 -0
  353. package/dist/cjs/network-recorder/network-recorder-fixture.js +79 -0
  354. package/dist/cjs/network-recorder/network-recorder-fixture.js.map +1 -0
  355. package/dist/cjs/network-recorder/network-recorder.d.ts +11 -0
  356. package/dist/cjs/network-recorder/network-recorder.d.ts.map +1 -0
  357. package/dist/cjs/network-recorder/network-recorder.js +32 -0
  358. package/dist/cjs/network-recorder/network-recorder.js.map +1 -0
  359. package/dist/cjs/recurse/fixtures.d.ts +2 -0
  360. package/dist/cjs/recurse/fixtures.d.ts.map +1 -0
  361. package/dist/cjs/recurse/fixtures.js +6 -0
  362. package/dist/cjs/recurse/fixtures.js.map +1 -0
  363. package/dist/cjs/recurse/index.d.ts +2 -0
  364. package/dist/cjs/recurse/index.d.ts.map +1 -0
  365. package/dist/cjs/recurse/index.js +18 -0
  366. package/dist/cjs/recurse/index.js.map +1 -0
  367. package/dist/cjs/recurse/recurse-fixture.d.ts +35 -0
  368. package/dist/cjs/recurse/recurse-fixture.d.ts.map +1 -0
  369. package/dist/cjs/recurse/recurse-fixture.js +14 -0
  370. package/dist/cjs/recurse/recurse-fixture.js.map +1 -0
  371. package/dist/cjs/recurse/recurse.d.ts +108 -0
  372. package/dist/cjs/recurse/recurse.d.ts.map +1 -0
  373. package/dist/cjs/recurse/recurse.js +298 -0
  374. package/dist/cjs/recurse/recurse.js.map +1 -0
  375. package/dist/esm/api-request/api-request-fixture.d.ts +47 -0
  376. package/dist/esm/api-request/api-request-fixture.d.ts.map +1 -0
  377. package/dist/esm/api-request/api-request-fixture.js +26 -0
  378. package/dist/esm/api-request/api-request-fixture.js.map +1 -0
  379. package/dist/esm/api-request/api-request.d.ts +108 -0
  380. package/dist/esm/api-request/api-request.d.ts.map +1 -0
  381. package/dist/esm/api-request/api-request.js +326 -0
  382. package/dist/esm/api-request/api-request.js.map +1 -0
  383. package/dist/esm/api-request/fixtures.d.ts +3 -0
  384. package/dist/esm/api-request/fixtures.d.ts.map +1 -0
  385. package/dist/esm/api-request/fixtures.js +13 -0
  386. package/dist/esm/api-request/fixtures.js.map +1 -0
  387. package/dist/esm/api-request/index.d.ts +7 -0
  388. package/dist/esm/api-request/index.d.ts.map +1 -0
  389. package/dist/esm/api-request/index.js +11 -0
  390. package/dist/esm/api-request/index.js.map +1 -0
  391. package/dist/esm/api-request/schema-validation/core.d.ts +13 -0
  392. package/dist/esm/api-request/schema-validation/core.d.ts.map +1 -0
  393. package/dist/esm/api-request/schema-validation/core.js +55 -0
  394. package/dist/esm/api-request/schema-validation/core.js.map +1 -0
  395. package/dist/esm/api-request/schema-validation/fixture.d.ts +20 -0
  396. package/dist/esm/api-request/schema-validation/fixture.d.ts.map +1 -0
  397. package/dist/esm/api-request/schema-validation/fixture.js +17 -0
  398. package/dist/esm/api-request/schema-validation/fixture.js.map +1 -0
  399. package/dist/esm/api-request/schema-validation/index.d.ts +6 -0
  400. package/dist/esm/api-request/schema-validation/index.d.ts.map +1 -0
  401. package/dist/esm/api-request/schema-validation/index.js +13 -0
  402. package/dist/esm/api-request/schema-validation/index.js.map +1 -0
  403. package/dist/esm/api-request/schema-validation/internal/file-loader.d.ts +50 -0
  404. package/dist/esm/api-request/schema-validation/internal/file-loader.d.ts.map +1 -0
  405. package/dist/esm/api-request/schema-validation/internal/file-loader.js +126 -0
  406. package/dist/esm/api-request/schema-validation/internal/file-loader.js.map +1 -0
  407. package/dist/esm/api-request/schema-validation/internal/openapi-handler.d.ts +43 -0
  408. package/dist/esm/api-request/schema-validation/internal/openapi-handler.d.ts.map +1 -0
  409. package/dist/esm/api-request/schema-validation/internal/openapi-handler.js +147 -0
  410. package/dist/esm/api-request/schema-validation/internal/openapi-handler.js.map +1 -0
  411. package/dist/esm/api-request/schema-validation/internal/promise-extension.d.ts +10 -0
  412. package/dist/esm/api-request/schema-validation/internal/promise-extension.d.ts.map +1 -0
  413. package/dist/esm/api-request/schema-validation/internal/promise-extension.js +14 -0
  414. package/dist/esm/api-request/schema-validation/internal/promise-extension.js.map +1 -0
  415. package/dist/esm/api-request/schema-validation/internal/response-extension.d.ts +18 -0
  416. package/dist/esm/api-request/schema-validation/internal/response-extension.d.ts.map +1 -0
  417. package/dist/esm/api-request/schema-validation/internal/response-extension.js +212 -0
  418. package/dist/esm/api-request/schema-validation/internal/response-extension.js.map +1 -0
  419. package/dist/esm/api-request/schema-validation/internal/result-builder.d.ts +62 -0
  420. package/dist/esm/api-request/schema-validation/internal/result-builder.d.ts.map +1 -0
  421. package/dist/esm/api-request/schema-validation/internal/result-builder.js +140 -0
  422. package/dist/esm/api-request/schema-validation/internal/result-builder.js.map +1 -0
  423. package/dist/esm/api-request/schema-validation/internal/safe-error-serializer.d.ts +58 -0
  424. package/dist/esm/api-request/schema-validation/internal/safe-error-serializer.d.ts.map +1 -0
  425. package/dist/esm/api-request/schema-validation/internal/safe-error-serializer.js +221 -0
  426. package/dist/esm/api-request/schema-validation/internal/safe-error-serializer.js.map +1 -0
  427. package/dist/esm/api-request/schema-validation/internal/schema-processors.d.ts +38 -0
  428. package/dist/esm/api-request/schema-validation/internal/schema-processors.d.ts.map +1 -0
  429. package/dist/esm/api-request/schema-validation/internal/schema-processors.js +341 -0
  430. package/dist/esm/api-request/schema-validation/internal/schema-processors.js.map +1 -0
  431. package/dist/esm/api-request/schema-validation/internal/shape-validator.d.ts +96 -0
  432. package/dist/esm/api-request/schema-validation/internal/shape-validator.d.ts.map +1 -0
  433. package/dist/esm/api-request/schema-validation/internal/shape-validator.js +180 -0
  434. package/dist/esm/api-request/schema-validation/internal/shape-validator.js.map +1 -0
  435. package/dist/esm/api-request/schema-validation/internal/validation-engine.d.ts +63 -0
  436. package/dist/esm/api-request/schema-validation/internal/validation-engine.d.ts.map +1 -0
  437. package/dist/esm/api-request/schema-validation/internal/validation-engine.js +395 -0
  438. package/dist/esm/api-request/schema-validation/internal/validation-engine.js.map +1 -0
  439. package/dist/esm/api-request/schema-validation/types.d.ts +92 -0
  440. package/dist/esm/api-request/schema-validation/types.d.ts.map +1 -0
  441. package/dist/esm/api-request/schema-validation/types.js +16 -0
  442. package/dist/esm/api-request/schema-validation/types.js.map +1 -0
  443. package/dist/esm/api-request/ui-display.d.ts +42 -0
  444. package/dist/esm/api-request/ui-display.d.ts.map +1 -0
  445. package/dist/esm/api-request/ui-display.js +370 -0
  446. package/dist/esm/api-request/ui-display.js.map +1 -0
  447. package/dist/esm/auth-session/apply-user-cookies-to-browser-context.d.ts +17 -0
  448. package/dist/esm/auth-session/apply-user-cookies-to-browser-context.d.ts.map +1 -0
  449. package/dist/esm/auth-session/apply-user-cookies-to-browser-context.js +49 -0
  450. package/dist/esm/auth-session/apply-user-cookies-to-browser-context.js.map +1 -0
  451. package/dist/esm/auth-session/core.d.ts +56 -0
  452. package/dist/esm/auth-session/core.d.ts.map +1 -0
  453. package/dist/esm/auth-session/core.js +271 -0
  454. package/dist/esm/auth-session/core.js.map +1 -0
  455. package/dist/esm/auth-session/fixtures.d.ts +83 -0
  456. package/dist/esm/auth-session/fixtures.d.ts.map +1 -0
  457. package/dist/esm/auth-session/fixtures.js +147 -0
  458. package/dist/esm/auth-session/fixtures.js.map +1 -0
  459. package/dist/esm/auth-session/global-setup-helper.d.ts +18 -0
  460. package/dist/esm/auth-session/global-setup-helper.d.ts.map +1 -0
  461. package/dist/esm/auth-session/global-setup-helper.js +26 -0
  462. package/dist/esm/auth-session/global-setup-helper.js.map +1 -0
  463. package/dist/esm/auth-session/index.d.ts +15 -0
  464. package/dist/esm/auth-session/index.d.ts.map +1 -0
  465. package/dist/esm/auth-session/index.js +45 -0
  466. package/dist/esm/auth-session/index.js.map +1 -0
  467. package/dist/esm/auth-session/internal/auth-configure.d.ts +19 -0
  468. package/dist/esm/auth-session/internal/auth-configure.d.ts.map +1 -0
  469. package/dist/esm/auth-session/internal/auth-configure.js +117 -0
  470. package/dist/esm/auth-session/internal/auth-configure.js.map +1 -0
  471. package/dist/esm/auth-session/internal/auth-global-setup.d.ts +33 -0
  472. package/dist/esm/auth-session/internal/auth-global-setup.d.ts.map +1 -0
  473. package/dist/esm/auth-session/internal/auth-global-setup.js +152 -0
  474. package/dist/esm/auth-session/internal/auth-global-setup.js.map +1 -0
  475. package/dist/esm/auth-session/internal/auth-provider-validator.d.ts +36 -0
  476. package/dist/esm/auth-session/internal/auth-provider-validator.d.ts.map +1 -0
  477. package/dist/esm/auth-session/internal/auth-provider-validator.js +240 -0
  478. package/dist/esm/auth-session/internal/auth-provider-validator.js.map +1 -0
  479. package/dist/esm/auth-session/internal/auth-provider.d.ts +92 -0
  480. package/dist/esm/auth-session/internal/auth-provider.d.ts.map +1 -0
  481. package/dist/esm/auth-session/internal/auth-provider.js +40 -0
  482. package/dist/esm/auth-session/internal/auth-provider.js.map +1 -0
  483. package/dist/esm/auth-session/internal/auth-session.d.ts +76 -0
  484. package/dist/esm/auth-session/internal/auth-session.d.ts.map +1 -0
  485. package/dist/esm/auth-session/internal/auth-session.js +651 -0
  486. package/dist/esm/auth-session/internal/auth-session.js.map +1 -0
  487. package/dist/esm/auth-session/internal/auth-storage-utils.d.ts +62 -0
  488. package/dist/esm/auth-session/internal/auth-storage-utils.d.ts.map +1 -0
  489. package/dist/esm/auth-session/internal/auth-storage-utils.js +314 -0
  490. package/dist/esm/auth-session/internal/auth-storage-utils.js.map +1 -0
  491. package/dist/esm/auth-session/internal/cache-manager.d.ts +116 -0
  492. package/dist/esm/auth-session/internal/cache-manager.d.ts.map +1 -0
  493. package/dist/esm/auth-session/internal/cache-manager.js +267 -0
  494. package/dist/esm/auth-session/internal/cache-manager.js.map +1 -0
  495. package/dist/esm/auth-session/internal/types.d.ts +132 -0
  496. package/dist/esm/auth-session/internal/types.d.ts.map +1 -0
  497. package/dist/esm/auth-session/internal/types.js +4 -0
  498. package/dist/esm/auth-session/internal/types.js.map +1 -0
  499. package/dist/esm/burn-in/core/analyzer.d.ts +36 -0
  500. package/dist/esm/burn-in/core/analyzer.d.ts.map +1 -0
  501. package/dist/esm/burn-in/core/analyzer.js +329 -0
  502. package/dist/esm/burn-in/core/analyzer.js.map +1 -0
  503. package/dist/esm/burn-in/core/config.d.ts +4 -0
  504. package/dist/esm/burn-in/core/config.d.ts.map +1 -0
  505. package/dist/esm/burn-in/core/config.js +107 -0
  506. package/dist/esm/burn-in/core/config.js.map +1 -0
  507. package/dist/esm/burn-in/core/types.d.ts +24 -0
  508. package/dist/esm/burn-in/core/types.d.ts.map +1 -0
  509. package/dist/esm/burn-in/core/types.js +3 -0
  510. package/dist/esm/burn-in/core/types.js.map +1 -0
  511. package/dist/esm/burn-in/index.d.ts +3 -0
  512. package/dist/esm/burn-in/index.d.ts.map +1 -0
  513. package/dist/esm/burn-in/index.js +7 -0
  514. package/dist/esm/burn-in/index.js.map +1 -0
  515. package/dist/esm/burn-in/runner.d.ts +13 -0
  516. package/dist/esm/burn-in/runner.d.ts.map +1 -0
  517. package/dist/esm/burn-in/runner.js +61 -0
  518. package/dist/esm/burn-in/runner.js.map +1 -0
  519. package/dist/esm/file-utils/core/csv-reader.d.ts +35 -0
  520. package/dist/esm/file-utils/core/csv-reader.d.ts.map +1 -0
  521. package/dist/esm/file-utils/core/csv-reader.js +206 -0
  522. package/dist/esm/file-utils/core/csv-reader.js.map +1 -0
  523. package/dist/esm/file-utils/core/file-downloader.d.ts +19 -0
  524. package/dist/esm/file-utils/core/file-downloader.d.ts.map +1 -0
  525. package/dist/esm/file-utils/core/file-downloader.js +49 -0
  526. package/dist/esm/file-utils/core/file-downloader.js.map +1 -0
  527. package/dist/esm/file-utils/core/pdf-reader.d.ts +42 -0
  528. package/dist/esm/file-utils/core/pdf-reader.d.ts.map +1 -0
  529. package/dist/esm/file-utils/core/pdf-reader.js +135 -0
  530. package/dist/esm/file-utils/core/pdf-reader.js.map +1 -0
  531. package/dist/esm/file-utils/core/types.d.ts +138 -0
  532. package/dist/esm/file-utils/core/types.d.ts.map +1 -0
  533. package/dist/esm/file-utils/core/types.js +72 -0
  534. package/dist/esm/file-utils/core/types.js.map +1 -0
  535. package/dist/esm/file-utils/core/xlsx-reader.d.ts +31 -0
  536. package/dist/esm/file-utils/core/xlsx-reader.d.ts.map +1 -0
  537. package/dist/esm/file-utils/core/xlsx-reader.js +216 -0
  538. package/dist/esm/file-utils/core/xlsx-reader.js.map +1 -0
  539. package/dist/esm/file-utils/core/zip-reader.d.ts +26 -0
  540. package/dist/esm/file-utils/core/zip-reader.d.ts.map +1 -0
  541. package/dist/esm/file-utils/core/zip-reader.js +95 -0
  542. package/dist/esm/file-utils/core/zip-reader.js.map +1 -0
  543. package/dist/esm/file-utils/file-utils-fixture.d.ts +16 -0
  544. package/dist/esm/file-utils/file-utils-fixture.d.ts.map +1 -0
  545. package/dist/esm/file-utils/file-utils-fixture.js +65 -0
  546. package/dist/esm/file-utils/file-utils-fixture.js.map +1 -0
  547. package/dist/esm/file-utils/fixtures.d.ts +2 -0
  548. package/dist/esm/file-utils/fixtures.d.ts.map +1 -0
  549. package/dist/esm/file-utils/fixtures.js +6 -0
  550. package/dist/esm/file-utils/fixtures.js.map +1 -0
  551. package/dist/esm/file-utils/index.d.ts +9 -0
  552. package/dist/esm/file-utils/index.d.ts.map +1 -0
  553. package/dist/esm/file-utils/index.js +25 -0
  554. package/dist/esm/file-utils/index.js.map +1 -0
  555. package/dist/esm/index.d.ts +13 -0
  556. package/dist/esm/index.d.ts.map +1 -0
  557. package/dist/esm/index.js +45 -0
  558. package/dist/esm/index.js.map +1 -0
  559. package/dist/esm/intercept-network-call/core/fulfill-network-call.d.ts +10 -0
  560. package/dist/esm/intercept-network-call/core/fulfill-network-call.d.ts.map +1 -0
  561. package/dist/esm/intercept-network-call/core/fulfill-network-call.js +88 -0
  562. package/dist/esm/intercept-network-call/core/fulfill-network-call.js.map +1 -0
  563. package/dist/esm/intercept-network-call/core/observe-network-call.d.ts +4 -0
  564. package/dist/esm/intercept-network-call/core/observe-network-call.d.ts.map +1 -0
  565. package/dist/esm/intercept-network-call/core/observe-network-call.js +56 -0
  566. package/dist/esm/intercept-network-call/core/observe-network-call.js.map +1 -0
  567. package/dist/esm/intercept-network-call/core/types.d.ts +28 -0
  568. package/dist/esm/intercept-network-call/core/types.d.ts.map +1 -0
  569. package/dist/esm/intercept-network-call/core/types.js +28 -0
  570. package/dist/esm/intercept-network-call/core/types.js.map +1 -0
  571. package/dist/esm/intercept-network-call/core/utils/matches-request.d.ts +9 -0
  572. package/dist/esm/intercept-network-call/core/utils/matches-request.d.ts.map +1 -0
  573. package/dist/esm/intercept-network-call/core/utils/matches-request.js +32 -0
  574. package/dist/esm/intercept-network-call/core/utils/matches-request.js.map +1 -0
  575. package/dist/esm/intercept-network-call/fixtures.d.ts +2 -0
  576. package/dist/esm/intercept-network-call/fixtures.d.ts.map +1 -0
  577. package/dist/esm/intercept-network-call/fixtures.js +6 -0
  578. package/dist/esm/intercept-network-call/fixtures.js.map +1 -0
  579. package/dist/esm/intercept-network-call/index.d.ts +5 -0
  580. package/dist/esm/intercept-network-call/index.d.ts.map +1 -0
  581. package/dist/esm/intercept-network-call/index.js +11 -0
  582. package/dist/esm/intercept-network-call/index.js.map +1 -0
  583. package/dist/esm/intercept-network-call/intercept-network-call-fixture.d.ts +7 -0
  584. package/dist/esm/intercept-network-call/intercept-network-call-fixture.d.ts.map +1 -0
  585. package/dist/esm/intercept-network-call/intercept-network-call-fixture.js +18 -0
  586. package/dist/esm/intercept-network-call/intercept-network-call-fixture.js.map +1 -0
  587. package/dist/esm/intercept-network-call/intercept-network-call.d.ts +21 -0
  588. package/dist/esm/intercept-network-call/intercept-network-call.d.ts.map +1 -0
  589. package/dist/esm/intercept-network-call/intercept-network-call.js +59 -0
  590. package/dist/esm/intercept-network-call/intercept-network-call.js.map +1 -0
  591. package/dist/esm/internal/index.d.ts +2 -0
  592. package/dist/esm/internal/index.d.ts.map +1 -0
  593. package/dist/esm/internal/index.js +18 -0
  594. package/dist/esm/internal/index.js.map +1 -0
  595. package/dist/esm/internal/logger.d.ts +25 -0
  596. package/dist/esm/internal/logger.d.ts.map +1 -0
  597. package/dist/esm/internal/logger.js +33 -0
  598. package/dist/esm/internal/logger.js.map +1 -0
  599. package/dist/esm/log/config.d.ts +28 -0
  600. package/dist/esm/log/config.d.ts.map +1 -0
  601. package/dist/esm/log/config.js +165 -0
  602. package/dist/esm/log/config.js.map +1 -0
  603. package/dist/esm/log/fixtures.d.ts +2 -0
  604. package/dist/esm/log/fixtures.d.ts.map +1 -0
  605. package/dist/esm/log/fixtures.js +6 -0
  606. package/dist/esm/log/fixtures.js.map +1 -0
  607. package/dist/esm/log/formatters/colors.d.ts +13 -0
  608. package/dist/esm/log/formatters/colors.d.ts.map +1 -0
  609. package/dist/esm/log/formatters/colors.js +16 -0
  610. package/dist/esm/log/formatters/colors.js.map +1 -0
  611. package/dist/esm/log/formatters/format-message-base.d.ts +57 -0
  612. package/dist/esm/log/formatters/format-message-base.d.ts.map +1 -0
  613. package/dist/esm/log/formatters/format-message-base.js +198 -0
  614. package/dist/esm/log/formatters/format-message-base.js.map +1 -0
  615. package/dist/esm/log/formatters/format-message.d.ts +13 -0
  616. package/dist/esm/log/formatters/format-message.d.ts.map +1 -0
  617. package/dist/esm/log/formatters/format-message.js +127 -0
  618. package/dist/esm/log/formatters/format-message.js.map +1 -0
  619. package/dist/esm/log/index.d.ts +4 -0
  620. package/dist/esm/log/index.d.ts.map +1 -0
  621. package/dist/esm/log/index.js +14 -0
  622. package/dist/esm/log/index.js.map +1 -0
  623. package/dist/esm/log/log-fixture.d.ts +5 -0
  624. package/dist/esm/log/log-fixture.d.ts.map +1 -0
  625. package/dist/esm/log/log-fixture.js +23 -0
  626. package/dist/esm/log/log-fixture.js.map +1 -0
  627. package/dist/esm/log/log-organizer.d.ts +17 -0
  628. package/dist/esm/log/log-organizer.d.ts.map +1 -0
  629. package/dist/esm/log/log-organizer.js +81 -0
  630. package/dist/esm/log/log-organizer.js.map +1 -0
  631. package/dist/esm/log/log.d.ts +20 -0
  632. package/dist/esm/log/log.d.ts.map +1 -0
  633. package/dist/esm/log/log.js +268 -0
  634. package/dist/esm/log/log.js.map +1 -0
  635. package/dist/esm/log/outputs/add-test-header.d.ts +14 -0
  636. package/dist/esm/log/outputs/add-test-header.d.ts.map +1 -0
  637. package/dist/esm/log/outputs/add-test-header.js +92 -0
  638. package/dist/esm/log/outputs/add-test-header.js.map +1 -0
  639. package/dist/esm/log/outputs/context.d.ts +73 -0
  640. package/dist/esm/log/outputs/context.d.ts.map +1 -0
  641. package/dist/esm/log/outputs/context.js +156 -0
  642. package/dist/esm/log/outputs/context.js.map +1 -0
  643. package/dist/esm/log/outputs/create-log-file-path.d.ts +6 -0
  644. package/dist/esm/log/outputs/create-log-file-path.d.ts.map +1 -0
  645. package/dist/esm/log/outputs/create-log-file-path.js +118 -0
  646. package/dist/esm/log/outputs/create-log-file-path.js.map +1 -0
  647. package/dist/esm/log/outputs/log-to-console.d.ts +4 -0
  648. package/dist/esm/log/outputs/log-to-console.d.ts.map +1 -0
  649. package/dist/esm/log/outputs/log-to-console.js +26 -0
  650. package/dist/esm/log/outputs/log-to-console.js.map +1 -0
  651. package/dist/esm/log/outputs/log-to-file.d.ts +23 -0
  652. package/dist/esm/log/outputs/log-to-file.d.ts.map +1 -0
  653. package/dist/esm/log/outputs/log-to-file.js +198 -0
  654. package/dist/esm/log/outputs/log-to-file.js.map +1 -0
  655. package/dist/esm/log/test-step.d.ts +42 -0
  656. package/dist/esm/log/test-step.d.ts.map +1 -0
  657. package/dist/esm/log/test-step.js +110 -0
  658. package/dist/esm/log/test-step.js.map +1 -0
  659. package/dist/esm/log/types.d.ts +81 -0
  660. package/dist/esm/log/types.d.ts.map +1 -0
  661. package/dist/esm/log/types.js +13 -0
  662. package/dist/esm/log/types.js.map +1 -0
  663. package/dist/esm/log/utils/async.d.ts +6 -0
  664. package/dist/esm/log/utils/async.d.ts.map +1 -0
  665. package/dist/esm/log/utils/async.js +15 -0
  666. package/dist/esm/log/utils/async.js.map +1 -0
  667. package/dist/esm/log/utils/flag.d.ts +12 -0
  668. package/dist/esm/log/utils/flag.d.ts.map +1 -0
  669. package/dist/esm/log/utils/flag.js +19 -0
  670. package/dist/esm/log/utils/flag.js.map +1 -0
  671. package/dist/esm/log/utils/options.d.ts +14 -0
  672. package/dist/esm/log/utils/options.d.ts.map +1 -0
  673. package/dist/esm/log/utils/options.js +86 -0
  674. package/dist/esm/log/utils/options.js.map +1 -0
  675. package/dist/esm/log/utils/playwright-step-utils.d.ts +5 -0
  676. package/dist/esm/log/utils/playwright-step-utils.d.ts.map +1 -0
  677. package/dist/esm/log/utils/playwright-step-utils.js +48 -0
  678. package/dist/esm/log/utils/playwright-step-utils.js.map +1 -0
  679. package/dist/esm/network-error-monitor/fixtures.d.ts +91 -0
  680. package/dist/esm/network-error-monitor/fixtures.d.ts.map +1 -0
  681. package/dist/esm/network-error-monitor/fixtures.js +299 -0
  682. package/dist/esm/network-error-monitor/fixtures.js.map +1 -0
  683. package/dist/esm/network-recorder/core/har-builder.d.ts +122 -0
  684. package/dist/esm/network-recorder/core/har-builder.d.ts.map +1 -0
  685. package/dist/esm/network-recorder/core/har-builder.js +159 -0
  686. package/dist/esm/network-recorder/core/har-builder.js.map +1 -0
  687. package/dist/esm/network-recorder/core/har-manager.d.ts +74 -0
  688. package/dist/esm/network-recorder/core/har-manager.d.ts.map +1 -0
  689. package/dist/esm/network-recorder/core/har-manager.js +243 -0
  690. package/dist/esm/network-recorder/core/har-manager.js.map +1 -0
  691. package/dist/esm/network-recorder/core/har-playback-handler.d.ts +10 -0
  692. package/dist/esm/network-recorder/core/har-playback-handler.d.ts.map +1 -0
  693. package/dist/esm/network-recorder/core/har-playback-handler.js +291 -0
  694. package/dist/esm/network-recorder/core/har-playback-handler.js.map +1 -0
  695. package/dist/esm/network-recorder/core/index.d.ts +9 -0
  696. package/dist/esm/network-recorder/core/index.d.ts.map +1 -0
  697. package/dist/esm/network-recorder/core/index.js +35 -0
  698. package/dist/esm/network-recorder/core/index.js.map +1 -0
  699. package/dist/esm/network-recorder/core/mode-detector.d.ts +64 -0
  700. package/dist/esm/network-recorder/core/mode-detector.d.ts.map +1 -0
  701. package/dist/esm/network-recorder/core/mode-detector.js +191 -0
  702. package/dist/esm/network-recorder/core/mode-detector.js.map +1 -0
  703. package/dist/esm/network-recorder/core/network-recorder.d.ts +90 -0
  704. package/dist/esm/network-recorder/core/network-recorder.d.ts.map +1 -0
  705. package/dist/esm/network-recorder/core/network-recorder.js +260 -0
  706. package/dist/esm/network-recorder/core/network-recorder.js.map +1 -0
  707. package/dist/esm/network-recorder/core/stateful-api-mock.d.ts +31 -0
  708. package/dist/esm/network-recorder/core/stateful-api-mock.d.ts.map +1 -0
  709. package/dist/esm/network-recorder/core/stateful-api-mock.js +160 -0
  710. package/dist/esm/network-recorder/core/stateful-api-mock.js.map +1 -0
  711. package/dist/esm/network-recorder/core/types.d.ts +192 -0
  712. package/dist/esm/network-recorder/core/types.d.ts.map +1 -0
  713. package/dist/esm/network-recorder/core/types.js +54 -0
  714. package/dist/esm/network-recorder/core/types.js.map +1 -0
  715. package/dist/esm/network-recorder/fixtures.d.ts +2 -0
  716. package/dist/esm/network-recorder/fixtures.d.ts.map +1 -0
  717. package/dist/esm/network-recorder/fixtures.js +6 -0
  718. package/dist/esm/network-recorder/fixtures.js.map +1 -0
  719. package/dist/esm/network-recorder/index.d.ts +6 -0
  720. package/dist/esm/network-recorder/index.d.ts.map +1 -0
  721. package/dist/esm/network-recorder/index.js +22 -0
  722. package/dist/esm/network-recorder/index.js.map +1 -0
  723. package/dist/esm/network-recorder/network-recorder-fixture.d.ts +78 -0
  724. package/dist/esm/network-recorder/network-recorder-fixture.d.ts.map +1 -0
  725. package/dist/esm/network-recorder/network-recorder-fixture.js +79 -0
  726. package/dist/esm/network-recorder/network-recorder-fixture.js.map +1 -0
  727. package/dist/esm/network-recorder/network-recorder.d.ts +11 -0
  728. package/dist/esm/network-recorder/network-recorder.d.ts.map +1 -0
  729. package/dist/esm/network-recorder/network-recorder.js +32 -0
  730. package/dist/esm/network-recorder/network-recorder.js.map +1 -0
  731. package/dist/esm/recurse/fixtures.d.ts +2 -0
  732. package/dist/esm/recurse/fixtures.d.ts.map +1 -0
  733. package/dist/esm/recurse/fixtures.js +6 -0
  734. package/dist/esm/recurse/fixtures.js.map +1 -0
  735. package/dist/esm/recurse/index.d.ts +2 -0
  736. package/dist/esm/recurse/index.d.ts.map +1 -0
  737. package/dist/esm/recurse/index.js +18 -0
  738. package/dist/esm/recurse/index.js.map +1 -0
  739. package/dist/esm/recurse/recurse-fixture.d.ts +35 -0
  740. package/dist/esm/recurse/recurse-fixture.d.ts.map +1 -0
  741. package/dist/esm/recurse/recurse-fixture.js +14 -0
  742. package/dist/esm/recurse/recurse-fixture.js.map +1 -0
  743. package/dist/esm/recurse/recurse.d.ts +108 -0
  744. package/dist/esm/recurse/recurse.d.ts.map +1 -0
  745. package/dist/esm/recurse/recurse.js +298 -0
  746. package/dist/esm/recurse/recurse.js.map +1 -0
  747. package/dist/types/api-request/api-request-fixture.d.ts +47 -0
  748. package/dist/types/api-request/api-request-fixture.d.ts.map +1 -0
  749. package/dist/types/api-request/api-request.d.ts +108 -0
  750. package/dist/types/api-request/api-request.d.ts.map +1 -0
  751. package/dist/types/api-request/fixtures.d.ts +3 -0
  752. package/dist/types/api-request/fixtures.d.ts.map +1 -0
  753. package/dist/types/api-request/index.d.ts +7 -0
  754. package/dist/types/api-request/index.d.ts.map +1 -0
  755. package/dist/types/api-request/schema-validation/core.d.ts +13 -0
  756. package/dist/types/api-request/schema-validation/core.d.ts.map +1 -0
  757. package/dist/types/api-request/schema-validation/fixture.d.ts +20 -0
  758. package/dist/types/api-request/schema-validation/fixture.d.ts.map +1 -0
  759. package/dist/types/api-request/schema-validation/index.d.ts +6 -0
  760. package/dist/types/api-request/schema-validation/index.d.ts.map +1 -0
  761. package/dist/types/api-request/schema-validation/internal/file-loader.d.ts +50 -0
  762. package/dist/types/api-request/schema-validation/internal/file-loader.d.ts.map +1 -0
  763. package/dist/types/api-request/schema-validation/internal/openapi-handler.d.ts +43 -0
  764. package/dist/types/api-request/schema-validation/internal/openapi-handler.d.ts.map +1 -0
  765. package/dist/types/api-request/schema-validation/internal/promise-extension.d.ts +10 -0
  766. package/dist/types/api-request/schema-validation/internal/promise-extension.d.ts.map +1 -0
  767. package/dist/types/api-request/schema-validation/internal/response-extension.d.ts +18 -0
  768. package/dist/types/api-request/schema-validation/internal/response-extension.d.ts.map +1 -0
  769. package/dist/types/api-request/schema-validation/internal/result-builder.d.ts +62 -0
  770. package/dist/types/api-request/schema-validation/internal/result-builder.d.ts.map +1 -0
  771. package/dist/types/api-request/schema-validation/internal/safe-error-serializer.d.ts +58 -0
  772. package/dist/types/api-request/schema-validation/internal/safe-error-serializer.d.ts.map +1 -0
  773. package/dist/types/api-request/schema-validation/internal/schema-processors.d.ts +38 -0
  774. package/dist/types/api-request/schema-validation/internal/schema-processors.d.ts.map +1 -0
  775. package/dist/types/api-request/schema-validation/internal/shape-validator.d.ts +96 -0
  776. package/dist/types/api-request/schema-validation/internal/shape-validator.d.ts.map +1 -0
  777. package/dist/types/api-request/schema-validation/internal/validation-engine.d.ts +63 -0
  778. package/dist/types/api-request/schema-validation/internal/validation-engine.d.ts.map +1 -0
  779. package/dist/types/api-request/schema-validation/types.d.ts +92 -0
  780. package/dist/types/api-request/schema-validation/types.d.ts.map +1 -0
  781. package/dist/types/api-request/ui-display.d.ts +42 -0
  782. package/dist/types/api-request/ui-display.d.ts.map +1 -0
  783. package/dist/types/auth-session/apply-user-cookies-to-browser-context.d.ts +17 -0
  784. package/dist/types/auth-session/apply-user-cookies-to-browser-context.d.ts.map +1 -0
  785. package/dist/types/auth-session/core.d.ts +56 -0
  786. package/dist/types/auth-session/core.d.ts.map +1 -0
  787. package/dist/types/auth-session/fixtures.d.ts +83 -0
  788. package/dist/types/auth-session/fixtures.d.ts.map +1 -0
  789. package/dist/types/auth-session/global-setup-helper.d.ts +18 -0
  790. package/dist/types/auth-session/global-setup-helper.d.ts.map +1 -0
  791. package/dist/types/auth-session/index.d.ts +15 -0
  792. package/dist/types/auth-session/index.d.ts.map +1 -0
  793. package/dist/types/auth-session/internal/auth-configure.d.ts +19 -0
  794. package/dist/types/auth-session/internal/auth-configure.d.ts.map +1 -0
  795. package/dist/types/auth-session/internal/auth-global-setup.d.ts +33 -0
  796. package/dist/types/auth-session/internal/auth-global-setup.d.ts.map +1 -0
  797. package/dist/types/auth-session/internal/auth-provider-validator.d.ts +36 -0
  798. package/dist/types/auth-session/internal/auth-provider-validator.d.ts.map +1 -0
  799. package/dist/types/auth-session/internal/auth-provider.d.ts +92 -0
  800. package/dist/types/auth-session/internal/auth-provider.d.ts.map +1 -0
  801. package/dist/types/auth-session/internal/auth-session.d.ts +76 -0
  802. package/dist/types/auth-session/internal/auth-session.d.ts.map +1 -0
  803. package/dist/types/auth-session/internal/auth-storage-utils.d.ts +62 -0
  804. package/dist/types/auth-session/internal/auth-storage-utils.d.ts.map +1 -0
  805. package/dist/types/auth-session/internal/cache-manager.d.ts +116 -0
  806. package/dist/types/auth-session/internal/cache-manager.d.ts.map +1 -0
  807. package/dist/types/auth-session/internal/types.d.ts +132 -0
  808. package/dist/types/auth-session/internal/types.d.ts.map +1 -0
  809. package/dist/types/burn-in/core/analyzer.d.ts +36 -0
  810. package/dist/types/burn-in/core/analyzer.d.ts.map +1 -0
  811. package/dist/types/burn-in/core/config.d.ts +4 -0
  812. package/dist/types/burn-in/core/config.d.ts.map +1 -0
  813. package/dist/types/burn-in/core/types.d.ts +24 -0
  814. package/dist/types/burn-in/core/types.d.ts.map +1 -0
  815. package/dist/types/burn-in/index.d.ts +3 -0
  816. package/dist/types/burn-in/index.d.ts.map +1 -0
  817. package/dist/types/burn-in/runner.d.ts +13 -0
  818. package/dist/types/burn-in/runner.d.ts.map +1 -0
  819. package/dist/types/file-utils/core/csv-reader.d.ts +35 -0
  820. package/dist/types/file-utils/core/csv-reader.d.ts.map +1 -0
  821. package/dist/types/file-utils/core/file-downloader.d.ts +19 -0
  822. package/dist/types/file-utils/core/file-downloader.d.ts.map +1 -0
  823. package/dist/types/file-utils/core/pdf-reader.d.ts +42 -0
  824. package/dist/types/file-utils/core/pdf-reader.d.ts.map +1 -0
  825. package/dist/types/file-utils/core/types.d.ts +138 -0
  826. package/dist/types/file-utils/core/types.d.ts.map +1 -0
  827. package/dist/types/file-utils/core/xlsx-reader.d.ts +31 -0
  828. package/dist/types/file-utils/core/xlsx-reader.d.ts.map +1 -0
  829. package/dist/types/file-utils/core/zip-reader.d.ts +26 -0
  830. package/dist/types/file-utils/core/zip-reader.d.ts.map +1 -0
  831. package/dist/types/file-utils/file-utils-fixture.d.ts +16 -0
  832. package/dist/types/file-utils/file-utils-fixture.d.ts.map +1 -0
  833. package/dist/types/file-utils/fixtures.d.ts +2 -0
  834. package/dist/types/file-utils/fixtures.d.ts.map +1 -0
  835. package/dist/types/file-utils/index.d.ts +9 -0
  836. package/dist/types/file-utils/index.d.ts.map +1 -0
  837. package/dist/types/index.d.ts +13 -0
  838. package/dist/types/index.d.ts.map +1 -0
  839. package/dist/types/intercept-network-call/core/fulfill-network-call.d.ts +10 -0
  840. package/dist/types/intercept-network-call/core/fulfill-network-call.d.ts.map +1 -0
  841. package/dist/types/intercept-network-call/core/observe-network-call.d.ts +4 -0
  842. package/dist/types/intercept-network-call/core/observe-network-call.d.ts.map +1 -0
  843. package/dist/types/intercept-network-call/core/types.d.ts +28 -0
  844. package/dist/types/intercept-network-call/core/types.d.ts.map +1 -0
  845. package/dist/types/intercept-network-call/core/utils/matches-request.d.ts +9 -0
  846. package/dist/types/intercept-network-call/core/utils/matches-request.d.ts.map +1 -0
  847. package/dist/types/intercept-network-call/fixtures.d.ts +2 -0
  848. package/dist/types/intercept-network-call/fixtures.d.ts.map +1 -0
  849. package/dist/types/intercept-network-call/index.d.ts +5 -0
  850. package/dist/types/intercept-network-call/index.d.ts.map +1 -0
  851. package/dist/types/intercept-network-call/intercept-network-call-fixture.d.ts +7 -0
  852. package/dist/types/intercept-network-call/intercept-network-call-fixture.d.ts.map +1 -0
  853. package/dist/types/intercept-network-call/intercept-network-call.d.ts +21 -0
  854. package/dist/types/intercept-network-call/intercept-network-call.d.ts.map +1 -0
  855. package/dist/types/internal/index.d.ts +2 -0
  856. package/dist/types/internal/index.d.ts.map +1 -0
  857. package/dist/types/internal/logger.d.ts +25 -0
  858. package/dist/types/internal/logger.d.ts.map +1 -0
  859. package/dist/types/log/config.d.ts +28 -0
  860. package/dist/types/log/config.d.ts.map +1 -0
  861. package/dist/types/log/fixtures.d.ts +2 -0
  862. package/dist/types/log/fixtures.d.ts.map +1 -0
  863. package/dist/types/log/formatters/colors.d.ts +13 -0
  864. package/dist/types/log/formatters/colors.d.ts.map +1 -0
  865. package/dist/types/log/formatters/format-message-base.d.ts +57 -0
  866. package/dist/types/log/formatters/format-message-base.d.ts.map +1 -0
  867. package/dist/types/log/formatters/format-message.d.ts +13 -0
  868. package/dist/types/log/formatters/format-message.d.ts.map +1 -0
  869. package/dist/types/log/index.d.ts +4 -0
  870. package/dist/types/log/index.d.ts.map +1 -0
  871. package/dist/types/log/log-fixture.d.ts +5 -0
  872. package/dist/types/log/log-fixture.d.ts.map +1 -0
  873. package/dist/types/log/log-organizer.d.ts +17 -0
  874. package/dist/types/log/log-organizer.d.ts.map +1 -0
  875. package/dist/types/log/log.d.ts +20 -0
  876. package/dist/types/log/log.d.ts.map +1 -0
  877. package/dist/types/log/outputs/add-test-header.d.ts +14 -0
  878. package/dist/types/log/outputs/add-test-header.d.ts.map +1 -0
  879. package/dist/types/log/outputs/context.d.ts +73 -0
  880. package/dist/types/log/outputs/context.d.ts.map +1 -0
  881. package/dist/types/log/outputs/create-log-file-path.d.ts +6 -0
  882. package/dist/types/log/outputs/create-log-file-path.d.ts.map +1 -0
  883. package/dist/types/log/outputs/log-to-console.d.ts +4 -0
  884. package/dist/types/log/outputs/log-to-console.d.ts.map +1 -0
  885. package/dist/types/log/outputs/log-to-file.d.ts +23 -0
  886. package/dist/types/log/outputs/log-to-file.d.ts.map +1 -0
  887. package/dist/types/log/test-step.d.ts +42 -0
  888. package/dist/types/log/test-step.d.ts.map +1 -0
  889. package/dist/types/log/types.d.ts +81 -0
  890. package/dist/types/log/types.d.ts.map +1 -0
  891. package/dist/types/log/utils/async.d.ts +6 -0
  892. package/dist/types/log/utils/async.d.ts.map +1 -0
  893. package/dist/types/log/utils/flag.d.ts +12 -0
  894. package/dist/types/log/utils/flag.d.ts.map +1 -0
  895. package/dist/types/log/utils/options.d.ts +14 -0
  896. package/dist/types/log/utils/options.d.ts.map +1 -0
  897. package/dist/types/log/utils/playwright-step-utils.d.ts +5 -0
  898. package/dist/types/log/utils/playwright-step-utils.d.ts.map +1 -0
  899. package/dist/types/network-error-monitor/fixtures.d.ts +91 -0
  900. package/dist/types/network-error-monitor/fixtures.d.ts.map +1 -0
  901. package/dist/types/network-recorder/core/har-builder.d.ts +122 -0
  902. package/dist/types/network-recorder/core/har-builder.d.ts.map +1 -0
  903. package/dist/types/network-recorder/core/har-manager.d.ts +74 -0
  904. package/dist/types/network-recorder/core/har-manager.d.ts.map +1 -0
  905. package/dist/types/network-recorder/core/har-playback-handler.d.ts +10 -0
  906. package/dist/types/network-recorder/core/har-playback-handler.d.ts.map +1 -0
  907. package/dist/types/network-recorder/core/index.d.ts +9 -0
  908. package/dist/types/network-recorder/core/index.d.ts.map +1 -0
  909. package/dist/types/network-recorder/core/mode-detector.d.ts +64 -0
  910. package/dist/types/network-recorder/core/mode-detector.d.ts.map +1 -0
  911. package/dist/types/network-recorder/core/network-recorder.d.ts +90 -0
  912. package/dist/types/network-recorder/core/network-recorder.d.ts.map +1 -0
  913. package/dist/types/network-recorder/core/stateful-api-mock.d.ts +31 -0
  914. package/dist/types/network-recorder/core/stateful-api-mock.d.ts.map +1 -0
  915. package/dist/types/network-recorder/core/types.d.ts +192 -0
  916. package/dist/types/network-recorder/core/types.d.ts.map +1 -0
  917. package/dist/types/network-recorder/fixtures.d.ts +2 -0
  918. package/dist/types/network-recorder/fixtures.d.ts.map +1 -0
  919. package/dist/types/network-recorder/index.d.ts +6 -0
  920. package/dist/types/network-recorder/index.d.ts.map +1 -0
  921. package/dist/types/network-recorder/network-recorder-fixture.d.ts +78 -0
  922. package/dist/types/network-recorder/network-recorder-fixture.d.ts.map +1 -0
  923. package/dist/types/network-recorder/network-recorder.d.ts +11 -0
  924. package/dist/types/network-recorder/network-recorder.d.ts.map +1 -0
  925. package/dist/types/recurse/fixtures.d.ts +2 -0
  926. package/dist/types/recurse/fixtures.d.ts.map +1 -0
  927. package/dist/types/recurse/index.d.ts +2 -0
  928. package/dist/types/recurse/index.d.ts.map +1 -0
  929. package/dist/types/recurse/recurse-fixture.d.ts +35 -0
  930. package/dist/types/recurse/recurse-fixture.d.ts.map +1 -0
  931. package/dist/types/recurse/recurse.d.ts +108 -0
  932. package/dist/types/recurse/recurse.d.ts.map +1 -0
  933. package/package.json +238 -0
@@ -0,0 +1,198 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __importDefault = (this && this.__importDefault) || function (mod) {
36
+ return (mod && mod.__esModule) ? mod : { "default": mod };
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.logToFile = logToFile;
40
+ const fs = __importStar(require("node:fs"));
41
+ const context_1 = require("./context");
42
+ const add_test_header_1 = require("./add-test-header");
43
+ const create_log_file_path_1 = require("./create-log-file-path");
44
+ const config_1 = require("../config");
45
+ const format_message_1 = require("../formatters/format-message");
46
+ const node_path_1 = __importDefault(require("node:path"));
47
+ // Tracks which files have been written to in the current test run
48
+ const writtenFiles = new Set();
49
+ /** Tracks which files have been written to in the current test run
50
+ * Returns true if this is the first write to this file in the current run */
51
+ const trackFirstWrite = (filePath) => {
52
+ if (writtenFiles.has(filePath))
53
+ return false;
54
+ writtenFiles.add(filePath);
55
+ return true;
56
+ };
57
+ /** Strip ANSI color codes from a string, for better readability in a text file */
58
+ const stripAnsiCodes = (str) => {
59
+ // eslint-disable-next-line no-control-regex
60
+ return str.replace(/\u001b\[\d{1,2}m/g, '');
61
+ };
62
+ /** Appends a newline to the file if the message doesn't already start with one */
63
+ const appendNewlineIfNeeded = async (filePath, message) => {
64
+ if (message && !message.startsWith('\n')) {
65
+ try {
66
+ await fs.promises.appendFile(filePath, '\n');
67
+ return true;
68
+ }
69
+ catch (error) {
70
+ console.error(`Error writing newline to log file: ${filePath}`, error);
71
+ return false;
72
+ }
73
+ }
74
+ return true;
75
+ };
76
+ /** Create a header for a new log file */
77
+ const writeLogFileHeader = async (filePath, header) => {
78
+ try {
79
+ // Check if this is the first write to the file
80
+ if (trackFirstWrite(filePath)) {
81
+ // Create directory if it doesn't exist
82
+ const dir = node_path_1.default.dirname(filePath);
83
+ if (!fs.existsSync(dir)) {
84
+ fs.mkdirSync(dir, { recursive: true });
85
+ }
86
+ // Write header to the file
87
+ await fs.promises.writeFile(filePath, header);
88
+ }
89
+ }
90
+ catch (error) {
91
+ console.error(`Error writing log header: ${error}`);
92
+ }
93
+ };
94
+ /** Writes the header if this is the first write to the file */
95
+ const writeHeaderIfNecessary = async (filePath, context, cleanMessage) => {
96
+ if (trackFirstWrite(filePath)) {
97
+ try {
98
+ // Create header content
99
+ const header = [
100
+ '='.repeat(80),
101
+ `Test Log: ${context.testName || 'Consolidated Test Log'}`,
102
+ `Test File: ${context.testFile || 'Multiple Files'}`,
103
+ `Started: ${new Date().toISOString()}`,
104
+ '='.repeat(80),
105
+ ''
106
+ ].join('\n');
107
+ await writeLogFileHeader(filePath, header);
108
+ // Append a newline after the header if needed
109
+ return await appendNewlineIfNeeded(filePath, cleanMessage);
110
+ }
111
+ catch (error) {
112
+ console.error(`Error writing header to log file: ${filePath}`, error);
113
+ return false;
114
+ }
115
+ }
116
+ return true;
117
+ };
118
+ /** Appends the fully formatted message to the file */
119
+ const appendFormattedMessage = async (filePath, formattedMessage) => {
120
+ try {
121
+ await fs.promises.appendFile(filePath, formattedMessage + '\n');
122
+ return true;
123
+ }
124
+ catch (error) {
125
+ console.error(`Error writing to log file: ${filePath}`, error);
126
+ return false;
127
+ }
128
+ };
129
+ /**
130
+ * Writes a message to a log file.
131
+ * This function decomposes the process into small steps:
132
+ * 1. Clean the message.
133
+ * 2. Write the header if necessary.
134
+ * 3. Format the message.
135
+ * 4. Append the formatted message to the file.
136
+ *
137
+ * @param filePath - The path to the log file.
138
+ * @param message - The raw log message.
139
+ * @param context - The logging context.
140
+ * @returns A promise that resolves to true if the operation was successful.
141
+ */
142
+ const writeToLogFile = async (filePath, message, context) => {
143
+ // Step 1: Clean the message.
144
+ const cleanMessage = stripAnsiCodes(message);
145
+ // Step 2: Write header if this is the first write.
146
+ const headerOk = await writeHeaderIfNecessary(filePath, context, cleanMessage);
147
+ if (!headerOk)
148
+ return false;
149
+ // Step 3: Format the message. (formatLogMessage is assumed pure)
150
+ const formattedMessage = (0, format_message_1.formatLogMessage)(cleanMessage, context);
151
+ // Step 4: Append the formatted message.
152
+ return await appendFormattedMessage(filePath, formattedMessage);
153
+ };
154
+ /**
155
+ * Logs a message to the file system, handling both organized and consolidated logging modes.
156
+ *
157
+ * This function manages the complete file logging process:
158
+ * 1. Prepares the message by stripping ANSI codes
159
+ * 2. Resolves test context information and adds appropriate headers
160
+ * 3. Determines the proper file path based on logging configuration
161
+ * - For organized logs: Creates test-specific log files in dated folders
162
+ * - For consolidated logs: Writes to a single shared log file
163
+ * 4. Formats and writes the message with proper timestamps and context
164
+ *
165
+ * The behavior is controlled by the global logging configuration and per-call options.
166
+ *
167
+ * @param message - The message content to log to the file
168
+ * @param _level - The log level (info, debug, etc.) - reserved for future filtering capabilities
169
+ * @param options - Configuration options that can override global settings:
170
+ * Can use boolean or detailed object configuration for flexibility
171
+ * @returns Promise<boolean> - Resolves to true if logging was successful, false otherwise
172
+ */
173
+ async function logToFile(message, _level = 'info', // not being used at the moment, but for consistent api with console and future proofing
174
+ options = {}) {
175
+ // Strip ANSI color codes from message
176
+ message = stripAnsiCodes(message);
177
+ // Get and populate test context information
178
+ const { testFile } = (0, context_1.populateTestOptions)(options);
179
+ // Add test headers when needed
180
+ const { message: updatedMessage } = (0, add_test_header_1.addTestHeader)(undefined, message, options, testFile);
181
+ // Skip file logging if not enabled
182
+ const config = (0, config_1.getLoggingConfig)();
183
+ // Check if fileLogging is false or if it's an object with enabled=false
184
+ if (config.fileLogging === false ||
185
+ (typeof config.fileLogging === 'object' &&
186
+ config.fileLogging.enabled === false)) {
187
+ return false;
188
+ }
189
+ // Get context with configuration and test information
190
+ const context = (0, context_1.getLogContext)(options);
191
+ // Create the log file path based on context - this determines folder structure
192
+ // IMPORTANT: We're intentionally using the original options here, not extracting from section headers
193
+ // to avoid creating folders for each section in a test
194
+ const filePath = (0, create_log_file_path_1.createLogFilePath)(context);
195
+ // Write to the log file
196
+ return writeToLogFile(filePath, updatedMessage, context);
197
+ }
198
+ //# sourceMappingURL=log-to-file.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log-to-file.js","sourceRoot":"","sources":["../../../../src/log/outputs/log-to-file.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Method decorator for class methods to wrap them in a test.step with logging
3
+ *
4
+ * @param stepName - Optional name for the step, defaults to method name
5
+ *
6
+ * @example
7
+ * // Page object with decorated methods
8
+ * class MyPage {
9
+ * // Uses method name as step name
10
+ * @methodTestStep()
11
+ * async login() {
12
+ * // Method implementation
13
+ * }
14
+ *
15
+ * // Custom step name
16
+ * @methodTestStep("Search for products")
17
+ * async search(term: string) {
18
+ * // Method implementation
19
+ * }
20
+ * }
21
+ *
22
+ */
23
+ export declare function methodTestStep(stepName?: string): (target: any, // The original method being decorated
24
+ context: ClassMethodDecoratorContext) => (this: any, ...args: any[]) => Promise<any>;
25
+ /**
26
+ * Function decorator to wrap any function in a test.step with logging
27
+ *
28
+ * @param stepName - Name for the step
29
+ * @param fn - The function to wrap
30
+ *
31
+ * @example
32
+ * // Define a function with the decorator
33
+ * const searchProducts = functionTestStep("Search for products", async (term: string) => {
34
+ * // Function implementation
35
+ * })
36
+ *
37
+ * // Call it normally
38
+ * const results = await searchProducts("laptop")
39
+ */
40
+ export declare function functionTestStep<T extends any[], R>(stepName: string, // Unlike methodTestStep, this is required (no method name to fall back to)
41
+ fn: (...args: T) => Promise<R> | R): (...args: T) => Promise<R>;
42
+ //# sourceMappingURL=test-step.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test-step.d.ts","sourceRoot":"","sources":["../../../src/log/test-step.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,cAAc,CAAC,QAAQ,CAAC,EAAE,MAAM,IAI5C,QAAQ,GAAG,EAAE,sCAAsC;AACnD,SAAS,2BAA2B,MAOI,MAAM,GAAG,EAAE,GAAG,MAAM,GAAG,EAAE,kBA8BpE;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,GAAG,EAAE,EAAE,CAAC,EACjD,QAAQ,EAAE,MAAM,EAAE,2EAA2E;AAC7F,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,GACjC,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAoB5B"}
@@ -0,0 +1,110 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.methodTestStep = methodTestStep;
4
+ exports.functionTestStep = functionTestStep;
5
+ /** Test step decorator and function wrapper for logging
6
+ * Provides decorators that can be used to wrap methods or functions in test steps */
7
+ /* eslint-disable @typescript-eslint/no-explicit-any */
8
+ const test_1 = require("@playwright/test");
9
+ const log_1 = require("./log");
10
+ /**
11
+ * Method decorator for class methods to wrap them in a test.step with logging
12
+ *
13
+ * @param stepName - Optional name for the step, defaults to method name
14
+ *
15
+ * @example
16
+ * // Page object with decorated methods
17
+ * class MyPage {
18
+ * // Uses method name as step name
19
+ * @methodTestStep()
20
+ * async login() {
21
+ * // Method implementation
22
+ * }
23
+ *
24
+ * // Custom step name
25
+ * @methodTestStep("Search for products")
26
+ * async search(term: string) {
27
+ * // Method implementation
28
+ * }
29
+ * }
30
+ *
31
+ */
32
+ function methodTestStep(stepName) {
33
+ // This is a higher-order function that returns the actual decorator function
34
+ // It allows us to pass in parameters (stepName) to customize our decorator
35
+ return function methodDecorator(target, // The original method being decorated
36
+ context // Gives us metadata about the method (like its name)
37
+ ) {
38
+ // Store the original method name to use as default step name if none provided
39
+ const methodName = context.name;
40
+ // This is the function that will replace the original method
41
+ // It wraps the original method with our logging and test.step functionality
42
+ return async function replacementMethod(...args) {
43
+ // 'this' is the class instance (e.g., TodoPage) when the method is called
44
+ // We need to preserve this context for the original method to work properly
45
+ // Use provided stepName or fall back to the method's name
46
+ const name = stepName || methodName;
47
+ // Get the class name for better logging context (e.g., 'TodoPage')
48
+ // This helps trace the step back to its exact source in our page objects
49
+ const className = this.constructor ? this.constructor.name : 'Unknown';
50
+ // Combine them for a descriptive step name in test reports
51
+ const fullStepName = `${name} (${className})`;
52
+ // Wrap execution in Playwright's test.step for proper test reporting
53
+ // This makes steps appear in Playwright's HTML reporter with timing info
54
+ return test_1.test.step(fullStepName, async () => {
55
+ try {
56
+ // Call the original method with the correct 'this' context
57
+ // This is crucial - without it, the original method wouldn't have
58
+ // access to the class properties and methods (like this.page)
59
+ const result = await target.call(this, ...args);
60
+ return result;
61
+ }
62
+ catch (error) {
63
+ // Enhanced error handling - we log the error before re-throwing it
64
+ // This creates a clean error trace in both our logs and test reports
65
+ await log_1.log.error(`Step failed: ${fullStepName} - ${error}`);
66
+ throw error; // Re-throw to maintain normal test failure behavior
67
+ }
68
+ });
69
+ };
70
+ };
71
+ }
72
+ /**
73
+ * Function decorator to wrap any function in a test.step with logging
74
+ *
75
+ * @param stepName - Name for the step
76
+ * @param fn - The function to wrap
77
+ *
78
+ * @example
79
+ * // Define a function with the decorator
80
+ * const searchProducts = functionTestStep("Search for products", async (term: string) => {
81
+ * // Function implementation
82
+ * })
83
+ *
84
+ * // Call it normally
85
+ * const results = await searchProducts("laptop")
86
+ */
87
+ function functionTestStep(stepName, // Unlike methodTestStep, this is required (no method name to fall back to)
88
+ fn // The function to wrap (instead of decorating a method)
89
+ ) {
90
+ // Return a new function with the same signature as the original function
91
+ // But enhanced with step logging and error handling
92
+ return async function (...args) {
93
+ // Unlike methodTestStep, we don't need to handle 'this' context
94
+ // Because we're working with standalone functions, not class methods
95
+ // Wrap execution in Playwright's test.step for proper test reporting
96
+ return test_1.test.step(stepName, async () => {
97
+ try {
98
+ // Simply call the original function with the provided arguments
99
+ // No need for .call() since we don't need to manage 'this'
100
+ return await fn(...args);
101
+ }
102
+ catch (error) {
103
+ // Enhanced error handling with consistent logging
104
+ await log_1.log.error(`Step failed: ${stepName} - ${error}`);
105
+ throw error; // Re-throw to maintain normal test failure behavior
106
+ }
107
+ });
108
+ };
109
+ }
110
+ //# sourceMappingURL=test-step.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test-step.js","sourceRoot":"","sources":["../../../src/log/test-step.ts"],"names":[],"mappings":";;AA4BA,wCA0CC;AAiBD,4CAuBC;AA9GD;qFACqF;AACrF,uDAAuD;AACvD,2CAAuC;AACvC,+BAA2B;AAE3B;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,cAAc,CAAC,QAAiB;IAC9C,6EAA6E;IAC7E,2EAA2E;IAC3E,OAAO,SAAS,eAAe,CAC7B,MAAW,EAAE,sCAAsC;IACnD,OAAoC,CAAC,qDAAqD;;QAE1F,8EAA8E;QAC9E,MAAM,UAAU,GAAG,OAAO,CAAC,IAAc,CAAA;QAEzC,6DAA6D;QAC7D,4EAA4E;QAC5E,OAAO,KAAK,UAAU,iBAAiB,CAAY,GAAG,IAAW;YAC/D,0EAA0E;YAC1E,4EAA4E;YAE5E,0DAA0D;YAC1D,MAAM,IAAI,GAAG,QAAQ,IAAI,UAAU,CAAA;YACnC,mEAAmE;YACnE,yEAAyE;YACzE,MAAM,SAAS,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAA;YACtE,2DAA2D;YAC3D,MAAM,YAAY,GAAG,GAAG,IAAI,KAAK,SAAS,GAAG,CAAA;YAE7C,qEAAqE;YACrE,yEAAyE;YACzE,OAAO,WAAI,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,IAAI,EAAE;gBACxC,IAAI,CAAC;oBACH,2DAA2D;oBAC3D,kEAAkE;oBAClE,8DAA8D;oBAC9D,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,IAAI,CAAC,CAAA;oBAC/C,OAAO,MAAM,CAAA;gBACf,CAAC;gBAAC,OAAO,KAAK,EAAE,CAAC;oBACf,mEAAmE;oBACnE,qEAAqE;oBACrE,MAAM,SAAG,CAAC,KAAK,CAAC,gBAAgB,YAAY,MAAM,KAAK,EAAE,CAAC,CAAA;oBAC1D,MAAM,KAAK,CAAA,CAAC,oDAAoD;gBAClE,CAAC;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAA;IACH,CAAC,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAC9B,QAAgB,EAAE,2EAA2E;AAC7F,EAAkC,CAAC,wDAAwD;;IAE3F,yEAAyE;IACzE,oDAAoD;IACpD,OAAO,KAAK,WAAW,GAAG,IAAO;QAC/B,gEAAgE;QAChE,qEAAqE;QAErE,qEAAqE;QACrE,OAAO,WAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,IAAI,EAAE;YACpC,IAAI,CAAC;gBACH,gEAAgE;gBAChE,2DAA2D;gBAC3D,OAAO,MAAM,EAAE,CAAC,GAAG,IAAI,CAAC,CAAA;YAC1B,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,kDAAkD;gBAClD,MAAM,SAAG,CAAC,KAAK,CAAC,gBAAgB,QAAQ,MAAM,KAAK,EAAE,CAAC,CAAA;gBACtD,MAAM,KAAK,CAAA,CAAC,oDAAoD;YAClE,CAAC;QACH,CAAC,CAAC,CAAA;IACJ,CAAC,CAAA;AACH,CAAC"}
@@ -0,0 +1,81 @@
1
+ /** Log level types for different severity of messages */
2
+ export type LogLevel = 'info' | 'step' | 'success' | 'warning' | 'error' | 'debug';
3
+ /** Log level hierarchy for filtering (lowest to highest priority) */
4
+ export declare const LOG_LEVEL_PRIORITY: Record<LogLevel, number>;
5
+ /** Options for formatting log messages */
6
+ export type FormatOptions = {
7
+ timestamps: boolean;
8
+ colorize: boolean;
9
+ maxLineLength: number;
10
+ prefix?: string;
11
+ addNewLine?: boolean;
12
+ };
13
+ /** Global Configuration options for the logging utility
14
+ * Supports both simple boolean values and detailed configuration objects */
15
+ export type LoggingConfig = {
16
+ console?: boolean | {
17
+ enabled: boolean;
18
+ colorize?: boolean;
19
+ timestamps?: boolean;
20
+ };
21
+ fileLogging?: boolean | {
22
+ enabled: boolean;
23
+ outputDir?: string;
24
+ defaultTestFolder?: string;
25
+ stripAnsiCodes?: boolean;
26
+ timestamp?: boolean;
27
+ prependTestFile?: boolean;
28
+ forceConsolidated?: boolean;
29
+ };
30
+ workerID?: boolean | {
31
+ enabled: boolean;
32
+ format?: string;
33
+ };
34
+ sourceFileTracking?: boolean | {
35
+ enabled: boolean;
36
+ showInLogs?: boolean;
37
+ };
38
+ format?: {
39
+ prefix?: string;
40
+ addNewLine?: boolean;
41
+ maxLineLength?: number;
42
+ };
43
+ context?: Record<string, unknown>;
44
+ testFile?: string;
45
+ testName?: string;
46
+ level?: LogLevel;
47
+ testStep?: boolean | string;
48
+ };
49
+ /** Parameters for the log fixture */
50
+ export type LogParams = {
51
+ /** Log level to use (info, step, success, warning, error, debug) */
52
+ level?: LogLevel;
53
+ /** Message to log */
54
+ message: string;
55
+ /** Whether to log to console (simplified boolean option for backward compatibility) */
56
+ console?: boolean;
57
+ /** Additional options for more complex logging configuration */
58
+ options?: Partial<LoggingConfig>;
59
+ /** Test file name for file logging context */
60
+ testFile?: string;
61
+ /** Test name for file logging context */
62
+ testName?: string;
63
+ };
64
+ export type LogContext = {
65
+ config: LoggingConfig;
66
+ options: LoggingConfig;
67
+ testFile?: string;
68
+ testName?: string;
69
+ workerIDEnabled: boolean;
70
+ workerIDFormat: string;
71
+ };
72
+ /** Configuration for formatting messages based on log level */
73
+ type FormatConfig = {
74
+ prefix: string;
75
+ suffix: string;
76
+ color: string;
77
+ };
78
+ /** Map of log levels to their formatting configuration */
79
+ export type FormatConfigMap = Record<LogLevel, FormatConfig>;
80
+ export {};
81
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/log/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LOG_LEVEL_PRIORITY = void 0;
4
+ /** Log level hierarchy for filtering (lowest to highest priority) */
5
+ exports.LOG_LEVEL_PRIORITY = {
6
+ debug: 0,
7
+ info: 1,
8
+ step: 2,
9
+ success: 3,
10
+ warning: 4,
11
+ error: 5
12
+ };
13
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/log/types.ts"],"names":[],"mappings":";;;AASA,qEAAqE;AACxD,QAAA,kBAAkB,GAA6B;IAC1D,KAAK,EAAE,CAAC;IACR,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,OAAO,EAAE,CAAC;IACV,OAAO,EAAE,CAAC;IACV,KAAK,EAAE,CAAC;CACT,CAAA"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Wraps a synchronous function in a Promise and resolves after I/O processing
3
+ * Used for asynchronous console logging
4
+ */
5
+ export declare const asPromise: (fn: () => void) => Promise<void>;
6
+ //# sourceMappingURL=async.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"async.d.ts","sourceRoot":"","sources":["../../../../src/log/utils/async.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,SAAS,GAAI,IAAI,MAAM,IAAI,KAAG,OAAO,CAAC,IAAI,CAMnD,CAAA"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.asPromise = void 0;
4
+ /**
5
+ * Wraps a synchronous function in a Promise and resolves after I/O processing
6
+ * Used for asynchronous console logging
7
+ */
8
+ const asPromise = (fn) => new Promise((resolve) => {
9
+ fn();
10
+ // Use setImmediate to ensure I/O processing completes
11
+ // before the promise resolves
12
+ setImmediate(() => resolve());
13
+ });
14
+ exports.asPromise = asPromise;
15
+ //# sourceMappingURL=async.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"async.js","sourceRoot":"","sources":["../../../../src/log/utils/async.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACI,MAAM,SAAS,GAAG,CAAC,EAAc,EAAiB,EAAE,CACzD,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;IACtB,EAAE,EAAE,CAAA;IACJ,sDAAsD;IACtD,8BAA8B;IAC9B,YAAY,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,CAAC,CAAA;AAC/B,CAAC,CAAC,CAAA;AANS,QAAA,SAAS,aAMlB"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Utility function to extract boolean flag values from various formats.
3
+ * Used to standardize how boolean flags are handled across the logging system.
4
+ *
5
+ * @param flag - The flag value which can be a boolean, an object with an enabled property, or undefined
6
+ * @param defaultValue - The default value to use if flag is undefined or doesn't have an enabled property
7
+ * @returns A single boolean value
8
+ */
9
+ export declare function isEnabled(flag: boolean | {
10
+ enabled?: boolean;
11
+ } | undefined, defaultValue?: boolean): boolean;
12
+ //# sourceMappingURL=flag.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flag.d.ts","sourceRoot":"","sources":["../../../../src/log/utils/flag.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,wBAAgB,SAAS,CACvB,IAAI,EAAE,OAAO,GAAG;IAAE,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,SAAS,EACjD,YAAY,UAAO,GAClB,OAAO,CAIT"}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isEnabled = isEnabled;
4
+ /**
5
+ * Utility function to extract boolean flag values from various formats.
6
+ * Used to standardize how boolean flags are handled across the logging system.
7
+ *
8
+ * @param flag - The flag value which can be a boolean, an object with an enabled property, or undefined
9
+ * @param defaultValue - The default value to use if flag is undefined or doesn't have an enabled property
10
+ * @returns A single boolean value
11
+ */
12
+ function isEnabled(flag, defaultValue = true) {
13
+ if (typeof flag === 'boolean')
14
+ return flag;
15
+ if (flag && typeof flag.enabled === 'boolean')
16
+ return flag.enabled;
17
+ return defaultValue;
18
+ }
19
+ //# sourceMappingURL=flag.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flag.js","sourceRoot":"","sources":["../../../../src/log/utils/flag.ts"],"names":[],"mappings":";;AAQA,8BAOC;AAfD;;;;;;;GAOG;AACH,SAAgB,SAAS,CACvB,IAAiD,EACjD,YAAY,GAAG,IAAI;IAEnB,IAAI,OAAO,IAAI,KAAK,SAAS;QAAE,OAAO,IAAI,CAAA;IAC1C,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,SAAS;QAAE,OAAO,IAAI,CAAC,OAAO,CAAA;IAClE,OAAO,YAAY,CAAA;AACrB,CAAC"}
@@ -0,0 +1,14 @@
1
+ /** Options handling for the logging system */
2
+ import type { LogLevel, LoggingConfig } from '../types';
3
+ export declare const defaultLoggingConfig: LoggingConfig;
4
+ /** Get level-specific formatting options */
5
+ export declare const getLevelFormatOptions: (level: LogLevel) => Record<string, unknown>;
6
+ /** Merge default options with per-call options and format options for the specific log level */
7
+ export declare const mergeOptions: (options: Partial<LoggingConfig> | undefined, level: LogLevel) => LoggingConfig;
8
+ /** Convert a unified configuration to LoggingConfig format
9
+ * This ensures we can still use the simple LoggingConfig interface with booleans */
10
+ export declare const toLoggingConfig: (config: Partial<LoggingConfig>) => Partial<LoggingConfig>;
11
+ /** Unified configuration function that handles both global and local settings
12
+ * Always uses global scope by default, regardless of context */
13
+ export declare const configure: (options: Partial<LoggingConfig>, scope?: "global" | "local") => void;
14
+ //# sourceMappingURL=options.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../../../src/log/utils/options.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,OAAO,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAIvD,eAAO,MAAM,oBAAoB,EAAE,aAGlC,CAAA;AAED,4CAA4C;AAC5C,eAAO,MAAM,qBAAqB,GAChC,OAAO,QAAQ,KACd,MAAM,CAAC,MAAM,EAAE,OAAO,CAWxB,CAAA;AAED,gGAAgG;AAChG,eAAO,MAAM,YAAY,GACvB,SAAS,OAAO,CAAC,aAAa,CAAC,YAAK,EACpC,OAAO,QAAQ,KACd,aAaF,CAAA;AAED;oFACoF;AACpF,eAAO,MAAM,eAAe,GAC1B,QAAQ,OAAO,CAAC,aAAa,CAAC,KAC7B,OAAO,CAAC,aAAa,CA2BvB,CAAA;AAED;gEACgE;AAChE,eAAO,MAAM,SAAS,GACpB,SAAS,OAAO,CAAC,aAAa,CAAC,EAC/B,QAAO,QAAQ,GAAG,OAAkB,KACnC,IAeF,CAAA"}
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.configure = exports.toLoggingConfig = exports.mergeOptions = exports.getLevelFormatOptions = exports.defaultLoggingConfig = void 0;
4
+ const config_1 = require("../config");
5
+ // Default logging options that apply to all log calls
6
+ exports.defaultLoggingConfig = {
7
+ console: true,
8
+ fileLogging: false
9
+ };
10
+ /** Get level-specific formatting options */
11
+ const getLevelFormatOptions = (level) => {
12
+ const formatMap = {
13
+ info: { prefix: 'ℹ' },
14
+ step: { addNewLine: true },
15
+ success: { prefix: '✓' },
16
+ warning: { prefix: '⚠' },
17
+ error: { prefix: '✖' },
18
+ debug: { prefix: '🔍' }
19
+ };
20
+ return formatMap[level] || {};
21
+ };
22
+ exports.getLevelFormatOptions = getLevelFormatOptions;
23
+ /** Merge default options with per-call options and format options for the specific log level */
24
+ const mergeOptions = (options = {}, level) => {
25
+ // Get level-specific formatting
26
+ const levelFormat = (0, exports.getLevelFormatOptions)(level);
27
+ // Merge options with a functional approach
28
+ return {
29
+ ...exports.defaultLoggingConfig,
30
+ ...options,
31
+ format: {
32
+ ...levelFormat,
33
+ ...(options.format || {})
34
+ }
35
+ };
36
+ };
37
+ exports.mergeOptions = mergeOptions;
38
+ /** Convert a unified configuration to LoggingConfig format
39
+ * This ensures we can still use the simple LoggingConfig interface with booleans */
40
+ const toLoggingConfig = (config) => {
41
+ const result = {};
42
+ // Handle console setting
43
+ if (typeof config.console === 'boolean') {
44
+ result.console = config.console;
45
+ }
46
+ else if (config.console?.enabled !== undefined) {
47
+ result.console = config.console.enabled;
48
+ }
49
+ // Handle fileLogging setting
50
+ if (typeof config.fileLogging === 'boolean') {
51
+ result.fileLogging = config.fileLogging;
52
+ }
53
+ else if (config.fileLogging?.enabled !== undefined) {
54
+ result.fileLogging = config.fileLogging.enabled;
55
+ }
56
+ // Handle workerID setting - this one is actually already compatible
57
+ result.workerID = config.workerID;
58
+ // Copy over other LoggingConfig properties
59
+ if (config.format)
60
+ result.format = config.format;
61
+ if (config.context)
62
+ result.context = config.context;
63
+ if (config.testFile)
64
+ result.testFile = config.testFile;
65
+ if (config.testName)
66
+ result.testName = config.testName;
67
+ return result;
68
+ };
69
+ exports.toLoggingConfig = toLoggingConfig;
70
+ /** Unified configuration function that handles both global and local settings
71
+ * Always uses global scope by default, regardless of context */
72
+ const configure = (options, scope = 'global') => {
73
+ // Always use global scope by default, can be overridden with explicit 'local'
74
+ const effectiveScope = scope;
75
+ // Convert unified config to LoggingConfig for internal use
76
+ const LoggingConfig = (0, exports.toLoggingConfig)(options);
77
+ // Update defaultLoggingConfig regardless of scope
78
+ // This ensures that mergeOptions() will use the updated defaults
79
+ Object.assign(exports.defaultLoggingConfig, LoggingConfig);
80
+ if (effectiveScope === 'global') {
81
+ // For global config, use the configureLogging function
82
+ (0, config_1.configureLogging)(options);
83
+ }
84
+ };
85
+ exports.configure = configure;
86
+ //# sourceMappingURL=options.js.map