conductor-oss 0.61.10 → 0.61.12

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 (1088) hide show
  1. package/LICENSE +202 -21
  2. package/README.md +15 -0
  3. package/dist/commands/setup.d.ts.map +1 -1
  4. package/dist/commands/setup.js +7 -2
  5. package/dist/commands/setup.js.map +1 -1
  6. package/dist/commands/spawn.js +1 -1
  7. package/dist/commands/spawn.js.map +1 -1
  8. package/node_modules/@conductor-oss/core/dist/config.js +2 -2
  9. package/node_modules/@conductor-oss/core/dist/config.js.map +1 -1
  10. package/node_modules/@conductor-oss/core/package.json +1 -1
  11. package/package.json +10 -10
  12. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/CLI.js +415 -0
  13. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/Cache.js +208 -0
  14. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/ProgressBar.js +143 -0
  15. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/browser-data.js +235 -0
  16. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/chrome.js +302 -0
  17. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/types.js +72 -0
  18. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/debug.js +11 -0
  19. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/fileUtil.js +316 -0
  20. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/httpUtil.js +176 -0
  21. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/install.js +349 -0
  22. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/launch.js +426 -0
  23. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/main.js +15 -0
  24. package/web/.next/standalone/node_modules/@puppeteer/browsers/package.json +31 -49
  25. package/web/.next/standalone/node_modules/ansi-styles/index.js +190 -130
  26. package/web/.next/standalone/node_modules/ansi-styles/package.json +8 -10
  27. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiMapper.js +25 -0
  28. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiNoOpParser.js +276 -0
  29. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiServer.js +165 -0
  30. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/CommandProcessor.js +327 -0
  31. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/OutgoingMessage.js +48 -0
  32. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/bluetooth/BluetoothProcessor.js +407 -0
  33. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/BrowserProcessor.js +289 -0
  34. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/ContextConfig.js +71 -0
  35. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/ContextConfigStorage.js +92 -0
  36. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/UserContextStorage.js +52 -0
  37. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpProcessor.js +56 -0
  38. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpTarget.js +693 -0
  39. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpTargetManager.js +248 -0
  40. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextImpl.js +1447 -0
  41. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextProcessor.js +263 -0
  42. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextStorage.js +130 -0
  43. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/NavigationTracker.js +325 -0
  44. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/emulation/EmulationProcessor.js +397 -0
  45. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/ActionDispatcher.js +740 -0
  46. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputProcessor.js +190 -0
  47. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputSource.js +154 -0
  48. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputState.js +89 -0
  49. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputStateManager.js +30 -0
  50. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/USKeyboardLayout.js +271 -0
  51. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/keyUtils.js +492 -0
  52. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/log/LogManager.js +183 -0
  53. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/log/logHelper.js +168 -0
  54. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/CollectorsStorage.js +149 -0
  55. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkProcessor.js +541 -0
  56. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkRequest.js +890 -0
  57. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkStorage.js +349 -0
  58. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkUtils.js +303 -0
  59. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/permissions/PermissionsProcessor.js +51 -0
  60. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/ChannelProxy.js +231 -0
  61. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/PreloadScript.js +129 -0
  62. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/PreloadScriptStorage.js +75 -0
  63. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/Realm.js +481 -0
  64. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/RealmStorage.js +78 -0
  65. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/ScriptProcessor.js +132 -0
  66. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/SharedId.js +70 -0
  67. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/WindowRealm.js +142 -0
  68. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/WorkerRealm.js +66 -0
  69. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/EventManager.js +265 -0
  70. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/SessionProcessor.js +127 -0
  71. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/SubscriptionManager.js +266 -0
  72. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/events.js +33 -0
  73. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/speculation/SpeculationProcessor.js +58 -0
  74. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/storage/StorageProcessor.js +191 -0
  75. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/webExtension/WebExtensionProcessor.js +65 -0
  76. package/web/.next/standalone/node_modules/chromium-bidi/lib/index.js +19 -0
  77. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/ErrorResponse.js +166 -0
  78. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/cdp.js +2 -0
  79. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/chromium-bidi.js +124 -0
  80. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-bluetooth.js +18 -0
  81. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-nav-speculation.js +18 -0
  82. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-permissions.js +18 -0
  83. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-ua-client-hints.js +18 -0
  84. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi.js +18 -0
  85. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/protocol.js +26 -0
  86. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Buffer.js +43 -0
  87. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/DefaultMap.js +36 -0
  88. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Deferred.js +67 -0
  89. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/EventEmitter.js +67 -0
  90. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/IdWrapper.js +30 -0
  91. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Mutex.js +64 -0
  92. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/ProcessingQueue.js +63 -0
  93. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/assert.js +22 -0
  94. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/base64.js +32 -0
  95. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/graphemeTools.js +34 -0
  96. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/log.js +28 -0
  97. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/time.js +24 -0
  98. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/unitConversions.js +21 -0
  99. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/urlHelpers.js +49 -0
  100. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/uuid.js +61 -0
  101. package/web/.next/standalone/node_modules/chromium-bidi/package.json +219 -0
  102. package/web/.next/standalone/node_modules/cliui/build/lib/index.js +2 -2
  103. package/web/.next/standalone/node_modules/cliui/index.mjs +7 -5
  104. package/web/.next/standalone/node_modules/cliui/node_modules/string-width/index.js +56 -21
  105. package/web/.next/standalone/node_modules/cliui/node_modules/string-width/package.json +18 -10
  106. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/index.js +19 -0
  107. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
  108. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
  109. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/package.json +59 -0
  110. package/web/.next/standalone/node_modules/cliui/package.json +20 -31
  111. package/web/.next/standalone/node_modules/emoji-regex/index.js +3 -5
  112. package/web/.next/standalone/node_modules/emoji-regex/package.json +43 -48
  113. package/web/.next/standalone/node_modules/get-east-asian-width/index.js +30 -0
  114. package/web/.next/standalone/node_modules/get-east-asian-width/lookup-data.js +18 -0
  115. package/web/.next/standalone/node_modules/get-east-asian-width/lookup.js +135 -0
  116. package/web/.next/standalone/node_modules/get-east-asian-width/package.json +71 -0
  117. package/web/.next/standalone/node_modules/get-east-asian-width/utilities.js +24 -0
  118. package/web/.next/standalone/node_modules/mitt/dist/mitt.mjs +2 -0
  119. package/web/.next/standalone/node_modules/modern-tar/dist/fs/index.js +746 -0
  120. package/web/.next/standalone/node_modules/modern-tar/dist/unpacker-CPCEF5CT.js +636 -0
  121. package/web/.next/standalone/node_modules/modern-tar/package.json +65 -0
  122. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Browser.js +196 -0
  123. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/BrowserContext.js +183 -0
  124. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/HTTPRequest.js +465 -0
  125. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/JSHandle.js +220 -0
  126. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Page.js +1512 -0
  127. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Target.js +49 -0
  128. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/WebWorker.js +134 -0
  129. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/locators/locators.js +799 -0
  130. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BidiOverCdp.js +146 -0
  131. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Browser.js +342 -0
  132. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BrowserConnector.js +86 -0
  133. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BrowserContext.js +382 -0
  134. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Connection.js +160 -0
  135. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Deserializer.js +80 -0
  136. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/ExposedFunction.js +261 -0
  137. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Frame.js +469 -0
  138. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/HTTPResponse.js +170 -0
  139. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Page.js +977 -0
  140. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Realm.js +340 -0
  141. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Browser.js +353 -0
  142. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/BrowsingContext.js +639 -0
  143. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Navigation.js +168 -0
  144. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Realm.js +302 -0
  145. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Request.js +308 -0
  146. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Session.js +178 -0
  147. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/UserContext.js +207 -0
  148. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/UserPrompt.js +132 -0
  149. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Accessibility.js +591 -0
  150. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Binding.js +162 -0
  151. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Browser.js +404 -0
  152. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/BrowserConnector.js +26 -0
  153. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/BrowserContext.js +190 -0
  154. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/CdpSession.js +144 -0
  155. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Connection.js +268 -0
  156. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Coverage.js +372 -0
  157. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/ElementHandle.js +207 -0
  158. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/EmulationManager.js +479 -0
  159. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/ExecutionContext.js +458 -0
  160. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Extension.js +73 -0
  161. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Frame.js +373 -0
  162. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/FrameManager.js +505 -0
  163. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/HTTPRequest.js +195 -0
  164. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/HTTPResponse.js +130 -0
  165. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Input.js +497 -0
  166. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/JSHandle.js +101 -0
  167. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/NetworkManager.js +609 -0
  168. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Page.js +1036 -0
  169. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Target.js +252 -0
  170. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/TargetManager.js +431 -0
  171. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/WebMCP.js +276 -0
  172. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/WebWorker.js +113 -0
  173. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/BrowserConnector.js +150 -0
  174. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/BrowserWebSocketTransport.js +40 -0
  175. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/CallbackRegistry.js +136 -0
  176. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/Debug.js +100 -0
  177. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/EventEmitter.js +135 -0
  178. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/util.js +382 -0
  179. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/environment.js +26 -0
  180. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/generated/injected.js +9 -0
  181. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/BrowserLauncher.js +327 -0
  182. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/ChromeLauncher.js +278 -0
  183. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/FirefoxLauncher.js +167 -0
  184. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/NodeWebSocketTransport.js +56 -0
  185. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/PipeTransport.js +72 -0
  186. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/PuppeteerNode.js +254 -0
  187. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/ScreenRecorder.js +309 -0
  188. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node-env-setup.js +16 -0
  189. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/puppeteer-core.js +36 -0
  190. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/revisions.js +14 -0
  191. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/Mutex.js +50 -0
  192. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/httpUtils.js +24 -0
  193. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/util.js +14 -0
  194. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/version.js +10 -0
  195. package/web/.next/standalone/node_modules/puppeteer-core/package.json +22 -24
  196. package/web/.next/standalone/node_modules/wrap-ansi/index.js +30 -24
  197. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/string-width/index.js +56 -21
  198. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/string-width/package.json +18 -10
  199. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +19 -0
  200. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
  201. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
  202. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +59 -0
  203. package/web/.next/standalone/node_modules/wrap-ansi/package.json +20 -13
  204. package/web/.next/standalone/node_modules/yargs/build/lib/command.js +55 -25
  205. package/web/.next/standalone/node_modules/yargs/build/lib/completion-templates.js +14 -5
  206. package/web/.next/standalone/node_modules/yargs/build/lib/utils/apply-extends.js +2 -2
  207. package/web/.next/standalone/node_modules/yargs/build/lib/yargs-factory.js +25 -20
  208. package/web/.next/standalone/node_modules/yargs/index.mjs +2 -0
  209. package/web/.next/standalone/node_modules/yargs/lib/platform-shims/esm.mjs +19 -25
  210. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/index.js +56 -21
  211. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/index.js +19 -0
  212. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
  213. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
  214. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/package.json +59 -0
  215. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/package.json +18 -10
  216. package/web/.next/standalone/node_modules/yargs/package.json +30 -50
  217. package/web/.next/standalone/node_modules/yargs-parser/build/lib/index.js +6 -4
  218. package/web/.next/standalone/node_modules/yargs-parser/build/lib/yargs-parser.js +1 -0
  219. package/web/.next/standalone/node_modules/yargs-parser/package.json +25 -39
  220. package/web/.next/standalone/package.json +4 -17
  221. package/web/.next/standalone/packages/web/.next/BUILD_ID +1 -1
  222. package/web/.next/standalone/packages/web/.next/app-path-routes-manifest.json +8 -8
  223. package/web/.next/standalone/packages/web/.next/build-manifest.json +3 -3
  224. package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
  225. package/web/.next/standalone/packages/web/.next/react-loadable-manifest.json +48 -49
  226. package/web/.next/standalone/packages/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  227. package/web/.next/standalone/packages/web/.next/server/app/_global-error.html +1 -1
  228. package/web/.next/standalone/packages/web/.next/server/app/_global-error.rsc +1 -1
  229. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  230. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
  231. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
  232. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  233. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  234. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  235. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js +1 -1
  236. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  237. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  238. package/web/.next/standalone/packages/web/.next/server/app/api/bridge/bridges/[bridgeId]/route.js +1 -1
  239. package/web/.next/standalone/packages/web/.next/server/app/api/bridge/bridges/route.js +1 -1
  240. package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/[deviceId]/route.js +1 -1
  241. package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/claims/complete/route.js +1 -1
  242. package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/code/route.js +1 -1
  243. package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/route.js +1 -1
  244. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js +1 -1
  245. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js.nft.json +1 -1
  246. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js +1 -1
  247. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js.nft.json +1 -1
  248. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js +1 -1
  249. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js.nft.json +1 -1
  250. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/token/route.js +1 -1
  251. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/ttyd/route.js +1 -1
  252. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/ttyd/ws/route.js +1 -1
  253. package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page.js +2 -2
  254. package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page.js.nft.json +1 -1
  255. package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page_client-reference-manifest.js +1 -1
  256. package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js +3 -3
  257. package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js.nft.json +1 -1
  258. package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page_client-reference-manifest.js +1 -1
  259. package/web/.next/standalone/packages/web/.next/server/app/page.js +2 -2
  260. package/web/.next/standalone/packages/web/.next/server/app/page.js.nft.json +1 -1
  261. package/web/.next/standalone/packages/web/.next/server/app/page_client-reference-manifest.js +1 -1
  262. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js +2 -2
  263. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js.nft.json +1 -1
  264. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page_client-reference-manifest.js +1 -1
  265. package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page.js +1 -1
  266. package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page.js.nft.json +1 -1
  267. package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page_client-reference-manifest.js +1 -1
  268. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js +2 -2
  269. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js.nft.json +1 -1
  270. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page_client-reference-manifest.js +1 -1
  271. package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page.js +1 -1
  272. package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page.js.nft.json +1 -1
  273. package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page_client-reference-manifest.js +1 -1
  274. package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page.js +1 -1
  275. package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page.js.nft.json +1 -1
  276. package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page_client-reference-manifest.js +1 -1
  277. package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page.js +2 -2
  278. package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page.js.nft.json +1 -1
  279. package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page_client-reference-manifest.js +1 -1
  280. package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js +2 -2
  281. package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js.nft.json +1 -1
  282. package/web/.next/standalone/packages/web/.next/server/app/unlock/page_client-reference-manifest.js +1 -1
  283. package/web/.next/standalone/packages/web/.next/server/app-paths-manifest.json +8 -8
  284. package/web/.next/standalone/packages/web/.next/server/chunks/1121.js +1 -1
  285. package/web/.next/standalone/packages/web/.next/server/chunks/137.js +1 -0
  286. package/web/.next/standalone/packages/web/.next/server/chunks/1874.js +3 -0
  287. package/web/.next/standalone/packages/web/.next/server/chunks/1883.js +1 -0
  288. package/web/.next/standalone/packages/web/.next/server/chunks/251.js +1 -0
  289. package/web/.next/standalone/packages/web/.next/server/chunks/2512.js +3 -3
  290. package/web/.next/standalone/packages/web/.next/server/chunks/3303.js +1 -0
  291. package/web/.next/standalone/packages/web/.next/server/chunks/3337.js +1 -0
  292. package/web/.next/standalone/packages/web/.next/server/chunks/4013.js +1 -0
  293. package/web/.next/standalone/packages/web/.next/server/chunks/4884.js +1 -0
  294. package/web/.next/standalone/packages/web/.next/server/chunks/5523.js +1 -1
  295. package/web/.next/standalone/packages/web/.next/server/chunks/6472.js +1 -0
  296. package/web/.next/standalone/packages/web/.next/server/chunks/694.js +1 -1
  297. package/web/.next/standalone/packages/web/.next/server/chunks/7055.js +1 -0
  298. package/web/.next/standalone/packages/web/.next/server/chunks/7094.js +3 -0
  299. package/web/.next/standalone/packages/web/.next/server/chunks/724.js +1 -0
  300. package/web/.next/standalone/packages/web/.next/server/chunks/7481.js +1 -0
  301. package/web/.next/standalone/packages/web/.next/server/chunks/7801.js +1 -0
  302. package/web/.next/standalone/packages/web/.next/server/chunks/8039.js +2 -114
  303. package/web/.next/standalone/packages/web/.next/server/chunks/8363.js +1 -0
  304. package/web/.next/standalone/packages/web/.next/server/chunks/9455.js +1 -1
  305. package/web/.next/standalone/packages/web/.next/server/chunks/9516.js +1 -0
  306. package/web/.next/standalone/packages/web/.next/server/chunks/9787.js +7 -0
  307. package/web/.next/standalone/packages/web/.next/server/chunks/9928.js +1 -0
  308. package/web/.next/standalone/packages/web/.next/server/middleware-build-manifest.js +1 -1
  309. package/web/.next/standalone/packages/web/.next/server/middleware-react-loadable-manifest.js +1 -1
  310. package/web/.next/standalone/packages/web/.next/server/pages/500.html +1 -1
  311. package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.js +1 -1
  312. package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.json +1 -1
  313. package/web/.next/standalone/packages/web/.next/static/chunks/13831.066db0713c1a8852.js +1 -0
  314. package/web/.next/standalone/packages/web/.next/static/chunks/1464.88b2bdd29a78b74c.js +5 -0
  315. package/web/.next/standalone/packages/web/.next/static/chunks/19406.fee033bf442e8f76.js +1 -0
  316. package/web/.next/standalone/packages/web/.next/static/chunks/20038.7f2549911927bd0b.js +1 -0
  317. package/web/.next/standalone/packages/web/.next/static/chunks/20135-ff1df49b419ae77c.js +1 -0
  318. package/web/.next/standalone/packages/web/.next/static/chunks/22799.b575f4c8704f662f.js +1 -0
  319. package/web/.next/standalone/packages/web/.next/static/chunks/24315.817fd4bf4fecb10b.js +1 -0
  320. package/web/.next/standalone/packages/web/.next/static/chunks/26866.c9243462e80e9f63.js +1 -0
  321. package/web/.next/standalone/packages/web/.next/static/chunks/26878.58289178165f69c1.js +1 -0
  322. package/web/.next/standalone/packages/web/.next/static/chunks/27635.2f9ab3107e9d7037.js +1 -0
  323. package/web/.next/standalone/packages/web/.next/static/chunks/2818.b02f469acda3daaf.js +1 -0
  324. package/web/.next/standalone/packages/web/.next/static/chunks/28386-0121205400994756.js +1 -0
  325. package/web/.next/standalone/packages/web/.next/static/chunks/30690.c24f9bd9ab7a7001.js +1 -0
  326. package/web/.next/standalone/packages/web/.next/static/chunks/34443.51ce0308df669af7.js +1 -0
  327. package/web/.next/standalone/packages/web/.next/static/chunks/36902.095f4090617a3ff1.js +1 -0
  328. package/web/.next/standalone/packages/web/.next/static/chunks/37520.6c1f598cd71bd32b.js +1 -0
  329. package/web/.next/standalone/packages/web/.next/static/chunks/37668.c044dfe4830a476e.js +1 -0
  330. package/web/.next/standalone/packages/web/.next/static/chunks/37990.673cfa77e60e5e2b.js +1 -0
  331. package/web/.next/standalone/packages/web/.next/static/chunks/39816.a3835fb513390d7c.js +1 -0
  332. package/web/.next/standalone/packages/web/.next/static/chunks/41696.08fe09203aaf1a18.js +1 -0
  333. package/web/.next/standalone/packages/web/.next/static/chunks/41998.f6ff12354c38109d.js +1 -0
  334. package/web/.next/standalone/packages/web/.next/static/chunks/50706.05714b5e8d4309fd.js +3 -0
  335. package/web/.next/standalone/packages/web/.next/static/chunks/55623.9f20d295e46beb7f.js +1 -0
  336. package/web/.next/standalone/packages/web/.next/static/chunks/590.d15040dc892eee17.js +1 -0
  337. package/web/.next/standalone/packages/web/.next/static/chunks/61782-6602e89369bdd383.js +3 -0
  338. package/web/.next/standalone/packages/web/.next/static/chunks/62033.4ca9d0e612fa4381.js +1 -0
  339. package/web/.next/standalone/packages/web/.next/static/chunks/62184-538ffd18551c1091.js +1 -0
  340. package/web/.next/standalone/packages/web/.next/static/chunks/6356.863082dbc37f37c9.js +1 -0
  341. package/web/.next/standalone/packages/web/.next/static/chunks/652.af23595a550d8a34.js +1 -0
  342. package/web/.next/standalone/packages/web/.next/static/chunks/65453.1185ea14d9fff243.js +1 -0
  343. package/web/.next/standalone/packages/web/.next/static/chunks/68782-315b8f48de9c721c.js +3 -0
  344. package/web/.next/standalone/packages/web/.next/static/chunks/79593-9908d40eb6819d47.js +9 -0
  345. package/web/.next/standalone/packages/web/.next/static/chunks/81132.bfc52d50d21324b2.js +3 -0
  346. package/web/.next/standalone/packages/web/.next/static/chunks/83742.2a0531011c4978a3.js +1 -0
  347. package/web/.next/standalone/packages/web/.next/static/chunks/84271-14b7b1eb359781c9.js +2 -0
  348. package/web/.next/standalone/packages/web/.next/static/chunks/85066-3ed0d5789153e6f9.js +1 -0
  349. package/web/.next/standalone/packages/web/.next/static/chunks/88742.2b2e614444c9020a.js +1 -0
  350. package/web/.next/standalone/packages/web/.next/static/chunks/9016-2b7d7b8b143a8323.js +1 -0
  351. package/web/.next/standalone/packages/web/.next/static/chunks/92333.f198a097718e9120.js +1 -0
  352. package/web/.next/standalone/packages/web/.next/static/chunks/93514.84c566792ef9f58c.js +1 -0
  353. package/web/.next/standalone/packages/web/.next/static/chunks/96983.dff4ffcf73043d2b.js +1 -0
  354. package/web/.next/standalone/packages/web/.next/static/chunks/97331-be3cf2d134454808.js +1 -0
  355. package/web/.next/standalone/packages/web/.next/static/chunks/app/bridge/connect/page-623bf132b6d6a328.js +1 -0
  356. package/web/.next/standalone/packages/web/.next/static/chunks/app/embed/terminal/[id]/page-2d5fb9365b381b1f.js +2 -0
  357. package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-fa570b31bd3467b6.js +1 -0
  358. package/web/.next/standalone/packages/web/.next/static/chunks/app/page-a82e7b0e3e80ff3e.js +1 -0
  359. package/web/.next/standalone/packages/web/.next/static/chunks/app/sessions/[id]/page-aeb1ccc1a89248d5.js +1 -0
  360. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4a9fbf697a2c3836.js +9 -0
  361. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-6685d715ddb4ae5d.js +9 -0
  362. package/web/.next/standalone/packages/web/.next/static/chunks/app/unlock/page-4f87395d3035a5bf.js +1 -0
  363. package/web/.next/standalone/packages/web/.next/static/chunks/webpack-b33576dd0ae730fd.js +1 -0
  364. package/web/.next/standalone/packages/web/package.json +5 -5
  365. package/web/.next/static/chunks/13831.066db0713c1a8852.js +1 -0
  366. package/web/.next/static/chunks/1464.88b2bdd29a78b74c.js +5 -0
  367. package/web/.next/static/chunks/19406.fee033bf442e8f76.js +1 -0
  368. package/web/.next/static/chunks/20038.7f2549911927bd0b.js +1 -0
  369. package/web/.next/static/chunks/20135-ff1df49b419ae77c.js +1 -0
  370. package/web/.next/static/chunks/22799.b575f4c8704f662f.js +1 -0
  371. package/web/.next/static/chunks/24315.817fd4bf4fecb10b.js +1 -0
  372. package/web/.next/static/chunks/26866.c9243462e80e9f63.js +1 -0
  373. package/web/.next/static/chunks/26878.58289178165f69c1.js +1 -0
  374. package/web/.next/static/chunks/27635.2f9ab3107e9d7037.js +1 -0
  375. package/web/.next/static/chunks/2818.b02f469acda3daaf.js +1 -0
  376. package/web/.next/static/chunks/28386-0121205400994756.js +1 -0
  377. package/web/.next/static/chunks/30690.c24f9bd9ab7a7001.js +1 -0
  378. package/web/.next/static/chunks/34443.51ce0308df669af7.js +1 -0
  379. package/web/.next/static/chunks/36902.095f4090617a3ff1.js +1 -0
  380. package/web/.next/static/chunks/37520.6c1f598cd71bd32b.js +1 -0
  381. package/web/.next/static/chunks/37668.c044dfe4830a476e.js +1 -0
  382. package/web/.next/static/chunks/37990.673cfa77e60e5e2b.js +1 -0
  383. package/web/.next/static/chunks/39816.a3835fb513390d7c.js +1 -0
  384. package/web/.next/static/chunks/41696.08fe09203aaf1a18.js +1 -0
  385. package/web/.next/static/chunks/41998.f6ff12354c38109d.js +1 -0
  386. package/web/.next/static/chunks/50706.05714b5e8d4309fd.js +3 -0
  387. package/web/.next/static/chunks/55623.9f20d295e46beb7f.js +1 -0
  388. package/web/.next/static/chunks/590.d15040dc892eee17.js +1 -0
  389. package/web/.next/static/chunks/61782-6602e89369bdd383.js +3 -0
  390. package/web/.next/static/chunks/62033.4ca9d0e612fa4381.js +1 -0
  391. package/web/.next/static/chunks/62184-538ffd18551c1091.js +1 -0
  392. package/web/.next/static/chunks/6356.863082dbc37f37c9.js +1 -0
  393. package/web/.next/static/chunks/652.af23595a550d8a34.js +1 -0
  394. package/web/.next/static/chunks/65453.1185ea14d9fff243.js +1 -0
  395. package/web/.next/static/chunks/68782-315b8f48de9c721c.js +3 -0
  396. package/web/.next/static/chunks/79593-9908d40eb6819d47.js +9 -0
  397. package/web/.next/static/chunks/81132.bfc52d50d21324b2.js +3 -0
  398. package/web/.next/static/chunks/83742.2a0531011c4978a3.js +1 -0
  399. package/web/.next/static/chunks/84271-14b7b1eb359781c9.js +2 -0
  400. package/web/.next/static/chunks/85066-3ed0d5789153e6f9.js +1 -0
  401. package/web/.next/static/chunks/88742.2b2e614444c9020a.js +1 -0
  402. package/web/.next/static/chunks/9016-2b7d7b8b143a8323.js +1 -0
  403. package/web/.next/static/chunks/92333.f198a097718e9120.js +1 -0
  404. package/web/.next/static/chunks/93514.84c566792ef9f58c.js +1 -0
  405. package/web/.next/static/chunks/96983.dff4ffcf73043d2b.js +1 -0
  406. package/web/.next/static/chunks/97331-be3cf2d134454808.js +1 -0
  407. package/web/.next/static/chunks/app/bridge/connect/page-623bf132b6d6a328.js +1 -0
  408. package/web/.next/static/chunks/app/embed/terminal/[id]/page-2d5fb9365b381b1f.js +2 -0
  409. package/web/.next/static/chunks/app/layout-fa570b31bd3467b6.js +1 -0
  410. package/web/.next/static/chunks/app/page-a82e7b0e3e80ff3e.js +1 -0
  411. package/web/.next/static/chunks/app/sessions/[id]/page-aeb1ccc1a89248d5.js +1 -0
  412. package/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4a9fbf697a2c3836.js +9 -0
  413. package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-6685d715ddb4ae5d.js +9 -0
  414. package/web/.next/static/chunks/app/unlock/page-4f87395d3035a5bf.js +1 -0
  415. package/web/.next/static/chunks/webpack-b33576dd0ae730fd.js +1 -0
  416. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/CLI.js +0 -375
  417. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/Cache.js +0 -216
  418. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/DefaultProvider.js +0 -39
  419. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.js +0 -279
  420. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.js +0 -58
  421. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.js +0 -313
  422. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.js +0 -54
  423. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.js +0 -73
  424. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.js +0 -388
  425. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/types.js +0 -66
  426. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/debug.js +0 -14
  427. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/detectPlatform.js +0 -53
  428. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/fileUtil.js +0 -196
  429. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/httpUtil.js +0 -172
  430. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/install.js +0 -362
  431. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/launch.js +0 -439
  432. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/main.js +0 -45
  433. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/provider.js +0 -16
  434. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/CLI.js +0 -338
  435. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/Cache.js +0 -208
  436. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.js +0 -235
  437. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome.js +0 -296
  438. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/types.js +0 -63
  439. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/debug.js +0 -8
  440. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/fileUtil.js +0 -156
  441. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/httpUtil.js +0 -132
  442. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/install.js +0 -351
  443. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/launch.js +0 -426
  444. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/main.js +0 -15
  445. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/package.json +0 -1
  446. package/web/.next/standalone/node_modules/ansi-regex/index.js +0 -10
  447. package/web/.next/standalone/node_modules/ansi-regex/package.json +0 -55
  448. package/web/.next/standalone/node_modules/b4a/index.js +0 -188
  449. package/web/.next/standalone/node_modules/b4a/package.json +0 -49
  450. package/web/.next/standalone/node_modules/bare-events/index.js +0 -367
  451. package/web/.next/standalone/node_modules/bare-events/lib/errors.js +0 -26
  452. package/web/.next/standalone/node_modules/bare-events/package.json +0 -61
  453. package/web/.next/standalone/node_modules/buffer-crc32/index.js +0 -111
  454. package/web/.next/standalone/node_modules/buffer-crc32/package.json +0 -39
  455. package/web/.next/standalone/node_modules/cliui/build/index.cjs +0 -302
  456. package/web/.next/standalone/node_modules/cliui/build/lib/string-utils.js +0 -27
  457. package/web/.next/standalone/node_modules/color-convert/conversions.js +0 -839
  458. package/web/.next/standalone/node_modules/color-convert/index.js +0 -81
  459. package/web/.next/standalone/node_modules/color-convert/package.json +0 -48
  460. package/web/.next/standalone/node_modules/color-convert/route.js +0 -97
  461. package/web/.next/standalone/node_modules/color-name/index.js +0 -152
  462. package/web/.next/standalone/node_modules/color-name/package.json +0 -28
  463. package/web/.next/standalone/node_modules/end-of-stream/index.js +0 -96
  464. package/web/.next/standalone/node_modules/end-of-stream/package.json +0 -37
  465. package/web/.next/standalone/node_modules/events-universal/default.js +0 -1
  466. package/web/.next/standalone/node_modules/events-universal/index.js +0 -1
  467. package/web/.next/standalone/node_modules/events-universal/package.json +0 -39
  468. package/web/.next/standalone/node_modules/extract-zip/index.js +0 -173
  469. package/web/.next/standalone/node_modules/extract-zip/package.json +0 -80
  470. package/web/.next/standalone/node_modules/fast-fifo/fixed-size.js +0 -39
  471. package/web/.next/standalone/node_modules/fast-fifo/index.js +0 -48
  472. package/web/.next/standalone/node_modules/fast-fifo/package.json +0 -28
  473. package/web/.next/standalone/node_modules/get-stream/buffer-stream.js +0 -52
  474. package/web/.next/standalone/node_modules/get-stream/index.js +0 -60
  475. package/web/.next/standalone/node_modules/get-stream/package.json +0 -50
  476. package/web/.next/standalone/node_modules/is-fullwidth-code-point/index.js +0 -50
  477. package/web/.next/standalone/node_modules/is-fullwidth-code-point/package.json +0 -42
  478. package/web/.next/standalone/node_modules/once/once.js +0 -42
  479. package/web/.next/standalone/node_modules/once/package.json +0 -33
  480. package/web/.next/standalone/node_modules/pend/index.js +0 -55
  481. package/web/.next/standalone/node_modules/pend/package.json +0 -18
  482. package/web/.next/standalone/node_modules/progress/index.js +0 -1
  483. package/web/.next/standalone/node_modules/progress/lib/node-progress.js +0 -236
  484. package/web/.next/standalone/node_modules/progress/package.json +0 -26
  485. package/web/.next/standalone/node_modules/pump/index.js +0 -86
  486. package/web/.next/standalone/node_modules/pump/package.json +0 -30
  487. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Browser.js +0 -208
  488. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/BrowserContext.js +0 -187
  489. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/CDPSession.js +0 -72
  490. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/DeviceRequestPrompt.js +0 -38
  491. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Dialog.js +0 -94
  492. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.js +0 -1410
  493. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandleSymbol.js +0 -13
  494. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Extension.js +0 -88
  495. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.js +0 -907
  496. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPRequest.js +0 -467
  497. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPResponse.js +0 -60
  498. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.js +0 -217
  499. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/JSHandle.js +0 -230
  500. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.js +0 -1516
  501. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Realm.js +0 -76
  502. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Target.js +0 -53
  503. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.js +0 -124
  504. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/api.js +0 -39
  505. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/locators/locators.js +0 -809
  506. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BidiOverCdp.js +0 -182
  507. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BluetoothEmulation.js +0 -42
  508. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Browser.js +0 -345
  509. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserConnector.js +0 -120
  510. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserContext.js +0 -385
  511. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/CDPSession.js +0 -94
  512. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Connection.js +0 -164
  513. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Deserializer.js +0 -84
  514. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/DeviceRequestPrompt.js +0 -90
  515. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Dialog.js +0 -28
  516. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ElementHandle.js +0 -222
  517. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ExposedFunction.js +0 -265
  518. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Frame.js +0 -472
  519. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/HTTPRequest.js +0 -257
  520. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/HTTPResponse.js +0 -171
  521. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Input.js +0 -634
  522. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/JSHandle.js +0 -75
  523. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Page.js +0 -986
  524. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Realm.js +0 -346
  525. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Serializer.js +0 -125
  526. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Target.js +0 -153
  527. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/WebWorker.js +0 -38
  528. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/bidi.js +0 -34
  529. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Browser.js +0 -356
  530. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +0 -638
  531. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Navigation.js +0 -171
  532. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Realm.js +0 -308
  533. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Request.js +0 -311
  534. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Session.js +0 -181
  535. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/UserContext.js +0 -210
  536. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/UserPrompt.js +0 -135
  537. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/util.js +0 -145
  538. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Accessibility.js +0 -595
  539. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Binding.js +0 -166
  540. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BluetoothEmulation.js +0 -30
  541. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Browser.js +0 -392
  542. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserConnector.js +0 -29
  543. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserContext.js +0 -196
  544. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpIssue.js +0 -27
  545. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpPreloadScript.js +0 -43
  546. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpSession.js +0 -133
  547. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Connection.js +0 -249
  548. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Coverage.js +0 -378
  549. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +0 -156
  550. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Dialog.js +0 -27
  551. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ElementHandle.js +0 -210
  552. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/EmulationManager.js +0 -462
  553. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExecutionContext.js +0 -462
  554. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Extension.js +0 -79
  555. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExtensionTransport.js +0 -179
  556. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Frame.js +0 -377
  557. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManager.js +0 -499
  558. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManagerEvents.js +0 -27
  559. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameTree.js +0 -95
  560. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/HTTPRequest.js +0 -199
  561. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/HTTPResponse.js +0 -130
  562. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Input.js +0 -506
  563. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorld.js +0 -191
  564. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorlds.js +0 -23
  565. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/JSHandle.js +0 -106
  566. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/LifecycleWatcher.js +0 -178
  567. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/NetworkEventManager.js +0 -166
  568. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/NetworkManager.js +0 -605
  569. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Page.js +0 -1038
  570. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +0 -72
  571. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Target.js +0 -260
  572. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManageEvents.js +0 -8
  573. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js +0 -418
  574. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.js +0 -114
  575. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebMCP.js +0 -281
  576. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebWorker.js +0 -102
  577. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/cdp.js +0 -60
  578. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/utils.js +0 -262
  579. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/AriaQueryHandler.js +0 -58
  580. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserConnector.js +0 -176
  581. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserWebSocketTransport.js +0 -43
  582. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CSSQueryHandler.js +0 -22
  583. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CallbackRegistry.js +0 -138
  584. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ConsoleMessage.js +0 -82
  585. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CustomQueryHandler.js +0 -118
  586. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Debug.js +0 -149
  587. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.js +0 -1607
  588. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Errors.js +0 -104
  589. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/EventEmitter.js +0 -142
  590. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.js +0 -79
  591. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/GetQueryHandler.js +0 -73
  592. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/HandleIterator.js +0 -145
  593. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/LazyArg.js +0 -27
  594. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/NetworkManagerEvents.js +0 -24
  595. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PDFOptions.js +0 -61
  596. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PQueryHandler.js +0 -22
  597. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PSelectorParser.js +0 -103
  598. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PierceQueryHandler.js +0 -22
  599. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Puppeteer.js +0 -102
  600. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.js +0 -229
  601. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ScriptInjector.js +0 -55
  602. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/SecurityDetails.js +0 -73
  603. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TaskQueue.js +0 -28
  604. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TextQueryHandler.js +0 -19
  605. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TimeoutSettings.js +0 -43
  606. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/USKeyboardLayout.js +0 -397
  607. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/WaitTask.js +0 -202
  608. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/XPathQueryHandler.js +0 -25
  609. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/common.js +0 -51
  610. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/util.js +0 -396
  611. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/environment.js +0 -27
  612. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/injected.js +0 -12
  613. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/index-browser.js +0 -27
  614. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/index.js +0 -24
  615. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/BrowserLauncher.js +0 -358
  616. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ChromeLauncher.js +0 -270
  617. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/FirefoxLauncher.js +0 -173
  618. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.js +0 -25
  619. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/NodeWebSocketTransport.js +0 -62
  620. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PipeTransport.js +0 -76
  621. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.js +0 -285
  622. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ScreenRecorder.js +0 -286
  623. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/node.js +0 -28
  624. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/util/fs.js +0 -31
  625. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/puppeteer-core.js +0 -82
  626. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/revisions.js +0 -17
  627. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/AsyncIterableUtil.js +0 -33
  628. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Deferred.js +0 -109
  629. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/ErrorLike.js +0 -47
  630. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Function.js +0 -76
  631. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Mutex.js +0 -50
  632. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/assert.js +0 -22
  633. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/decorators.js +0 -240
  634. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/disposable.js +0 -347
  635. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/encoding.js +0 -69
  636. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/incremental-id-generator.js +0 -21
  637. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/util.js +0 -29
  638. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/version.js +0 -13
  639. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/mitt/mitt.js +0 -99
  640. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/parsel-js/parsel-js.js +0 -219
  641. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/rxjs/rxjs.js +0 -9738
  642. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/urlpattern-polyfill/urlpattern-polyfill.js +0 -853
  643. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/package.json +0 -1
  644. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Browser.js +0 -204
  645. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/BrowserContext.js +0 -183
  646. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/HTTPRequest.js +0 -461
  647. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/JSHandle.js +0 -227
  648. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js +0 -1512
  649. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Target.js +0 -49
  650. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.js +0 -120
  651. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.js +0 -799
  652. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BidiOverCdp.js +0 -146
  653. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Browser.js +0 -342
  654. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserConnector.js +0 -84
  655. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserContext.js +0 -382
  656. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Connection.js +0 -160
  657. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Deserializer.js +0 -80
  658. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/ExposedFunction.js +0 -261
  659. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Frame.js +0 -469
  660. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/HTTPResponse.js +0 -168
  661. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Page.js +0 -978
  662. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Realm.js +0 -340
  663. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Browser.js +0 -353
  664. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/BrowsingContext.js +0 -635
  665. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Navigation.js +0 -168
  666. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Realm.js +0 -302
  667. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Request.js +0 -308
  668. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Session.js +0 -178
  669. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/UserContext.js +0 -207
  670. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/UserPrompt.js +0 -132
  671. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Accessibility.js +0 -591
  672. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Binding.js +0 -162
  673. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Browser.js +0 -388
  674. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserConnector.js +0 -26
  675. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserContext.js +0 -192
  676. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/CdpSession.js +0 -129
  677. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Connection.js +0 -244
  678. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Coverage.js +0 -372
  679. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ElementHandle.js +0 -207
  680. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/EmulationManager.js +0 -458
  681. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js +0 -458
  682. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Extension.js +0 -75
  683. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Frame.js +0 -373
  684. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/FrameManager.js +0 -495
  685. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/HTTPRequest.js +0 -195
  686. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/HTTPResponse.js +0 -126
  687. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Input.js +0 -499
  688. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/JSHandle.js +0 -101
  689. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/NetworkManager.js +0 -601
  690. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Page.js +0 -1032
  691. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Target.js +0 -252
  692. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js +0 -414
  693. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebMCP.js +0 -275
  694. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebWorker.js +0 -98
  695. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserConnector.js +0 -139
  696. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +0 -39
  697. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/CallbackRegistry.js +0 -133
  698. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/Debug.js +0 -109
  699. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/EventEmitter.js +0 -135
  700. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/util.js +0 -375
  701. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/environment.js +0 -24
  702. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/generated/injected.js +0 -9
  703. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/BrowserLauncher.js +0 -321
  704. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ChromeLauncher.js +0 -261
  705. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/FirefoxLauncher.js +0 -166
  706. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/NodeWebSocketTransport.js +0 -55
  707. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/PipeTransport.js +0 -72
  708. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.js +0 -281
  709. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ScreenRecorder.js +0 -280
  710. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/puppeteer-core.js +0 -41
  711. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/revisions.js +0 -14
  712. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/Mutex.js +0 -46
  713. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/util.js +0 -13
  714. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/version.js +0 -10
  715. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiMapper.js +0 -31
  716. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiNoOpParser.js +0 -274
  717. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiServer.js +0 -169
  718. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/CommandProcessor.js +0 -326
  719. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/OutgoingMessage.js +0 -52
  720. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/bluetooth/BluetoothProcessor.js +0 -411
  721. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.js +0 -294
  722. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/ContextConfig.js +0 -74
  723. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/ContextConfigStorage.js +0 -96
  724. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/UserContextStorage.js +0 -56
  725. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpProcessor.js +0 -60
  726. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpTarget.js +0 -695
  727. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpTargetManager.js +0 -252
  728. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextImpl.js +0 -1463
  729. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextProcessor.js +0 -267
  730. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextStorage.js +0 -134
  731. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/NavigationTracker.js +0 -331
  732. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/emulation/EmulationProcessor.js +0 -384
  733. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/ActionDispatcher.js +0 -744
  734. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputProcessor.js +0 -194
  735. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputSource.js +0 -161
  736. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputState.js +0 -93
  737. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputStateManager.js +0 -34
  738. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/USKeyboardLayout.js +0 -274
  739. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/keyUtils.js +0 -497
  740. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/log/LogManager.js +0 -187
  741. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/log/logHelper.js +0 -172
  742. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/CollectorsStorage.js +0 -153
  743. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkProcessor.js +0 -546
  744. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkRequest.js +0 -894
  745. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkStorage.js +0 -353
  746. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkUtils.js +0 -322
  747. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/permissions/PermissionsProcessor.js +0 -55
  748. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/ChannelProxy.js +0 -235
  749. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/PreloadScript.js +0 -133
  750. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/PreloadScriptStorage.js +0 -79
  751. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/Realm.js +0 -485
  752. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/RealmStorage.js +0 -82
  753. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/ScriptProcessor.js +0 -136
  754. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/SharedId.js +0 -74
  755. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/WindowRealm.js +0 -146
  756. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/WorkerRealm.js +0 -70
  757. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/EventManager.js +0 -269
  758. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/SessionProcessor.js +0 -131
  759. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/SubscriptionManager.js +0 -273
  760. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/events.js +0 -37
  761. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/speculation/SpeculationProcessor.js +0 -62
  762. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/storage/StorageProcessor.js +0 -195
  763. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/webExtension/WebExtensionProcessor.js +0 -69
  764. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/ErrorResponse.js +0 -199
  765. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/cdp.js +0 -3
  766. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/chromium-bidi.js +0 -127
  767. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.js +0 -19
  768. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-nav-speculation.js +0 -19
  769. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.js +0 -19
  770. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-ua-client-hints.js +0 -19
  771. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.js +0 -19
  772. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/protocol.js +0 -65
  773. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Buffer.js +0 -47
  774. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/DefaultMap.js +0 -40
  775. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Deferred.js +0 -71
  776. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/EventEmitter.js +0 -74
  777. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/IdWrapper.js +0 -34
  778. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Mutex.js +0 -68
  779. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/ProcessingQueue.js +0 -67
  780. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/assert.js +0 -25
  781. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/base64.js +0 -35
  782. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/graphemeTools.js +0 -38
  783. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/log.js +0 -31
  784. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/time.js +0 -27
  785. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/unitConversions.js +0 -24
  786. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/urlHelpers.js +0 -52
  787. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/uuid.js +0 -64
  788. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/package.json +0 -252
  789. package/web/.next/standalone/node_modules/require-directory/index.js +0 -86
  790. package/web/.next/standalone/node_modules/require-directory/package.json +0 -40
  791. package/web/.next/standalone/node_modules/semver/functions/clean.js +0 -8
  792. package/web/.next/standalone/node_modules/semver/functions/compare-build.js +0 -9
  793. package/web/.next/standalone/node_modules/semver/functions/compare-loose.js +0 -5
  794. package/web/.next/standalone/node_modules/semver/functions/diff.js +0 -60
  795. package/web/.next/standalone/node_modules/semver/functions/inc.js +0 -21
  796. package/web/.next/standalone/node_modules/semver/functions/major.js +0 -5
  797. package/web/.next/standalone/node_modules/semver/functions/minor.js +0 -5
  798. package/web/.next/standalone/node_modules/semver/functions/patch.js +0 -5
  799. package/web/.next/standalone/node_modules/semver/functions/prerelease.js +0 -8
  800. package/web/.next/standalone/node_modules/semver/functions/rcompare.js +0 -5
  801. package/web/.next/standalone/node_modules/semver/functions/rsort.js +0 -5
  802. package/web/.next/standalone/node_modules/semver/functions/sort.js +0 -5
  803. package/web/.next/standalone/node_modules/semver/functions/valid.js +0 -8
  804. package/web/.next/standalone/node_modules/semver/index.js +0 -91
  805. package/web/.next/standalone/node_modules/semver/preload.js +0 -4
  806. package/web/.next/standalone/node_modules/semver/ranges/gtr.js +0 -6
  807. package/web/.next/standalone/node_modules/semver/ranges/intersects.js +0 -9
  808. package/web/.next/standalone/node_modules/semver/ranges/ltr.js +0 -6
  809. package/web/.next/standalone/node_modules/semver/ranges/max-satisfying.js +0 -27
  810. package/web/.next/standalone/node_modules/semver/ranges/min-satisfying.js +0 -26
  811. package/web/.next/standalone/node_modules/semver/ranges/min-version.js +0 -63
  812. package/web/.next/standalone/node_modules/semver/ranges/outside.js +0 -82
  813. package/web/.next/standalone/node_modules/semver/ranges/simplify.js +0 -49
  814. package/web/.next/standalone/node_modules/semver/ranges/subset.js +0 -249
  815. package/web/.next/standalone/node_modules/semver/ranges/to-comparators.js +0 -10
  816. package/web/.next/standalone/node_modules/semver/ranges/valid.js +0 -13
  817. package/web/.next/standalone/node_modules/streamx/index.js +0 -1184
  818. package/web/.next/standalone/node_modules/streamx/package.json +0 -34
  819. package/web/.next/standalone/node_modules/strip-ansi/index.js +0 -4
  820. package/web/.next/standalone/node_modules/strip-ansi/package.json +0 -54
  821. package/web/.next/standalone/node_modules/tar-fs/index.js +0 -400
  822. package/web/.next/standalone/node_modules/tar-fs/package.json +0 -61
  823. package/web/.next/standalone/node_modules/tar-stream/constants.js +0 -14
  824. package/web/.next/standalone/node_modules/tar-stream/extract.js +0 -406
  825. package/web/.next/standalone/node_modules/tar-stream/headers.js +0 -321
  826. package/web/.next/standalone/node_modules/tar-stream/index.js +0 -2
  827. package/web/.next/standalone/node_modules/tar-stream/pack.js +0 -287
  828. package/web/.next/standalone/node_modules/tar-stream/package.json +0 -42
  829. package/web/.next/standalone/node_modules/text-decoder/index.js +0 -64
  830. package/web/.next/standalone/node_modules/text-decoder/lib/pass-through-decoder.js +0 -19
  831. package/web/.next/standalone/node_modules/text-decoder/lib/utf8-decoder.js +0 -185
  832. package/web/.next/standalone/node_modules/text-decoder/package.json +0 -39
  833. package/web/.next/standalone/node_modules/wrappy/package.json +0 -29
  834. package/web/.next/standalone/node_modules/wrappy/wrappy.js +0 -33
  835. package/web/.next/standalone/node_modules/yargs/build/index.cjs +0 -1
  836. package/web/.next/standalone/node_modules/yargs/build/lib/utils/which-module.js +0 -10
  837. package/web/.next/standalone/node_modules/yargs/helpers/index.js +0 -14
  838. package/web/.next/standalone/node_modules/yargs/helpers/package.json +0 -3
  839. package/web/.next/standalone/node_modules/yargs/index.cjs +0 -53
  840. package/web/.next/standalone/node_modules/yargs/locales/be.json +0 -46
  841. package/web/.next/standalone/node_modules/yargs/locales/cs.json +0 -51
  842. package/web/.next/standalone/node_modules/yargs/locales/de.json +0 -46
  843. package/web/.next/standalone/node_modules/yargs/locales/en.json +0 -55
  844. package/web/.next/standalone/node_modules/yargs/locales/es.json +0 -46
  845. package/web/.next/standalone/node_modules/yargs/locales/fi.json +0 -49
  846. package/web/.next/standalone/node_modules/yargs/locales/fr.json +0 -53
  847. package/web/.next/standalone/node_modules/yargs/locales/hi.json +0 -49
  848. package/web/.next/standalone/node_modules/yargs/locales/hu.json +0 -46
  849. package/web/.next/standalone/node_modules/yargs/locales/id.json +0 -50
  850. package/web/.next/standalone/node_modules/yargs/locales/it.json +0 -46
  851. package/web/.next/standalone/node_modules/yargs/locales/ja.json +0 -51
  852. package/web/.next/standalone/node_modules/yargs/locales/ko.json +0 -49
  853. package/web/.next/standalone/node_modules/yargs/locales/nb.json +0 -44
  854. package/web/.next/standalone/node_modules/yargs/locales/nl.json +0 -49
  855. package/web/.next/standalone/node_modules/yargs/locales/nn.json +0 -44
  856. package/web/.next/standalone/node_modules/yargs/locales/pirate.json +0 -13
  857. package/web/.next/standalone/node_modules/yargs/locales/pl.json +0 -49
  858. package/web/.next/standalone/node_modules/yargs/locales/pt.json +0 -45
  859. package/web/.next/standalone/node_modules/yargs/locales/pt_BR.json +0 -48
  860. package/web/.next/standalone/node_modules/yargs/locales/ru.json +0 -51
  861. package/web/.next/standalone/node_modules/yargs/locales/th.json +0 -46
  862. package/web/.next/standalone/node_modules/yargs/locales/tr.json +0 -48
  863. package/web/.next/standalone/node_modules/yargs/locales/uk_UA.json +0 -51
  864. package/web/.next/standalone/node_modules/yargs/locales/uz.json +0 -52
  865. package/web/.next/standalone/node_modules/yargs/locales/zh_CN.json +0 -48
  866. package/web/.next/standalone/node_modules/yargs/locales/zh_TW.json +0 -51
  867. package/web/.next/standalone/node_modules/yargs-parser/build/index.cjs +0 -1050
  868. package/web/.next/standalone/node_modules/yauzl/fd-slicer.js +0 -188
  869. package/web/.next/standalone/node_modules/yauzl/index.js +0 -968
  870. package/web/.next/standalone/node_modules/yauzl/package.json +0 -40
  871. package/web/.next/standalone/packages/web/.next/server/chunks/1669.js +0 -1
  872. package/web/.next/standalone/packages/web/.next/server/chunks/1827.js +0 -1
  873. package/web/.next/standalone/packages/web/.next/server/chunks/2139.js +0 -1
  874. package/web/.next/standalone/packages/web/.next/server/chunks/3364.js +0 -3
  875. package/web/.next/standalone/packages/web/.next/server/chunks/3523.js +0 -3
  876. package/web/.next/standalone/packages/web/.next/server/chunks/3575.js +0 -1
  877. package/web/.next/standalone/packages/web/.next/server/chunks/3855.js +0 -1
  878. package/web/.next/standalone/packages/web/.next/server/chunks/4036.js +0 -1
  879. package/web/.next/standalone/packages/web/.next/server/chunks/4371.js +0 -7
  880. package/web/.next/standalone/packages/web/.next/server/chunks/4682.js +0 -1
  881. package/web/.next/standalone/packages/web/.next/server/chunks/5538.js +0 -1
  882. package/web/.next/standalone/packages/web/.next/server/chunks/6014.js +0 -1
  883. package/web/.next/standalone/packages/web/.next/server/chunks/6034.js +0 -1
  884. package/web/.next/standalone/packages/web/.next/server/chunks/7440.js +0 -1
  885. package/web/.next/standalone/packages/web/.next/server/chunks/7895.js +0 -1
  886. package/web/.next/standalone/packages/web/.next/server/chunks/8851.js +0 -1
  887. package/web/.next/standalone/packages/web/.next/server/chunks/9555.js +0 -1
  888. package/web/.next/standalone/packages/web/.next/server/chunks/9789.js +0 -1
  889. package/web/.next/standalone/packages/web/.next/static/chunks/13831.c5add20802d784d5.js +0 -1
  890. package/web/.next/standalone/packages/web/.next/static/chunks/19406.04136e47c9312bdb.js +0 -1
  891. package/web/.next/standalone/packages/web/.next/static/chunks/22799.10cdf9a63b484539.js +0 -1
  892. package/web/.next/standalone/packages/web/.next/static/chunks/24315.b4199b1b2bf0d590.js +0 -1
  893. package/web/.next/standalone/packages/web/.next/static/chunks/24607.272ce532ac5ed877.js +0 -3
  894. package/web/.next/standalone/packages/web/.next/static/chunks/26866.da7df15102380a9e.js +0 -1
  895. package/web/.next/standalone/packages/web/.next/static/chunks/2818.c726390e344d6293.js +0 -1
  896. package/web/.next/standalone/packages/web/.next/static/chunks/28386-521e4daee9fe51c3.js +0 -1
  897. package/web/.next/standalone/packages/web/.next/static/chunks/29450-8d186ad90ecd95e7.js +0 -1
  898. package/web/.next/standalone/packages/web/.next/static/chunks/30690.a8c29f006eadb5c9.js +0 -1
  899. package/web/.next/standalone/packages/web/.next/static/chunks/34443.aa93e30d632906f8.js +0 -1
  900. package/web/.next/standalone/packages/web/.next/static/chunks/35493-bec918ac58d9fc84.js +0 -1
  901. package/web/.next/standalone/packages/web/.next/static/chunks/35863.c344da3f5e1ece6c.js +0 -1
  902. package/web/.next/standalone/packages/web/.next/static/chunks/36902.58a2e10d61e1c29c.js +0 -1
  903. package/web/.next/standalone/packages/web/.next/static/chunks/37520.f4417e2e4b0933a8.js +0 -1
  904. package/web/.next/standalone/packages/web/.next/static/chunks/37668.804fa74c6bed7446.js +0 -1
  905. package/web/.next/standalone/packages/web/.next/static/chunks/37990.9e5281f849e5c037.js +0 -1
  906. package/web/.next/standalone/packages/web/.next/static/chunks/43971.78cca6926cb705d4.js +0 -1
  907. package/web/.next/standalone/packages/web/.next/static/chunks/54177-992dd90f131d13e7.js +0 -1
  908. package/web/.next/standalone/packages/web/.next/static/chunks/55623.fc2d575acd527888.js +0 -1
  909. package/web/.next/standalone/packages/web/.next/static/chunks/56701-1d3df200ffd6a638.js +0 -1
  910. package/web/.next/standalone/packages/web/.next/static/chunks/56817.538909e891e3b65d.js +0 -1
  911. package/web/.next/standalone/packages/web/.next/static/chunks/58607.bce7eb75dddcebd1.js +0 -1
  912. package/web/.next/standalone/packages/web/.next/static/chunks/60633.efb22d7f605ddec0.js +0 -1
  913. package/web/.next/standalone/packages/web/.next/static/chunks/61962-bd86b676175cca19.js +0 -1
  914. package/web/.next/standalone/packages/web/.next/static/chunks/62033.726b5765f23a0520.js +0 -1
  915. package/web/.next/standalone/packages/web/.next/static/chunks/652.12ff6c934f10168a.js +0 -1
  916. package/web/.next/standalone/packages/web/.next/static/chunks/65453.d024715dc3e78a51.js +0 -1
  917. package/web/.next/standalone/packages/web/.next/static/chunks/66173.b9ad09199df2d44d.js +0 -1
  918. package/web/.next/standalone/packages/web/.next/static/chunks/70232.eda405393dca2b67.js +0 -1
  919. package/web/.next/standalone/packages/web/.next/static/chunks/74927.d4c593d1eb3b66f9.js +0 -1
  920. package/web/.next/standalone/packages/web/.next/static/chunks/79167.6eff790c20304ba0.js +0 -1
  921. package/web/.next/standalone/packages/web/.next/static/chunks/79593-394f266a88d2d0d1.js +0 -9
  922. package/web/.next/standalone/packages/web/.next/static/chunks/79739.f779af05a3e0f6cf.js +0 -1
  923. package/web/.next/standalone/packages/web/.next/static/chunks/81132.8414066d4a5a3014.js +0 -3
  924. package/web/.next/standalone/packages/web/.next/static/chunks/81874.d7e8e971d89868fb.js +0 -1
  925. package/web/.next/standalone/packages/web/.next/static/chunks/82175-bc05c221ba90422c.js +0 -3
  926. package/web/.next/standalone/packages/web/.next/static/chunks/83742.86da416e90e96d34.js +0 -1
  927. package/web/.next/standalone/packages/web/.next/static/chunks/84271-4d1e0454ca612f5c.js +0 -2
  928. package/web/.next/standalone/packages/web/.next/static/chunks/883-bd3ca76b76fb6a07.js +0 -3
  929. package/web/.next/standalone/packages/web/.next/static/chunks/90694.044c53c7cbbb704b.js +0 -5
  930. package/web/.next/standalone/packages/web/.next/static/chunks/92333.3c74596acf217cc3.js +0 -1
  931. package/web/.next/standalone/packages/web/.next/static/chunks/93514.05e809fc49375ade.js +0 -1
  932. package/web/.next/standalone/packages/web/.next/static/chunks/app/bridge/connect/page-0c90eb3e3764ab94.js +0 -1
  933. package/web/.next/standalone/packages/web/.next/static/chunks/app/embed/terminal/[id]/page-51ad995aad07251f.js +0 -2
  934. package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-67ae36b8ac555829.js +0 -1
  935. package/web/.next/standalone/packages/web/.next/static/chunks/app/page-4c94c2a3cc348ae9.js +0 -1
  936. package/web/.next/standalone/packages/web/.next/static/chunks/app/sessions/[id]/page-bda93e3cb096137a.js +0 -1
  937. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js +0 -9
  938. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-35e34a3cc336595c.js +0 -9
  939. package/web/.next/standalone/packages/web/.next/static/chunks/app/unlock/page-873f594daba5cca9.js +0 -1
  940. package/web/.next/standalone/packages/web/.next/static/chunks/webpack-88cdb8bd3d9893ba.js +0 -1
  941. package/web/.next/static/chunks/13831.c5add20802d784d5.js +0 -1
  942. package/web/.next/static/chunks/19406.04136e47c9312bdb.js +0 -1
  943. package/web/.next/static/chunks/22799.10cdf9a63b484539.js +0 -1
  944. package/web/.next/static/chunks/24315.b4199b1b2bf0d590.js +0 -1
  945. package/web/.next/static/chunks/24607.272ce532ac5ed877.js +0 -3
  946. package/web/.next/static/chunks/26866.da7df15102380a9e.js +0 -1
  947. package/web/.next/static/chunks/2818.c726390e344d6293.js +0 -1
  948. package/web/.next/static/chunks/28386-521e4daee9fe51c3.js +0 -1
  949. package/web/.next/static/chunks/29450-8d186ad90ecd95e7.js +0 -1
  950. package/web/.next/static/chunks/30690.a8c29f006eadb5c9.js +0 -1
  951. package/web/.next/static/chunks/34443.aa93e30d632906f8.js +0 -1
  952. package/web/.next/static/chunks/35493-bec918ac58d9fc84.js +0 -1
  953. package/web/.next/static/chunks/35863.c344da3f5e1ece6c.js +0 -1
  954. package/web/.next/static/chunks/36902.58a2e10d61e1c29c.js +0 -1
  955. package/web/.next/static/chunks/37520.f4417e2e4b0933a8.js +0 -1
  956. package/web/.next/static/chunks/37668.804fa74c6bed7446.js +0 -1
  957. package/web/.next/static/chunks/37990.9e5281f849e5c037.js +0 -1
  958. package/web/.next/static/chunks/43971.78cca6926cb705d4.js +0 -1
  959. package/web/.next/static/chunks/54177-992dd90f131d13e7.js +0 -1
  960. package/web/.next/static/chunks/55623.fc2d575acd527888.js +0 -1
  961. package/web/.next/static/chunks/56701-1d3df200ffd6a638.js +0 -1
  962. package/web/.next/static/chunks/56817.538909e891e3b65d.js +0 -1
  963. package/web/.next/static/chunks/58607.bce7eb75dddcebd1.js +0 -1
  964. package/web/.next/static/chunks/60633.efb22d7f605ddec0.js +0 -1
  965. package/web/.next/static/chunks/61962-bd86b676175cca19.js +0 -1
  966. package/web/.next/static/chunks/62033.726b5765f23a0520.js +0 -1
  967. package/web/.next/static/chunks/652.12ff6c934f10168a.js +0 -1
  968. package/web/.next/static/chunks/65453.d024715dc3e78a51.js +0 -1
  969. package/web/.next/static/chunks/66173.b9ad09199df2d44d.js +0 -1
  970. package/web/.next/static/chunks/70232.eda405393dca2b67.js +0 -1
  971. package/web/.next/static/chunks/74927.d4c593d1eb3b66f9.js +0 -1
  972. package/web/.next/static/chunks/79167.6eff790c20304ba0.js +0 -1
  973. package/web/.next/static/chunks/79593-394f266a88d2d0d1.js +0 -9
  974. package/web/.next/static/chunks/79739.f779af05a3e0f6cf.js +0 -1
  975. package/web/.next/static/chunks/81132.8414066d4a5a3014.js +0 -3
  976. package/web/.next/static/chunks/81874.d7e8e971d89868fb.js +0 -1
  977. package/web/.next/static/chunks/82175-bc05c221ba90422c.js +0 -3
  978. package/web/.next/static/chunks/83742.86da416e90e96d34.js +0 -1
  979. package/web/.next/static/chunks/84271-4d1e0454ca612f5c.js +0 -2
  980. package/web/.next/static/chunks/883-bd3ca76b76fb6a07.js +0 -3
  981. package/web/.next/static/chunks/90694.044c53c7cbbb704b.js +0 -5
  982. package/web/.next/static/chunks/92333.3c74596acf217cc3.js +0 -1
  983. package/web/.next/static/chunks/93514.05e809fc49375ade.js +0 -1
  984. package/web/.next/static/chunks/app/bridge/connect/page-0c90eb3e3764ab94.js +0 -1
  985. package/web/.next/static/chunks/app/embed/terminal/[id]/page-51ad995aad07251f.js +0 -2
  986. package/web/.next/static/chunks/app/layout-67ae36b8ac555829.js +0 -1
  987. package/web/.next/static/chunks/app/page-4c94c2a3cc348ae9.js +0 -1
  988. package/web/.next/static/chunks/app/sessions/[id]/page-bda93e3cb096137a.js +0 -1
  989. package/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js +0 -9
  990. package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-35e34a3cc336595c.js +0 -9
  991. package/web/.next/static/chunks/app/unlock/page-873f594daba5cca9.js +0 -1
  992. package/web/.next/static/chunks/webpack-88cdb8bd3d9893ba.js +0 -1
  993. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/DefaultProvider.js → DefaultProvider.js} +0 -0
  994. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chrome-headless-shell.js +0 -0
  995. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chromedriver.js +0 -0
  996. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chromium.js +0 -0
  997. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/firefox.js +0 -0
  998. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/detectPlatform.js → detectPlatform.js} +0 -0
  999. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/provider.js → provider.js} +0 -0
  1000. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/CDPSession.js +0 -0
  1001. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/DeviceRequestPrompt.js +0 -0
  1002. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Dialog.js +0 -0
  1003. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/ElementHandle.js +0 -0
  1004. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/ElementHandleSymbol.js +0 -0
  1005. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Extension.js +0 -0
  1006. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Frame.js +0 -0
  1007. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/HTTPResponse.js +0 -0
  1008. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Input.js +0 -0
  1009. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Realm.js +0 -0
  1010. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/api.js +0 -0
  1011. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/BluetoothEmulation.js +0 -0
  1012. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/CDPSession.js +0 -0
  1013. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/DeviceRequestPrompt.js +0 -0
  1014. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Dialog.js +0 -0
  1015. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/ElementHandle.js +0 -0
  1016. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/HTTPRequest.js +0 -0
  1017. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Input.js +0 -0
  1018. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/JSHandle.js +0 -0
  1019. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Serializer.js +0 -0
  1020. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Target.js +0 -0
  1021. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/WebWorker.js +0 -0
  1022. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/bidi.js +0 -0
  1023. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/util.js +0 -0
  1024. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/BluetoothEmulation.js +0 -0
  1025. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/CdpIssue.js +0 -0
  1026. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/CdpPreloadScript.js +0 -0
  1027. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/DeviceRequestPrompt.js +0 -0
  1028. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/Dialog.js +0 -0
  1029. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/ExtensionTransport.js +0 -0
  1030. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/FrameManagerEvents.js +0 -0
  1031. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/FrameTree.js +0 -0
  1032. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/IsolatedWorld.js +0 -0
  1033. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/IsolatedWorlds.js +0 -0
  1034. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/LifecycleWatcher.js +0 -0
  1035. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/NetworkEventManager.js +0 -0
  1036. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/PredefinedNetworkConditions.js +0 -0
  1037. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/TargetManageEvents.js +0 -0
  1038. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/Tracing.js +0 -0
  1039. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/cdp.js +0 -0
  1040. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/utils.js +0 -0
  1041. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/AriaQueryHandler.js +0 -0
  1042. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/CSSQueryHandler.js +0 -0
  1043. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/ConsoleMessage.js +0 -0
  1044. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/CustomQueryHandler.js +0 -0
  1045. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Device.js +0 -0
  1046. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Errors.js +0 -0
  1047. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/FileChooser.js +0 -0
  1048. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/GetQueryHandler.js +0 -0
  1049. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/HandleIterator.js +0 -0
  1050. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/LazyArg.js +0 -0
  1051. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/NetworkManagerEvents.js +0 -0
  1052. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PDFOptions.js +0 -0
  1053. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PQueryHandler.js +0 -0
  1054. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PSelectorParser.js +0 -0
  1055. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PierceQueryHandler.js +0 -0
  1056. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Puppeteer.js +0 -0
  1057. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/QueryHandler.js +0 -0
  1058. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/ScriptInjector.js +0 -0
  1059. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/SecurityDetails.js +0 -0
  1060. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TaskQueue.js +0 -0
  1061. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TextQueryHandler.js +0 -0
  1062. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TimeoutSettings.js +0 -0
  1063. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/USKeyboardLayout.js +0 -0
  1064. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/WaitTask.js +0 -0
  1065. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/XPathQueryHandler.js +0 -0
  1066. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/common.js +0 -0
  1067. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/index-browser.js +0 -0
  1068. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/index.js +0 -0
  1069. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/LaunchOptions.js +0 -0
  1070. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/node.js +0 -0
  1071. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/util/fs.js +0 -0
  1072. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/AsyncIterableUtil.js +0 -0
  1073. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/Deferred.js +0 -0
  1074. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/ErrorLike.js +0 -0
  1075. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/Function.js +0 -0
  1076. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/assert.js +0 -0
  1077. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/decorators.js +0 -0
  1078. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/disposable.js +0 -0
  1079. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/encoding.js +0 -0
  1080. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/incremental-id-generator.js +0 -0
  1081. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/mitt/mitt.js +0 -0
  1082. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/parsel-js/parsel-js.js +0 -0
  1083. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/rxjs/rxjs.js +0 -0
  1084. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/urlpattern-polyfill/urlpattern-polyfill.js +0 -0
  1085. /package/web/.next/standalone/packages/web/.next/static/{_PRoaIuE8oPDypr0Sj0oj → _wgCv462BB9GH9Ra7-6hn}/_buildManifest.js +0 -0
  1086. /package/web/.next/standalone/packages/web/.next/static/{_PRoaIuE8oPDypr0Sj0oj → _wgCv462BB9GH9Ra7-6hn}/_ssgManifest.js +0 -0
  1087. /package/web/.next/static/{_PRoaIuE8oPDypr0Sj0oj → _wgCv462BB9GH9Ra7-6hn}/_buildManifest.js +0 -0
  1088. /package/web/.next/static/{_PRoaIuE8oPDypr0Sj0oj → _wgCv462BB9GH9Ra7-6hn}/_ssgManifest.js +0 -0
@@ -1,894 +0,0 @@
1
- "use strict";
2
- /*
3
- * Copyright 2023 Google LLC.
4
- * Copyright (c) Microsoft Corporation.
5
- *
6
- * Licensed under the Apache License, Version 2.0 (the "License");
7
- * you may not use this file except in compliance with the License.
8
- * You may obtain a copy of the License at
9
- *
10
- * http://www.apache.org/licenses/LICENSE-2.0
11
- *
12
- * Unless required by applicable law or agreed to in writing, software
13
- * distributed under the License is distributed on an "AS IS" BASIS,
14
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- * See the License for the specific language governing permissions and
16
- * limitations under the License.
17
- *
18
- */
19
- var _a;
20
- Object.defineProperty(exports, "__esModule", { value: true });
21
- exports.NetworkRequest = void 0;
22
- const protocol_js_1 = require("../../../protocol/protocol.js");
23
- const assert_js_1 = require("../../../utils/assert.js");
24
- const DefaultMap_js_1 = require("../../../utils/DefaultMap.js");
25
- const Deferred_js_1 = require("../../../utils/Deferred.js");
26
- const log_js_1 = require("../../../utils/log.js");
27
- const NetworkUtils_js_1 = require("./NetworkUtils.js");
28
- const REALM_REGEX = /(?<=realm=").*(?=")/;
29
- /** Abstracts one individual network request. */
30
- class NetworkRequest {
31
- static unknownParameter = 'UNKNOWN';
32
- /**
33
- * Each network request has an associated request id, which is a string
34
- * uniquely identifying that request.
35
- *
36
- * The identifier for a request resulting from a redirect matches that of the
37
- * request that initiated it.
38
- */
39
- #id;
40
- #fetchId;
41
- /**
42
- * Indicates the network intercept phase, if the request is currently blocked.
43
- * Undefined necessarily implies that the request is not blocked.
44
- */
45
- #interceptPhase;
46
- #servedFromCache = false;
47
- #redirectCount;
48
- #request = {};
49
- #requestOverrides;
50
- #responseOverrides;
51
- #response = {
52
- decodedSize: 0,
53
- encodedSize: 0,
54
- };
55
- #eventManager;
56
- #networkStorage;
57
- #cdpTarget;
58
- #logger;
59
- #emittedEvents = {
60
- [protocol_js_1.ChromiumBidi.Network.EventNames.AuthRequired]: false,
61
- [protocol_js_1.ChromiumBidi.Network.EventNames.BeforeRequestSent]: false,
62
- [protocol_js_1.ChromiumBidi.Network.EventNames.FetchError]: false,
63
- [protocol_js_1.ChromiumBidi.Network.EventNames.ResponseCompleted]: false,
64
- [protocol_js_1.ChromiumBidi.Network.EventNames.ResponseStarted]: false,
65
- };
66
- waitNextPhase = new Deferred_js_1.Deferred();
67
- constructor(id, eventManager, networkStorage, cdpTarget, redirectCount = 0, logger) {
68
- this.#id = id;
69
- this.#eventManager = eventManager;
70
- this.#networkStorage = networkStorage;
71
- this.#cdpTarget = cdpTarget;
72
- this.#redirectCount = redirectCount;
73
- this.#logger = logger;
74
- }
75
- get id() {
76
- return this.#id;
77
- }
78
- get fetchId() {
79
- return this.#fetchId;
80
- }
81
- /**
82
- * When blocked returns the phase for it
83
- */
84
- get interceptPhase() {
85
- return this.#interceptPhase;
86
- }
87
- get url() {
88
- const fragment = this.#request.info?.request.urlFragment ??
89
- this.#request.paused?.request.urlFragment ??
90
- '';
91
- const url = this.#response.paused?.request.url ??
92
- this.#requestOverrides?.url ??
93
- this.#response.info?.url ??
94
- this.#request.auth?.request.url ??
95
- this.#request.info?.request.url ??
96
- this.#request.paused?.request.url ??
97
- _a.unknownParameter;
98
- return `${url}${fragment}`;
99
- }
100
- get redirectCount() {
101
- return this.#redirectCount;
102
- }
103
- get cdpTarget() {
104
- return this.#cdpTarget;
105
- }
106
- /** CdpTarget can be changed when frame is moving out of process. */
107
- updateCdpTarget(cdpTarget) {
108
- if (cdpTarget !== this.#cdpTarget) {
109
- this.#logger?.(log_js_1.LogType.debugInfo, `Request ${this.id} was moved from ${this.#cdpTarget.id} to ${cdpTarget.id}`);
110
- this.#cdpTarget = cdpTarget;
111
- }
112
- }
113
- get cdpClient() {
114
- return this.#cdpTarget.cdpClient;
115
- }
116
- isRedirecting() {
117
- return Boolean(this.#request.info);
118
- }
119
- #isDataUrl() {
120
- return this.url.startsWith('data:');
121
- }
122
- #isNonInterceptable() {
123
- return (
124
- // We can't intercept data urls from CDP
125
- this.#isDataUrl() ||
126
- // Cached requests never hit the network
127
- this.#servedFromCache);
128
- }
129
- get #method() {
130
- return (this.#requestOverrides?.method ??
131
- this.#request.info?.request.method ??
132
- this.#request.paused?.request.method ??
133
- this.#request.auth?.request.method ??
134
- this.#response.paused?.request.method);
135
- }
136
- get #navigationId() {
137
- // Heuristic to determine if this is a navigation request, and if not return null.
138
- if (!this.#request.info ||
139
- !this.#request.info.loaderId ||
140
- // When we navigate all CDP network events have `loaderId`
141
- // CDP's `loaderId` and `requestId` match when
142
- // that request triggered the loading
143
- this.#request.info.loaderId !== this.#request.info.requestId) {
144
- return null;
145
- }
146
- // Get virtual navigation ID from the browsing context.
147
- return this.#networkStorage.getNavigationId(this.#context ?? undefined);
148
- }
149
- get #cookies() {
150
- let cookies = [];
151
- if (this.#request.extraInfo) {
152
- cookies = this.#request.extraInfo.associatedCookies
153
- .filter(({ blockedReasons }) => {
154
- return !Array.isArray(blockedReasons) || blockedReasons.length === 0;
155
- })
156
- .map(({ cookie }) => (0, NetworkUtils_js_1.cdpToBiDiCookie)(cookie));
157
- }
158
- return cookies;
159
- }
160
- #getBodySizeFromHeaders(headers) {
161
- if (headers === undefined) {
162
- return undefined;
163
- }
164
- if (headers['Content-Length'] !== undefined) {
165
- const bodySize = Number.parseInt(headers['Content-Length']);
166
- if (Number.isInteger(bodySize)) {
167
- return bodySize;
168
- }
169
- this.#logger?.(log_js_1.LogType.debugError, "Unexpected non-integer 'Content-Length' header");
170
- }
171
- // TODO: process `Transfer-Encoding: chunked` case properly.
172
- return undefined;
173
- }
174
- get bodySize() {
175
- if (typeof this.#requestOverrides?.bodySize === 'number') {
176
- return this.#requestOverrides.bodySize;
177
- }
178
- if (this.#request.info?.request.postDataEntries !== undefined) {
179
- return (0, NetworkUtils_js_1.bidiBodySizeFromCdpPostDataEntries)(this.#request.info?.request.postDataEntries);
180
- }
181
- // Try to guess the body size based on the `Content-Length` header.
182
- return (this.#getBodySizeFromHeaders(this.#request.info?.request.headers) ??
183
- this.#getBodySizeFromHeaders(this.#request.extraInfo?.headers) ??
184
- 0);
185
- }
186
- get #context() {
187
- const result = this.#response.paused?.frameId ??
188
- this.#request.info?.frameId ??
189
- this.#request.paused?.frameId ??
190
- this.#request.auth?.frameId;
191
- if (result !== undefined) {
192
- return result;
193
- }
194
- // Heuristic for associating a preflight request with context via it's initiator
195
- // request. Useful for preflight requests.
196
- // https://github.com/GoogleChromeLabs/chromium-bidi/issues/3570
197
- if (this.#request?.info?.initiator.type === 'preflight' &&
198
- this.#request?.info?.initiator.requestId !== undefined) {
199
- const maybeInitiator = this.#networkStorage.getRequestById(this.#request?.info?.initiator.requestId);
200
- if (maybeInitiator !== undefined) {
201
- return maybeInitiator.#request.info?.frameId ?? null;
202
- }
203
- }
204
- return null;
205
- }
206
- /** Returns the HTTP status code associated with this request if any. */
207
- get #statusCode() {
208
- return (this.#responseOverrides?.statusCode ??
209
- this.#response.paused?.responseStatusCode ??
210
- this.#response.extraInfo?.statusCode ??
211
- this.#response.info?.status);
212
- }
213
- get #requestHeaders() {
214
- let headers = [];
215
- if (this.#requestOverrides?.headers) {
216
- const headerMap = new DefaultMap_js_1.DefaultMap(() => []);
217
- for (const header of this.#requestOverrides.headers) {
218
- headerMap.get(header.name).push(header.value.value);
219
- }
220
- for (const [name, value] of headerMap.entries()) {
221
- headers.push({
222
- name,
223
- value: {
224
- type: 'string',
225
- value: value.join('\n').trimEnd(),
226
- },
227
- });
228
- }
229
- }
230
- else {
231
- headers = [
232
- ...(0, NetworkUtils_js_1.bidiNetworkHeadersFromCdpNetworkHeaders)(this.#request.info?.request.headers),
233
- ...(0, NetworkUtils_js_1.bidiNetworkHeadersFromCdpNetworkHeaders)(this.#request.extraInfo?.headers),
234
- ];
235
- }
236
- return headers;
237
- }
238
- get #authChallenges() {
239
- // TODO: get headers from Fetch.requestPaused
240
- if (!this.#response.info) {
241
- return;
242
- }
243
- if (!(this.#statusCode === 401 || this.#statusCode === 407)) {
244
- return undefined;
245
- }
246
- const headerName = this.#statusCode === 401 ? 'WWW-Authenticate' : 'Proxy-Authenticate';
247
- const authChallenges = [];
248
- for (const [header, value] of Object.entries(this.#response.info.headers)) {
249
- // TODO: Do a proper match based on https://httpwg.org/specs/rfc9110.html#credentials
250
- // Or verify this works
251
- if (header.localeCompare(headerName, undefined, { sensitivity: 'base' }) === 0) {
252
- authChallenges.push({
253
- scheme: value.split(' ').at(0) ?? '',
254
- realm: value.match(REALM_REGEX)?.at(0) ?? '',
255
- });
256
- }
257
- }
258
- return authChallenges;
259
- }
260
- get #timings() {
261
- // The timing in the CDP events are provided relative to the event's baseline.
262
- // However, the baseline can be different for different events, and the events have to
263
- // be normalized throughout resource events. Normalize events timestamps by the
264
- // request.
265
- // TODO: Verify this is correct.
266
- const responseTimeOffset = (0, NetworkUtils_js_1.getTiming)((0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.requestTime) -
267
- (0, NetworkUtils_js_1.getTiming)(this.#request.info?.timestamp));
268
- return {
269
- // TODO: Verify this is correct
270
- timeOrigin: Math.round((0, NetworkUtils_js_1.getTiming)(this.#request.info?.wallTime) * 1000),
271
- // Timing baseline.
272
- // TODO: Verify this is correct.
273
- requestTime: 0,
274
- // TODO: set if redirect detected.
275
- redirectStart: 0,
276
- // TODO: set if redirect detected.
277
- redirectEnd: 0,
278
- // TODO: Verify this is correct
279
- // https://source.chromium.org/chromium/chromium/src/+/main:net/base/load_timing_info.h;l=145
280
- fetchStart: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.workerFetchStart, responseTimeOffset),
281
- // fetchStart: 0,
282
- dnsStart: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.dnsStart, responseTimeOffset),
283
- dnsEnd: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.dnsEnd, responseTimeOffset),
284
- connectStart: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.connectStart, responseTimeOffset),
285
- connectEnd: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.connectEnd, responseTimeOffset),
286
- tlsStart: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.sslStart, responseTimeOffset),
287
- requestStart: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.sendStart, responseTimeOffset),
288
- // https://source.chromium.org/chromium/chromium/src/+/main:net/base/load_timing_info.h;l=196
289
- responseStart: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.receiveHeadersStart, responseTimeOffset),
290
- responseEnd: (0, NetworkUtils_js_1.getTiming)(this.#response.info?.timing?.receiveHeadersEnd, responseTimeOffset),
291
- };
292
- }
293
- #phaseChanged() {
294
- this.waitNextPhase.resolve();
295
- this.waitNextPhase = new Deferred_js_1.Deferred();
296
- }
297
- #interceptsInPhase(phase) {
298
- if (this.#isNonInterceptable() ||
299
- !this.#cdpTarget.isSubscribedTo(`network.${phase}`)) {
300
- return new Set();
301
- }
302
- return this.#networkStorage.getInterceptsForPhase(this, phase);
303
- }
304
- #isBlockedInPhase(phase) {
305
- return this.#interceptsInPhase(phase).size > 0;
306
- }
307
- handleRedirect(event) {
308
- // TODO: use event.redirectResponse;
309
- // Temporary workaround to emit ResponseCompleted event for redirects
310
- this.#response.hasExtraInfo = false;
311
- this.#response.decodedSize = 0;
312
- this.#response.encodedSize = 0;
313
- this.#response.info = event.redirectResponse;
314
- this.#emitEventsIfReady({
315
- wasRedirected: true,
316
- });
317
- }
318
- #emitEventsIfReady(options = {}) {
319
- const requestExtraInfoCompleted =
320
- // Flush redirects
321
- options.wasRedirected ||
322
- Boolean(this.#response.loadingFailed) ||
323
- this.#isDataUrl() ||
324
- Boolean(this.#request.extraInfo) ||
325
- // If the request is intercepted during the `authRequired` phase, there
326
- // will be no `Network.requestWillBeSentExtraInfo` CDP events.
327
- this.#isBlockedInPhase("authRequired" /* Network.InterceptPhase.AuthRequired */) ||
328
- // Requests from cache don't have extra info
329
- this.#servedFromCache ||
330
- // Sometimes there is no extra info and the response
331
- // is the only place we can find out
332
- Boolean(this.#response.info && !this.#response.hasExtraInfo);
333
- const noInterceptionExpected = this.#isNonInterceptable();
334
- const requestInterceptionExpected = !noInterceptionExpected &&
335
- this.#isBlockedInPhase("beforeRequestSent" /* Network.InterceptPhase.BeforeRequestSent */);
336
- const requestInterceptionCompleted = !requestInterceptionExpected ||
337
- (requestInterceptionExpected && Boolean(this.#request.paused));
338
- if (Boolean(this.#request.info) &&
339
- (requestInterceptionExpected
340
- ? requestInterceptionCompleted
341
- : requestExtraInfoCompleted)) {
342
- this.#emitEvent(this.#getBeforeRequestEvent.bind(this));
343
- }
344
- const responseExtraInfoCompleted = Boolean(this.#response.extraInfo) ||
345
- // Response from cache don't have extra info
346
- this.#servedFromCache ||
347
- // Don't expect extra info if the flag is false
348
- Boolean(this.#response.info && !this.#response.hasExtraInfo);
349
- const responseInterceptionExpected = !noInterceptionExpected &&
350
- this.#isBlockedInPhase("responseStarted" /* Network.InterceptPhase.ResponseStarted */);
351
- if (this.#response.info ||
352
- (responseInterceptionExpected && Boolean(this.#response.paused))) {
353
- this.#emitEvent(this.#getResponseStartedEvent.bind(this));
354
- }
355
- const responseInterceptionCompleted = !responseInterceptionExpected ||
356
- (responseInterceptionExpected && Boolean(this.#response.paused));
357
- const loadingFinished = Boolean(this.#response.loadingFailed) ||
358
- Boolean(this.#response.loadingFinished);
359
- if (Boolean(this.#response.info) &&
360
- responseExtraInfoCompleted &&
361
- responseInterceptionCompleted &&
362
- (loadingFinished || options.wasRedirected)) {
363
- this.#emitEvent(this.#getResponseReceivedEvent.bind(this));
364
- this.#networkStorage.disposeRequest(this.id);
365
- }
366
- }
367
- onRequestWillBeSentEvent(event) {
368
- this.#request.info = event;
369
- this.#networkStorage.collectIfNeeded(this, "request" /* Network.DataType.Request */);
370
- this.#emitEventsIfReady();
371
- }
372
- onRequestWillBeSentExtraInfoEvent(event) {
373
- this.#request.extraInfo = event;
374
- this.#emitEventsIfReady();
375
- }
376
- onResponseReceivedExtraInfoEvent(event) {
377
- if (event.statusCode >= 300 &&
378
- event.statusCode <= 399 &&
379
- this.#request.info &&
380
- event.headers['location'] === this.#request.info.request.url) {
381
- // We received the Response Extra info for the redirect
382
- // Too late so we need to skip it as it will
383
- // fire wrongly for the last one
384
- return;
385
- }
386
- this.#response.extraInfo = event;
387
- this.#emitEventsIfReady();
388
- }
389
- onResponseReceivedEvent(event) {
390
- this.#response.hasExtraInfo = event.hasExtraInfo;
391
- this.#response.info = event.response;
392
- this.#networkStorage.collectIfNeeded(this, "response" /* Network.DataType.Response */);
393
- this.#emitEventsIfReady();
394
- }
395
- onServedFromCache() {
396
- this.#servedFromCache = true;
397
- this.#emitEventsIfReady();
398
- }
399
- onLoadingFinishedEvent(event) {
400
- this.#response.loadingFinished = event;
401
- this.#emitEventsIfReady();
402
- }
403
- onDataReceivedEvent(event) {
404
- this.#response.decodedSize += event.dataLength;
405
- this.#response.encodedSize += event.encodedDataLength;
406
- }
407
- onLoadingFailedEvent(event) {
408
- this.#response.loadingFailed = event;
409
- this.#emitEventsIfReady();
410
- this.#emitEvent(() => {
411
- return {
412
- method: protocol_js_1.ChromiumBidi.Network.EventNames.FetchError,
413
- params: {
414
- ...this.#getBaseEventParams(),
415
- errorText: event.errorText,
416
- },
417
- };
418
- });
419
- }
420
- /** @see https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-failRequest */
421
- async failRequest(errorReason) {
422
- (0, assert_js_1.assert)(this.#fetchId, 'Network Interception not set-up.');
423
- await this.cdpClient.sendCommand('Fetch.failRequest', {
424
- requestId: this.#fetchId,
425
- errorReason,
426
- });
427
- this.#interceptPhase = undefined;
428
- }
429
- onRequestPaused(event) {
430
- this.#fetchId = event.requestId;
431
- // CDP https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-requestPaused
432
- if (event.responseStatusCode || event.responseErrorReason) {
433
- this.#response.paused = event;
434
- if (this.#isBlockedInPhase("responseStarted" /* Network.InterceptPhase.ResponseStarted */) &&
435
- // CDP may emit multiple events for a single request
436
- !this.#emittedEvents[protocol_js_1.ChromiumBidi.Network.EventNames.ResponseStarted] &&
437
- // Continue all response that have not enabled Network domain
438
- this.#fetchId !== this.id) {
439
- this.#interceptPhase = "responseStarted" /* Network.InterceptPhase.ResponseStarted */;
440
- }
441
- else {
442
- void this.#continueResponse();
443
- }
444
- }
445
- else {
446
- this.#request.paused = event;
447
- if (this.#isBlockedInPhase("beforeRequestSent" /* Network.InterceptPhase.BeforeRequestSent */) &&
448
- // CDP may emit multiple events for a single request
449
- !this.#emittedEvents[protocol_js_1.ChromiumBidi.Network.EventNames.BeforeRequestSent] &&
450
- // Continue all requests that have not enabled Network domain
451
- this.#fetchId !== this.id) {
452
- this.#interceptPhase = "beforeRequestSent" /* Network.InterceptPhase.BeforeRequestSent */;
453
- }
454
- else {
455
- void this.#continueRequest();
456
- }
457
- }
458
- this.#emitEventsIfReady();
459
- }
460
- onAuthRequired(event) {
461
- this.#fetchId = event.requestId;
462
- this.#request.auth = event;
463
- if (this.#isBlockedInPhase("authRequired" /* Network.InterceptPhase.AuthRequired */) &&
464
- // Continue all auth requests that have not enabled Network domain
465
- this.#fetchId !== this.id) {
466
- this.#interceptPhase = "authRequired" /* Network.InterceptPhase.AuthRequired */;
467
- // Make sure the `network.beforeRequestSent` is emitted before
468
- // `network.authRequired`.
469
- this.#emitEventsIfReady();
470
- }
471
- else {
472
- void this.#continueWithAuth({
473
- response: 'Default',
474
- });
475
- }
476
- this.#emitEvent(() => {
477
- return {
478
- method: protocol_js_1.ChromiumBidi.Network.EventNames.AuthRequired,
479
- params: {
480
- ...this.#getBaseEventParams("authRequired" /* Network.InterceptPhase.AuthRequired */),
481
- response: this.#getResponseEventParams(),
482
- },
483
- };
484
- });
485
- }
486
- /** @see https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueRequest */
487
- async continueRequest(overrides = {}) {
488
- const overrideHeaders = this.#getOverrideHeader(overrides.headers, overrides.cookies);
489
- const headers = (0, NetworkUtils_js_1.cdpFetchHeadersFromBidiNetworkHeaders)(overrideHeaders);
490
- const postData = getCdpBodyFromBiDiBytesValue(overrides.body);
491
- await this.#continueRequest({
492
- url: overrides.url,
493
- method: overrides.method,
494
- headers,
495
- postData,
496
- });
497
- this.#requestOverrides = {
498
- url: overrides.url,
499
- method: overrides.method,
500
- headers: overrides.headers,
501
- cookies: overrides.cookies,
502
- bodySize: getSizeFromBiDiBytesValue(overrides.body),
503
- };
504
- }
505
- async #continueRequest(overrides = {}) {
506
- (0, assert_js_1.assert)(this.#fetchId, 'Network Interception not set-up.');
507
- await this.cdpClient.sendCommand('Fetch.continueRequest', {
508
- requestId: this.#fetchId,
509
- url: overrides.url,
510
- method: overrides.method,
511
- headers: overrides.headers,
512
- postData: overrides.postData,
513
- });
514
- this.#interceptPhase = undefined;
515
- }
516
- /** @see https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueResponse */
517
- async continueResponse(overrides = {}) {
518
- if (this.interceptPhase === "authRequired" /* Network.InterceptPhase.AuthRequired */) {
519
- if (overrides.credentials) {
520
- await Promise.all([
521
- this.waitNextPhase,
522
- await this.#continueWithAuth({
523
- response: 'ProvideCredentials',
524
- username: overrides.credentials.username,
525
- password: overrides.credentials.password,
526
- }),
527
- ]);
528
- }
529
- else {
530
- // We need to use `ProvideCredentials`
531
- // As `Default` may cancel the request
532
- return await this.#continueWithAuth({
533
- response: 'ProvideCredentials',
534
- });
535
- }
536
- }
537
- if (this.#interceptPhase === "responseStarted" /* Network.InterceptPhase.ResponseStarted */) {
538
- const overrideHeaders = this.#getOverrideHeader(overrides.headers, overrides.cookies);
539
- const responseHeaders = (0, NetworkUtils_js_1.cdpFetchHeadersFromBidiNetworkHeaders)(overrideHeaders);
540
- await this.#continueResponse({
541
- responseCode: overrides.statusCode ?? this.#response.paused?.responseStatusCode,
542
- responsePhrase: overrides.reasonPhrase ?? this.#response.paused?.responseStatusText,
543
- responseHeaders: responseHeaders ?? this.#response.paused?.responseHeaders,
544
- });
545
- this.#responseOverrides = {
546
- statusCode: overrides.statusCode,
547
- headers: overrideHeaders,
548
- };
549
- }
550
- }
551
- async #continueResponse({ responseCode, responsePhrase, responseHeaders, } = {}) {
552
- (0, assert_js_1.assert)(this.#fetchId, 'Network Interception not set-up.');
553
- await this.cdpClient.sendCommand('Fetch.continueResponse', {
554
- requestId: this.#fetchId,
555
- responseCode,
556
- responsePhrase,
557
- responseHeaders,
558
- });
559
- this.#interceptPhase = undefined;
560
- }
561
- /** @see https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueWithAuth */
562
- async continueWithAuth(authChallenge) {
563
- let username;
564
- let password;
565
- if (authChallenge.action === 'provideCredentials') {
566
- const { credentials } = authChallenge;
567
- username = credentials.username;
568
- password = credentials.password;
569
- }
570
- const response = (0, NetworkUtils_js_1.cdpAuthChallengeResponseFromBidiAuthContinueWithAuthAction)(authChallenge.action);
571
- await this.#continueWithAuth({
572
- response,
573
- username,
574
- password,
575
- });
576
- }
577
- /** @see https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-provideResponse */
578
- async provideResponse(overrides) {
579
- (0, assert_js_1.assert)(this.#fetchId, 'Network Interception not set-up.');
580
- // We need to pass through if the request is already in
581
- // AuthRequired phase
582
- if (this.interceptPhase === "authRequired" /* Network.InterceptPhase.AuthRequired */) {
583
- // We need to use `ProvideCredentials`
584
- // As `Default` may cancel the request
585
- return await this.#continueWithAuth({
586
- response: 'ProvideCredentials',
587
- });
588
- }
589
- // If we don't modify the response
590
- // just continue the request
591
- if (!overrides.body && !overrides.headers) {
592
- return await this.#continueRequest();
593
- }
594
- const overrideHeaders = this.#getOverrideHeader(overrides.headers, overrides.cookies);
595
- const responseHeaders = (0, NetworkUtils_js_1.cdpFetchHeadersFromBidiNetworkHeaders)(overrideHeaders);
596
- const responseCode = overrides.statusCode ?? this.#statusCode ?? 200;
597
- await this.cdpClient.sendCommand('Fetch.fulfillRequest', {
598
- requestId: this.#fetchId,
599
- responseCode,
600
- responsePhrase: overrides.reasonPhrase,
601
- responseHeaders,
602
- body: getCdpBodyFromBiDiBytesValue(overrides.body),
603
- });
604
- this.#interceptPhase = undefined;
605
- }
606
- dispose() {
607
- this.waitNextPhase.reject(new Error('waitNextPhase disposed'));
608
- }
609
- async #continueWithAuth(authChallengeResponse) {
610
- (0, assert_js_1.assert)(this.#fetchId, 'Network Interception not set-up.');
611
- await this.cdpClient.sendCommand('Fetch.continueWithAuth', {
612
- requestId: this.#fetchId,
613
- authChallengeResponse,
614
- });
615
- this.#interceptPhase = undefined;
616
- }
617
- #emitEvent(getEvent) {
618
- let event;
619
- try {
620
- event = getEvent();
621
- }
622
- catch (error) {
623
- this.#logger?.(log_js_1.LogType.debugError, error);
624
- return;
625
- }
626
- if (this.#isIgnoredEvent() ||
627
- (this.#emittedEvents[event.method] &&
628
- // Special case this event can be emitted multiple times
629
- event.method !== protocol_js_1.ChromiumBidi.Network.EventNames.AuthRequired)) {
630
- return;
631
- }
632
- this.#phaseChanged();
633
- this.#emittedEvents[event.method] = true;
634
- if (this.#context) {
635
- this.#eventManager.registerEvent(Object.assign(event, {
636
- type: 'event',
637
- }), this.#context);
638
- }
639
- else {
640
- this.#eventManager.registerGlobalEvent(Object.assign(event, {
641
- type: 'event',
642
- }));
643
- }
644
- }
645
- #getBaseEventParams(phase) {
646
- const interceptProps = {
647
- isBlocked: false,
648
- };
649
- if (phase) {
650
- const blockedBy = this.#interceptsInPhase(phase);
651
- interceptProps.isBlocked = blockedBy.size > 0;
652
- if (interceptProps.isBlocked) {
653
- interceptProps.intercepts = [...blockedBy];
654
- }
655
- }
656
- return {
657
- context: this.#context,
658
- navigation: this.#navigationId,
659
- redirectCount: this.#redirectCount,
660
- request: this.#getRequestData(),
661
- // Timestamp should be in milliseconds, while CDP provides it in seconds.
662
- timestamp: Math.round((0, NetworkUtils_js_1.getTiming)(this.#request.info?.wallTime) * 1000),
663
- // Contains isBlocked and intercepts
664
- ...interceptProps,
665
- };
666
- }
667
- #getResponseEventParams() {
668
- // Chromium sends wrong extraInfo events for responses served from cache.
669
- // See https://github.com/puppeteer/puppeteer/issues/9965 and
670
- // https://crbug.com/1340398.
671
- if (this.#response.info?.fromDiskCache) {
672
- this.#response.extraInfo = undefined;
673
- }
674
- // TODO: Also this.#response.paused?.responseHeaders have to be merged here.
675
- const cdpHeaders = this.#response.info?.headers ?? {};
676
- const cdpRawHeaders = this.#response.extraInfo?.headers ?? {};
677
- for (const [key, value] of Object.entries(cdpRawHeaders)) {
678
- cdpHeaders[key] = value;
679
- }
680
- const headers = (0, NetworkUtils_js_1.bidiNetworkHeadersFromCdpNetworkHeaders)(cdpHeaders);
681
- const authChallenges = this.#authChallenges;
682
- const response = {
683
- url: this.url,
684
- protocol: this.#response.info?.protocol ?? '',
685
- status: this.#statusCode ?? -1, // TODO: Throw an exception or use some other status code?
686
- statusText: this.#response.info?.statusText ||
687
- this.#response.paused?.responseStatusText ||
688
- '',
689
- fromCache: this.#response.info?.fromDiskCache ||
690
- this.#response.info?.fromPrefetchCache ||
691
- this.#servedFromCache,
692
- headers: this.#responseOverrides?.headers ?? headers,
693
- mimeType: this.#response.info?.mimeType || '',
694
- // TODO: this should be the size for the entire HTTP response.
695
- bytesReceived: this.encodedResponseBodySize,
696
- headersSize: (0, NetworkUtils_js_1.computeHeadersSize)(headers),
697
- bodySize: this.encodedResponseBodySize,
698
- content: {
699
- size: this.#response.decodedSize ?? 0,
700
- },
701
- ...(authChallenges ? { authChallenges } : {}),
702
- };
703
- return {
704
- ...response,
705
- 'goog:securityDetails': this.#response.info?.securityDetails,
706
- };
707
- }
708
- get encodedResponseBodySize() {
709
- return (this.#response.loadingFinished?.encodedDataLength ??
710
- this.#response.info?.encodedDataLength ??
711
- this.#response.encodedSize ??
712
- 0);
713
- }
714
- #getRequestData() {
715
- const headers = this.#requestHeaders;
716
- const request = {
717
- request: this.#id,
718
- url: this.url,
719
- method: this.#method ?? _a.unknownParameter,
720
- headers,
721
- cookies: this.#cookies,
722
- headersSize: (0, NetworkUtils_js_1.computeHeadersSize)(headers),
723
- bodySize: this.bodySize,
724
- // TODO: populate
725
- destination: this.#getDestination(),
726
- // TODO: populate
727
- initiatorType: this.#getInitiatorType(),
728
- timings: this.#timings,
729
- };
730
- return {
731
- ...request,
732
- 'goog:postData': this.#request.info?.request?.postData,
733
- 'goog:hasPostData': this.#request.info?.request?.hasPostData,
734
- 'goog:resourceType': this.#request.info?.type,
735
- 'goog:resourceInitiator': this.#request.info?.initiator,
736
- };
737
- }
738
- /**
739
- * Heuristic trying to guess the destination.
740
- * Specification: https://fetch.spec.whatwg.org/#concept-request-destination.
741
- * Specified values: "audio", "audioworklet", "document", "embed", "font", "frame",
742
- * "iframe", "image", "json", "manifest", "object", "paintworklet", "report", "script",
743
- * "serviceworker", "sharedworker", "style", "track", "video", "webidentity", "worker",
744
- * "xslt".
745
- */
746
- #getDestination() {
747
- switch (this.#request.info?.type) {
748
- case 'Script':
749
- return 'script';
750
- case 'Stylesheet':
751
- return 'style';
752
- case 'Image':
753
- return 'image';
754
- case 'Document':
755
- // If request to document is initiated by parser, assume it is expected to
756
- // arrive in an iframe. Otherwise, consider it is a navigation and the request
757
- // result will end up in the document.
758
- return this.#request.info?.initiator.type === 'parser'
759
- ? 'iframe'
760
- : 'document';
761
- default:
762
- return '';
763
- }
764
- }
765
- /**
766
- * Heuristic trying to guess the initiator type.
767
- * Specification: https://fetch.spec.whatwg.org/#request-initiator-type.
768
- * Specified values: "audio", "beacon", "body", "css", "early-hints", "embed", "fetch",
769
- * "font", "frame", "iframe", "image", "img", "input", "link", "object", "ping",
770
- * "script", "track", "video", "xmlhttprequest", "other".
771
- */
772
- #getInitiatorType() {
773
- if (this.#request.info?.initiator.type === 'parser') {
774
- switch (this.#request.info?.type) {
775
- case 'Document':
776
- // The request to document is initiated by the parser. Assuming it's an iframe.
777
- return 'iframe';
778
- case 'Font':
779
- // If the document's url is not the parser's url, assume the resource is loaded
780
- // from css. Otherwise, it's a `font` element.
781
- return this.#request.info?.initiator?.url ===
782
- this.#request.info?.documentURL
783
- ? 'font'
784
- : 'css';
785
- case 'Image':
786
- // If the document's url is not the parser's url, assume the resource is loaded
787
- // from css. Otherwise, it's a `img` element.
788
- return this.#request.info?.initiator?.url ===
789
- this.#request.info?.documentURL
790
- ? 'img'
791
- : 'css';
792
- case 'Script':
793
- return 'script';
794
- case 'Stylesheet':
795
- return 'link';
796
- default:
797
- return null;
798
- }
799
- }
800
- if (this.#request?.info?.type === 'Fetch') {
801
- return 'fetch';
802
- }
803
- return null;
804
- }
805
- #getBeforeRequestEvent() {
806
- (0, assert_js_1.assert)(this.#request.info, 'RequestWillBeSentEvent is not set');
807
- return {
808
- method: protocol_js_1.ChromiumBidi.Network.EventNames.BeforeRequestSent,
809
- params: {
810
- ...this.#getBaseEventParams("beforeRequestSent" /* Network.InterceptPhase.BeforeRequestSent */),
811
- initiator: {
812
- type: _a.#getInitiator(this.#request.info.initiator.type),
813
- columnNumber: this.#request.info.initiator.columnNumber,
814
- lineNumber: this.#request.info.initiator.lineNumber,
815
- stackTrace: this.#request.info.initiator.stack,
816
- request: this.#request.info.initiator.requestId,
817
- },
818
- },
819
- };
820
- }
821
- #getResponseStartedEvent() {
822
- return {
823
- method: protocol_js_1.ChromiumBidi.Network.EventNames.ResponseStarted,
824
- params: {
825
- ...this.#getBaseEventParams("responseStarted" /* Network.InterceptPhase.ResponseStarted */),
826
- response: this.#getResponseEventParams(),
827
- },
828
- };
829
- }
830
- #getResponseReceivedEvent() {
831
- return {
832
- method: protocol_js_1.ChromiumBidi.Network.EventNames.ResponseCompleted,
833
- params: {
834
- ...this.#getBaseEventParams(),
835
- response: this.#getResponseEventParams(),
836
- },
837
- };
838
- }
839
- #isIgnoredEvent() {
840
- const faviconUrl = '/favicon.ico';
841
- return (this.#request.paused?.request.url.endsWith(faviconUrl) ??
842
- this.#request.info?.request.url.endsWith(faviconUrl) ??
843
- false);
844
- }
845
- #getOverrideHeader(headers, cookies) {
846
- if (!headers && !cookies) {
847
- return undefined;
848
- }
849
- let overrideHeaders = headers;
850
- const cookieHeader = (0, NetworkUtils_js_1.networkHeaderFromCookieHeaders)(cookies);
851
- if (cookieHeader && !overrideHeaders) {
852
- overrideHeaders = this.#requestHeaders;
853
- }
854
- if (cookieHeader && overrideHeaders) {
855
- overrideHeaders.filter((header) => header.name.localeCompare('cookie', undefined, {
856
- sensitivity: 'base',
857
- }) !== 0);
858
- overrideHeaders.push(cookieHeader);
859
- }
860
- return overrideHeaders;
861
- }
862
- static #getInitiator(initiatorType) {
863
- switch (initiatorType) {
864
- case 'parser':
865
- case 'script':
866
- case 'preflight':
867
- return initiatorType;
868
- default:
869
- return 'other';
870
- }
871
- }
872
- }
873
- exports.NetworkRequest = NetworkRequest;
874
- _a = NetworkRequest;
875
- function getCdpBodyFromBiDiBytesValue(body) {
876
- let parsedBody;
877
- if (body?.type === 'string') {
878
- parsedBody = (0, NetworkUtils_js_1.stringToBase64)(body.value);
879
- }
880
- else if (body?.type === 'base64') {
881
- parsedBody = body.value;
882
- }
883
- return parsedBody;
884
- }
885
- function getSizeFromBiDiBytesValue(body) {
886
- if (body?.type === 'string') {
887
- return body.value.length;
888
- }
889
- else if (body?.type === 'base64') {
890
- return atob(body.value).length;
891
- }
892
- return 0;
893
- }
894
- //# sourceMappingURL=NetworkRequest.js.map