conductor-oss 0.61.9 → 0.61.11

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 (1064) hide show
  1. package/LICENSE +202 -21
  2. package/README.md +15 -0
  3. package/node_modules/@conductor-oss/core/package.json +1 -1
  4. package/package.json +10 -10
  5. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/CLI.js +415 -0
  6. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/Cache.js +208 -0
  7. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/ProgressBar.js +143 -0
  8. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/browser-data.js +235 -0
  9. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/chrome.js +302 -0
  10. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/types.js +72 -0
  11. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/debug.js +11 -0
  12. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/fileUtil.js +316 -0
  13. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/httpUtil.js +176 -0
  14. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/install.js +349 -0
  15. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/launch.js +426 -0
  16. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/main.js +15 -0
  17. package/web/.next/standalone/node_modules/@puppeteer/browsers/package.json +31 -49
  18. package/web/.next/standalone/node_modules/ansi-styles/index.js +190 -130
  19. package/web/.next/standalone/node_modules/ansi-styles/package.json +8 -10
  20. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiMapper.js +25 -0
  21. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiNoOpParser.js +276 -0
  22. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiServer.js +165 -0
  23. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/CommandProcessor.js +327 -0
  24. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/OutgoingMessage.js +48 -0
  25. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/bluetooth/BluetoothProcessor.js +407 -0
  26. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/BrowserProcessor.js +289 -0
  27. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/ContextConfig.js +71 -0
  28. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/ContextConfigStorage.js +92 -0
  29. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/UserContextStorage.js +52 -0
  30. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpProcessor.js +56 -0
  31. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpTarget.js +693 -0
  32. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpTargetManager.js +248 -0
  33. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextImpl.js +1447 -0
  34. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextProcessor.js +263 -0
  35. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextStorage.js +130 -0
  36. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/NavigationTracker.js +325 -0
  37. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/emulation/EmulationProcessor.js +397 -0
  38. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/ActionDispatcher.js +740 -0
  39. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputProcessor.js +190 -0
  40. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputSource.js +154 -0
  41. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputState.js +89 -0
  42. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputStateManager.js +30 -0
  43. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/USKeyboardLayout.js +271 -0
  44. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/keyUtils.js +492 -0
  45. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/log/LogManager.js +183 -0
  46. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/log/logHelper.js +168 -0
  47. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/CollectorsStorage.js +149 -0
  48. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkProcessor.js +541 -0
  49. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkRequest.js +890 -0
  50. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkStorage.js +349 -0
  51. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkUtils.js +303 -0
  52. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/permissions/PermissionsProcessor.js +51 -0
  53. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/ChannelProxy.js +231 -0
  54. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/PreloadScript.js +129 -0
  55. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/PreloadScriptStorage.js +75 -0
  56. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/Realm.js +481 -0
  57. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/RealmStorage.js +78 -0
  58. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/ScriptProcessor.js +132 -0
  59. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/SharedId.js +70 -0
  60. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/WindowRealm.js +142 -0
  61. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/WorkerRealm.js +66 -0
  62. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/EventManager.js +265 -0
  63. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/SessionProcessor.js +127 -0
  64. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/SubscriptionManager.js +266 -0
  65. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/events.js +33 -0
  66. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/speculation/SpeculationProcessor.js +58 -0
  67. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/storage/StorageProcessor.js +191 -0
  68. package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/webExtension/WebExtensionProcessor.js +65 -0
  69. package/web/.next/standalone/node_modules/chromium-bidi/lib/index.js +19 -0
  70. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/ErrorResponse.js +166 -0
  71. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/cdp.js +2 -0
  72. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/chromium-bidi.js +124 -0
  73. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-bluetooth.js +18 -0
  74. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-nav-speculation.js +18 -0
  75. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-permissions.js +18 -0
  76. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-ua-client-hints.js +18 -0
  77. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi.js +18 -0
  78. package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/protocol.js +26 -0
  79. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Buffer.js +43 -0
  80. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/DefaultMap.js +36 -0
  81. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Deferred.js +67 -0
  82. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/EventEmitter.js +67 -0
  83. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/IdWrapper.js +30 -0
  84. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Mutex.js +64 -0
  85. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/ProcessingQueue.js +63 -0
  86. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/assert.js +22 -0
  87. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/base64.js +32 -0
  88. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/graphemeTools.js +34 -0
  89. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/log.js +28 -0
  90. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/time.js +24 -0
  91. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/unitConversions.js +21 -0
  92. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/urlHelpers.js +49 -0
  93. package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/uuid.js +61 -0
  94. package/web/.next/standalone/node_modules/chromium-bidi/package.json +219 -0
  95. package/web/.next/standalone/node_modules/cliui/build/lib/index.js +2 -2
  96. package/web/.next/standalone/node_modules/cliui/index.mjs +7 -5
  97. package/web/.next/standalone/node_modules/cliui/node_modules/string-width/index.js +56 -21
  98. package/web/.next/standalone/node_modules/cliui/node_modules/string-width/package.json +18 -10
  99. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/index.js +19 -0
  100. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
  101. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
  102. package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/package.json +59 -0
  103. package/web/.next/standalone/node_modules/cliui/package.json +20 -31
  104. package/web/.next/standalone/node_modules/emoji-regex/index.js +3 -5
  105. package/web/.next/standalone/node_modules/emoji-regex/package.json +43 -48
  106. package/web/.next/standalone/node_modules/get-east-asian-width/index.js +30 -0
  107. package/web/.next/standalone/node_modules/get-east-asian-width/lookup-data.js +18 -0
  108. package/web/.next/standalone/node_modules/get-east-asian-width/lookup.js +135 -0
  109. package/web/.next/standalone/node_modules/get-east-asian-width/package.json +71 -0
  110. package/web/.next/standalone/node_modules/get-east-asian-width/utilities.js +24 -0
  111. package/web/.next/standalone/node_modules/mitt/dist/mitt.mjs +2 -0
  112. package/web/.next/standalone/node_modules/modern-tar/dist/fs/index.js +746 -0
  113. package/web/.next/standalone/node_modules/modern-tar/dist/unpacker-CPCEF5CT.js +636 -0
  114. package/web/.next/standalone/node_modules/modern-tar/package.json +65 -0
  115. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Browser.js +196 -0
  116. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/BrowserContext.js +183 -0
  117. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/HTTPRequest.js +465 -0
  118. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/JSHandle.js +220 -0
  119. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Page.js +1512 -0
  120. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Target.js +49 -0
  121. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/WebWorker.js +134 -0
  122. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/locators/locators.js +799 -0
  123. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BidiOverCdp.js +146 -0
  124. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Browser.js +342 -0
  125. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BrowserConnector.js +86 -0
  126. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BrowserContext.js +382 -0
  127. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Connection.js +160 -0
  128. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Deserializer.js +80 -0
  129. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/ExposedFunction.js +261 -0
  130. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Frame.js +469 -0
  131. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/HTTPResponse.js +170 -0
  132. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Page.js +977 -0
  133. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Realm.js +340 -0
  134. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Browser.js +353 -0
  135. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/BrowsingContext.js +639 -0
  136. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Navigation.js +168 -0
  137. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Realm.js +302 -0
  138. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Request.js +308 -0
  139. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Session.js +178 -0
  140. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/UserContext.js +207 -0
  141. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/UserPrompt.js +132 -0
  142. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Accessibility.js +591 -0
  143. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Binding.js +162 -0
  144. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Browser.js +404 -0
  145. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/BrowserConnector.js +26 -0
  146. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/BrowserContext.js +190 -0
  147. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/CdpSession.js +144 -0
  148. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Connection.js +268 -0
  149. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Coverage.js +372 -0
  150. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/ElementHandle.js +207 -0
  151. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/EmulationManager.js +479 -0
  152. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/ExecutionContext.js +458 -0
  153. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Extension.js +73 -0
  154. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Frame.js +373 -0
  155. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/FrameManager.js +505 -0
  156. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/HTTPRequest.js +195 -0
  157. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/HTTPResponse.js +130 -0
  158. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Input.js +497 -0
  159. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/JSHandle.js +101 -0
  160. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/NetworkManager.js +609 -0
  161. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Page.js +1036 -0
  162. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Target.js +252 -0
  163. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/TargetManager.js +431 -0
  164. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/WebMCP.js +276 -0
  165. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/WebWorker.js +113 -0
  166. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/BrowserConnector.js +150 -0
  167. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/BrowserWebSocketTransport.js +40 -0
  168. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/CallbackRegistry.js +136 -0
  169. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/Debug.js +100 -0
  170. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/EventEmitter.js +135 -0
  171. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/util.js +382 -0
  172. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/environment.js +26 -0
  173. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/generated/injected.js +9 -0
  174. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/BrowserLauncher.js +327 -0
  175. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/ChromeLauncher.js +278 -0
  176. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/FirefoxLauncher.js +167 -0
  177. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/NodeWebSocketTransport.js +56 -0
  178. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/PipeTransport.js +72 -0
  179. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/PuppeteerNode.js +254 -0
  180. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/ScreenRecorder.js +309 -0
  181. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node-env-setup.js +16 -0
  182. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/puppeteer-core.js +36 -0
  183. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/revisions.js +14 -0
  184. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/Mutex.js +50 -0
  185. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/httpUtils.js +24 -0
  186. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/util.js +14 -0
  187. package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/version.js +10 -0
  188. package/web/.next/standalone/node_modules/puppeteer-core/package.json +22 -24
  189. package/web/.next/standalone/node_modules/wrap-ansi/index.js +30 -24
  190. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/string-width/index.js +56 -21
  191. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/string-width/package.json +18 -10
  192. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +19 -0
  193. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
  194. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
  195. package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +59 -0
  196. package/web/.next/standalone/node_modules/wrap-ansi/package.json +20 -13
  197. package/web/.next/standalone/node_modules/yargs/build/lib/command.js +55 -25
  198. package/web/.next/standalone/node_modules/yargs/build/lib/completion-templates.js +14 -5
  199. package/web/.next/standalone/node_modules/yargs/build/lib/utils/apply-extends.js +2 -2
  200. package/web/.next/standalone/node_modules/yargs/build/lib/yargs-factory.js +25 -20
  201. package/web/.next/standalone/node_modules/yargs/index.mjs +2 -0
  202. package/web/.next/standalone/node_modules/yargs/lib/platform-shims/esm.mjs +19 -25
  203. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/index.js +56 -21
  204. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/index.js +19 -0
  205. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
  206. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
  207. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/package.json +59 -0
  208. package/web/.next/standalone/node_modules/yargs/node_modules/string-width/package.json +18 -10
  209. package/web/.next/standalone/node_modules/yargs/package.json +30 -50
  210. package/web/.next/standalone/node_modules/yargs-parser/build/lib/index.js +6 -4
  211. package/web/.next/standalone/node_modules/yargs-parser/build/lib/yargs-parser.js +1 -0
  212. package/web/.next/standalone/node_modules/yargs-parser/package.json +25 -39
  213. package/web/.next/standalone/package.json +2 -2
  214. package/web/.next/standalone/packages/web/.next/BUILD_ID +1 -1
  215. package/web/.next/standalone/packages/web/.next/app-path-routes-manifest.json +6 -6
  216. package/web/.next/standalone/packages/web/.next/build-manifest.json +3 -3
  217. package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
  218. package/web/.next/standalone/packages/web/.next/react-loadable-manifest.json +48 -49
  219. package/web/.next/standalone/packages/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  220. package/web/.next/standalone/packages/web/.next/server/app/_global-error.html +1 -1
  221. package/web/.next/standalone/packages/web/.next/server/app/_global-error.rsc +1 -1
  222. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  223. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
  224. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
  225. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  226. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  227. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  228. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js +1 -1
  229. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  230. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  231. package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js +1 -1
  232. package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/bindings/route.js +1 -1
  233. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js.nft.json +1 -1
  234. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js.nft.json +1 -1
  235. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js.nft.json +1 -1
  236. package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page.js +2 -2
  237. package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page.js.nft.json +1 -1
  238. package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page_client-reference-manifest.js +1 -1
  239. package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js +1 -1
  240. package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js.nft.json +1 -1
  241. package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page_client-reference-manifest.js +1 -1
  242. package/web/.next/standalone/packages/web/.next/server/app/page.js +2 -2
  243. package/web/.next/standalone/packages/web/.next/server/app/page.js.nft.json +1 -1
  244. package/web/.next/standalone/packages/web/.next/server/app/page_client-reference-manifest.js +1 -1
  245. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js +2 -2
  246. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js.nft.json +1 -1
  247. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page_client-reference-manifest.js +1 -1
  248. package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page.js +1 -1
  249. package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page.js.nft.json +1 -1
  250. package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page_client-reference-manifest.js +1 -1
  251. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js +2 -2
  252. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js.nft.json +1 -1
  253. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page_client-reference-manifest.js +1 -1
  254. package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page.js +1 -1
  255. package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page.js.nft.json +1 -1
  256. package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page_client-reference-manifest.js +1 -1
  257. package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page.js +1 -1
  258. package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page.js.nft.json +1 -1
  259. package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page_client-reference-manifest.js +1 -1
  260. package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page.js +2 -2
  261. package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page.js.nft.json +1 -1
  262. package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page_client-reference-manifest.js +1 -1
  263. package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js +2 -2
  264. package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js.nft.json +1 -1
  265. package/web/.next/standalone/packages/web/.next/server/app/unlock/page_client-reference-manifest.js +1 -1
  266. package/web/.next/standalone/packages/web/.next/server/app-paths-manifest.json +6 -6
  267. package/web/.next/standalone/packages/web/.next/server/chunks/137.js +1 -0
  268. package/web/.next/standalone/packages/web/.next/server/chunks/1874.js +3 -0
  269. package/web/.next/standalone/packages/web/.next/server/chunks/1883.js +1 -0
  270. package/web/.next/standalone/packages/web/.next/server/chunks/2512.js +3 -3
  271. package/web/.next/standalone/packages/web/.next/server/chunks/2939.js +1 -0
  272. package/web/.next/standalone/packages/web/.next/server/chunks/3303.js +1 -0
  273. package/web/.next/standalone/packages/web/.next/server/chunks/3337.js +1 -0
  274. package/web/.next/standalone/packages/web/.next/server/chunks/4013.js +1 -0
  275. package/web/.next/standalone/packages/web/.next/server/chunks/4884.js +1 -0
  276. package/web/.next/standalone/packages/web/.next/server/chunks/6472.js +1 -0
  277. package/web/.next/standalone/packages/web/.next/server/chunks/694.js +1 -1
  278. package/web/.next/standalone/packages/web/.next/server/chunks/7055.js +1 -0
  279. package/web/.next/standalone/packages/web/.next/server/chunks/7094.js +3 -0
  280. package/web/.next/standalone/packages/web/.next/server/chunks/724.js +1 -0
  281. package/web/.next/standalone/packages/web/.next/server/chunks/7481.js +1 -0
  282. package/web/.next/standalone/packages/web/.next/server/chunks/7611.js +1 -0
  283. package/web/.next/standalone/packages/web/.next/server/chunks/7801.js +1 -0
  284. package/web/.next/standalone/packages/web/.next/server/chunks/9455.js +1 -1
  285. package/web/.next/standalone/packages/web/.next/server/chunks/9516.js +1 -0
  286. package/web/.next/standalone/packages/web/.next/server/chunks/9787.js +7 -0
  287. package/web/.next/standalone/packages/web/.next/server/chunks/9928.js +1 -0
  288. package/web/.next/standalone/packages/web/.next/server/middleware-build-manifest.js +1 -1
  289. package/web/.next/standalone/packages/web/.next/server/middleware-react-loadable-manifest.js +1 -1
  290. package/web/.next/standalone/packages/web/.next/server/pages/500.html +1 -1
  291. package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.js +1 -1
  292. package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.json +1 -1
  293. package/web/.next/standalone/packages/web/.next/static/chunks/10647.dfc61f0fe6cce983.js +1 -0
  294. package/web/.next/standalone/packages/web/.next/static/chunks/13831.066db0713c1a8852.js +1 -0
  295. package/web/.next/standalone/packages/web/.next/static/chunks/1464.88b2bdd29a78b74c.js +5 -0
  296. package/web/.next/standalone/packages/web/.next/static/chunks/19406.fee033bf442e8f76.js +1 -0
  297. package/web/.next/standalone/packages/web/.next/static/chunks/20038.7f2549911927bd0b.js +1 -0
  298. package/web/.next/standalone/packages/web/.next/static/chunks/20135-ff1df49b419ae77c.js +1 -0
  299. package/web/.next/standalone/packages/web/.next/static/chunks/22799.b575f4c8704f662f.js +1 -0
  300. package/web/.next/standalone/packages/web/.next/static/chunks/24315.817fd4bf4fecb10b.js +1 -0
  301. package/web/.next/standalone/packages/web/.next/static/chunks/26866.c9243462e80e9f63.js +1 -0
  302. package/web/.next/standalone/packages/web/.next/static/chunks/26878.58289178165f69c1.js +1 -0
  303. package/web/.next/standalone/packages/web/.next/static/chunks/2818.b02f469acda3daaf.js +1 -0
  304. package/web/.next/standalone/packages/web/.next/static/chunks/28386-0121205400994756.js +1 -0
  305. package/web/.next/standalone/packages/web/.next/static/chunks/30690.c24f9bd9ab7a7001.js +1 -0
  306. package/web/.next/standalone/packages/web/.next/static/chunks/34443.b588efc498117631.js +1 -0
  307. package/web/.next/standalone/packages/web/.next/static/chunks/36902.095f4090617a3ff1.js +1 -0
  308. package/web/.next/standalone/packages/web/.next/static/chunks/37520.6c1f598cd71bd32b.js +1 -0
  309. package/web/.next/standalone/packages/web/.next/static/chunks/37668.c044dfe4830a476e.js +1 -0
  310. package/web/.next/standalone/packages/web/.next/static/chunks/37990.673cfa77e60e5e2b.js +1 -0
  311. package/web/.next/standalone/packages/web/.next/static/chunks/39816.a3835fb513390d7c.js +1 -0
  312. package/web/.next/standalone/packages/web/.next/static/chunks/41696.08fe09203aaf1a18.js +1 -0
  313. package/web/.next/standalone/packages/web/.next/static/chunks/41998.bc97faec5c455d54.js +1 -0
  314. package/web/.next/standalone/packages/web/.next/static/chunks/50706.12afd1d75235ca72.js +3 -0
  315. package/web/.next/standalone/packages/web/.next/static/chunks/55623.9f20d295e46beb7f.js +1 -0
  316. package/web/.next/standalone/packages/web/.next/static/chunks/590.d15040dc892eee17.js +1 -0
  317. package/web/.next/standalone/packages/web/.next/static/chunks/61782-6b51990ebb9460df.js +3 -0
  318. package/web/.next/standalone/packages/web/.next/static/chunks/62033.4ca9d0e612fa4381.js +1 -0
  319. package/web/.next/standalone/packages/web/.next/static/chunks/62184-538ffd18551c1091.js +1 -0
  320. package/web/.next/standalone/packages/web/.next/static/chunks/6356.863082dbc37f37c9.js +1 -0
  321. package/web/.next/standalone/packages/web/.next/static/chunks/652.af23595a550d8a34.js +1 -0
  322. package/web/.next/standalone/packages/web/.next/static/chunks/65453.1185ea14d9fff243.js +1 -0
  323. package/web/.next/standalone/packages/web/.next/static/chunks/68782-315b8f48de9c721c.js +3 -0
  324. package/web/.next/standalone/packages/web/.next/static/chunks/79593-77722bc354e71d2d.js +9 -0
  325. package/web/.next/standalone/packages/web/.next/static/chunks/81132.bfc52d50d21324b2.js +3 -0
  326. package/web/.next/standalone/packages/web/.next/static/chunks/83742.2a0531011c4978a3.js +1 -0
  327. package/web/.next/standalone/packages/web/.next/static/chunks/84271-7ad3504a93aa940e.js +2 -0
  328. package/web/.next/standalone/packages/web/.next/static/chunks/85066-3ed0d5789153e6f9.js +1 -0
  329. package/web/.next/standalone/packages/web/.next/static/chunks/88742.2b2e614444c9020a.js +1 -0
  330. package/web/.next/standalone/packages/web/.next/static/chunks/9016-2b7d7b8b143a8323.js +1 -0
  331. package/web/.next/standalone/packages/web/.next/static/chunks/92333.f198a097718e9120.js +1 -0
  332. package/web/.next/standalone/packages/web/.next/static/chunks/93514.84c566792ef9f58c.js +1 -0
  333. package/web/.next/standalone/packages/web/.next/static/chunks/96983.dff4ffcf73043d2b.js +1 -0
  334. package/web/.next/standalone/packages/web/.next/static/chunks/97331-be3cf2d134454808.js +1 -0
  335. package/web/.next/standalone/packages/web/.next/static/chunks/app/bridge/connect/page-623bf132b6d6a328.js +1 -0
  336. package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-d8442063363cd23f.js +1 -0
  337. package/web/.next/standalone/packages/web/.next/static/chunks/app/page-a82e7b0e3e80ff3e.js +1 -0
  338. package/web/.next/standalone/packages/web/.next/static/chunks/app/sessions/[id]/page-aeb1ccc1a89248d5.js +1 -0
  339. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4a9fbf697a2c3836.js +9 -0
  340. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-6685d715ddb4ae5d.js +9 -0
  341. package/web/.next/standalone/packages/web/.next/static/chunks/app/unlock/page-4f87395d3035a5bf.js +1 -0
  342. package/web/.next/standalone/packages/web/.next/static/chunks/webpack-0e8d1852742b5ee1.js +1 -0
  343. package/web/.next/standalone/packages/web/package.json +5 -5
  344. package/web/.next/static/chunks/10647.dfc61f0fe6cce983.js +1 -0
  345. package/web/.next/static/chunks/13831.066db0713c1a8852.js +1 -0
  346. package/web/.next/static/chunks/1464.88b2bdd29a78b74c.js +5 -0
  347. package/web/.next/static/chunks/19406.fee033bf442e8f76.js +1 -0
  348. package/web/.next/static/chunks/20038.7f2549911927bd0b.js +1 -0
  349. package/web/.next/static/chunks/20135-ff1df49b419ae77c.js +1 -0
  350. package/web/.next/static/chunks/22799.b575f4c8704f662f.js +1 -0
  351. package/web/.next/static/chunks/24315.817fd4bf4fecb10b.js +1 -0
  352. package/web/.next/static/chunks/26866.c9243462e80e9f63.js +1 -0
  353. package/web/.next/static/chunks/26878.58289178165f69c1.js +1 -0
  354. package/web/.next/static/chunks/2818.b02f469acda3daaf.js +1 -0
  355. package/web/.next/static/chunks/28386-0121205400994756.js +1 -0
  356. package/web/.next/static/chunks/30690.c24f9bd9ab7a7001.js +1 -0
  357. package/web/.next/static/chunks/34443.b588efc498117631.js +1 -0
  358. package/web/.next/static/chunks/36902.095f4090617a3ff1.js +1 -0
  359. package/web/.next/static/chunks/37520.6c1f598cd71bd32b.js +1 -0
  360. package/web/.next/static/chunks/37668.c044dfe4830a476e.js +1 -0
  361. package/web/.next/static/chunks/37990.673cfa77e60e5e2b.js +1 -0
  362. package/web/.next/static/chunks/39816.a3835fb513390d7c.js +1 -0
  363. package/web/.next/static/chunks/41696.08fe09203aaf1a18.js +1 -0
  364. package/web/.next/static/chunks/41998.bc97faec5c455d54.js +1 -0
  365. package/web/.next/static/chunks/50706.12afd1d75235ca72.js +3 -0
  366. package/web/.next/static/chunks/55623.9f20d295e46beb7f.js +1 -0
  367. package/web/.next/static/chunks/590.d15040dc892eee17.js +1 -0
  368. package/web/.next/static/chunks/61782-6b51990ebb9460df.js +3 -0
  369. package/web/.next/static/chunks/62033.4ca9d0e612fa4381.js +1 -0
  370. package/web/.next/static/chunks/62184-538ffd18551c1091.js +1 -0
  371. package/web/.next/static/chunks/6356.863082dbc37f37c9.js +1 -0
  372. package/web/.next/static/chunks/652.af23595a550d8a34.js +1 -0
  373. package/web/.next/static/chunks/65453.1185ea14d9fff243.js +1 -0
  374. package/web/.next/static/chunks/68782-315b8f48de9c721c.js +3 -0
  375. package/web/.next/static/chunks/79593-77722bc354e71d2d.js +9 -0
  376. package/web/.next/static/chunks/81132.bfc52d50d21324b2.js +3 -0
  377. package/web/.next/static/chunks/83742.2a0531011c4978a3.js +1 -0
  378. package/web/.next/static/chunks/84271-7ad3504a93aa940e.js +2 -0
  379. package/web/.next/static/chunks/85066-3ed0d5789153e6f9.js +1 -0
  380. package/web/.next/static/chunks/88742.2b2e614444c9020a.js +1 -0
  381. package/web/.next/static/chunks/9016-2b7d7b8b143a8323.js +1 -0
  382. package/web/.next/static/chunks/92333.f198a097718e9120.js +1 -0
  383. package/web/.next/static/chunks/93514.84c566792ef9f58c.js +1 -0
  384. package/web/.next/static/chunks/96983.dff4ffcf73043d2b.js +1 -0
  385. package/web/.next/static/chunks/97331-be3cf2d134454808.js +1 -0
  386. package/web/.next/static/chunks/app/bridge/connect/page-623bf132b6d6a328.js +1 -0
  387. package/web/.next/static/chunks/app/layout-d8442063363cd23f.js +1 -0
  388. package/web/.next/static/chunks/app/page-a82e7b0e3e80ff3e.js +1 -0
  389. package/web/.next/static/chunks/app/sessions/[id]/page-aeb1ccc1a89248d5.js +1 -0
  390. package/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4a9fbf697a2c3836.js +9 -0
  391. package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-6685d715ddb4ae5d.js +9 -0
  392. package/web/.next/static/chunks/app/unlock/page-4f87395d3035a5bf.js +1 -0
  393. package/web/.next/static/chunks/webpack-0e8d1852742b5ee1.js +1 -0
  394. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/CLI.js +0 -375
  395. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/Cache.js +0 -216
  396. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/DefaultProvider.js +0 -39
  397. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.js +0 -279
  398. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.js +0 -58
  399. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.js +0 -313
  400. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.js +0 -54
  401. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.js +0 -73
  402. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.js +0 -388
  403. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/types.js +0 -66
  404. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/debug.js +0 -14
  405. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/detectPlatform.js +0 -53
  406. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/fileUtil.js +0 -196
  407. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/httpUtil.js +0 -172
  408. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/install.js +0 -362
  409. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/launch.js +0 -439
  410. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/main.js +0 -45
  411. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/provider.js +0 -16
  412. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/CLI.js +0 -338
  413. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/Cache.js +0 -208
  414. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.js +0 -235
  415. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome.js +0 -296
  416. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/types.js +0 -63
  417. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/debug.js +0 -8
  418. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/fileUtil.js +0 -156
  419. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/httpUtil.js +0 -132
  420. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/install.js +0 -351
  421. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/launch.js +0 -426
  422. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/main.js +0 -15
  423. package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/package.json +0 -1
  424. package/web/.next/standalone/node_modules/ansi-regex/index.js +0 -10
  425. package/web/.next/standalone/node_modules/ansi-regex/package.json +0 -55
  426. package/web/.next/standalone/node_modules/b4a/index.js +0 -188
  427. package/web/.next/standalone/node_modules/b4a/package.json +0 -49
  428. package/web/.next/standalone/node_modules/bare-events/index.js +0 -367
  429. package/web/.next/standalone/node_modules/bare-events/lib/errors.js +0 -26
  430. package/web/.next/standalone/node_modules/bare-events/package.json +0 -61
  431. package/web/.next/standalone/node_modules/buffer-crc32/index.js +0 -111
  432. package/web/.next/standalone/node_modules/buffer-crc32/package.json +0 -39
  433. package/web/.next/standalone/node_modules/cliui/build/index.cjs +0 -302
  434. package/web/.next/standalone/node_modules/cliui/build/lib/string-utils.js +0 -27
  435. package/web/.next/standalone/node_modules/color-convert/conversions.js +0 -839
  436. package/web/.next/standalone/node_modules/color-convert/index.js +0 -81
  437. package/web/.next/standalone/node_modules/color-convert/package.json +0 -48
  438. package/web/.next/standalone/node_modules/color-convert/route.js +0 -97
  439. package/web/.next/standalone/node_modules/color-name/index.js +0 -152
  440. package/web/.next/standalone/node_modules/color-name/package.json +0 -28
  441. package/web/.next/standalone/node_modules/end-of-stream/index.js +0 -96
  442. package/web/.next/standalone/node_modules/end-of-stream/package.json +0 -37
  443. package/web/.next/standalone/node_modules/events-universal/default.js +0 -1
  444. package/web/.next/standalone/node_modules/events-universal/index.js +0 -1
  445. package/web/.next/standalone/node_modules/events-universal/package.json +0 -39
  446. package/web/.next/standalone/node_modules/extract-zip/index.js +0 -173
  447. package/web/.next/standalone/node_modules/extract-zip/package.json +0 -80
  448. package/web/.next/standalone/node_modules/fast-fifo/fixed-size.js +0 -39
  449. package/web/.next/standalone/node_modules/fast-fifo/index.js +0 -48
  450. package/web/.next/standalone/node_modules/fast-fifo/package.json +0 -28
  451. package/web/.next/standalone/node_modules/get-stream/buffer-stream.js +0 -52
  452. package/web/.next/standalone/node_modules/get-stream/index.js +0 -60
  453. package/web/.next/standalone/node_modules/get-stream/package.json +0 -50
  454. package/web/.next/standalone/node_modules/is-fullwidth-code-point/index.js +0 -50
  455. package/web/.next/standalone/node_modules/is-fullwidth-code-point/package.json +0 -42
  456. package/web/.next/standalone/node_modules/once/once.js +0 -42
  457. package/web/.next/standalone/node_modules/once/package.json +0 -33
  458. package/web/.next/standalone/node_modules/pend/index.js +0 -55
  459. package/web/.next/standalone/node_modules/pend/package.json +0 -18
  460. package/web/.next/standalone/node_modules/progress/index.js +0 -1
  461. package/web/.next/standalone/node_modules/progress/lib/node-progress.js +0 -236
  462. package/web/.next/standalone/node_modules/progress/package.json +0 -26
  463. package/web/.next/standalone/node_modules/pump/index.js +0 -86
  464. package/web/.next/standalone/node_modules/pump/package.json +0 -30
  465. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Browser.js +0 -208
  466. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/BrowserContext.js +0 -187
  467. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/CDPSession.js +0 -72
  468. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/DeviceRequestPrompt.js +0 -38
  469. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Dialog.js +0 -94
  470. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.js +0 -1410
  471. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandleSymbol.js +0 -13
  472. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Extension.js +0 -88
  473. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.js +0 -907
  474. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPRequest.js +0 -467
  475. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPResponse.js +0 -60
  476. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.js +0 -217
  477. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/JSHandle.js +0 -230
  478. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.js +0 -1516
  479. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Realm.js +0 -76
  480. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Target.js +0 -53
  481. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.js +0 -124
  482. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/api.js +0 -39
  483. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/locators/locators.js +0 -809
  484. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BidiOverCdp.js +0 -182
  485. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BluetoothEmulation.js +0 -42
  486. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Browser.js +0 -345
  487. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserConnector.js +0 -120
  488. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserContext.js +0 -385
  489. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/CDPSession.js +0 -94
  490. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Connection.js +0 -164
  491. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Deserializer.js +0 -84
  492. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/DeviceRequestPrompt.js +0 -90
  493. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Dialog.js +0 -28
  494. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ElementHandle.js +0 -222
  495. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ExposedFunction.js +0 -265
  496. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Frame.js +0 -472
  497. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/HTTPRequest.js +0 -257
  498. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/HTTPResponse.js +0 -171
  499. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Input.js +0 -634
  500. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/JSHandle.js +0 -75
  501. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Page.js +0 -986
  502. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Realm.js +0 -346
  503. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Serializer.js +0 -125
  504. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Target.js +0 -153
  505. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/WebWorker.js +0 -38
  506. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/bidi.js +0 -34
  507. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Browser.js +0 -356
  508. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +0 -638
  509. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Navigation.js +0 -171
  510. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Realm.js +0 -308
  511. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Request.js +0 -311
  512. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Session.js +0 -181
  513. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/UserContext.js +0 -210
  514. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/UserPrompt.js +0 -135
  515. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/util.js +0 -145
  516. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Accessibility.js +0 -595
  517. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Binding.js +0 -166
  518. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BluetoothEmulation.js +0 -30
  519. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Browser.js +0 -392
  520. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserConnector.js +0 -29
  521. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserContext.js +0 -196
  522. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpIssue.js +0 -27
  523. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpPreloadScript.js +0 -43
  524. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpSession.js +0 -133
  525. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Connection.js +0 -249
  526. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Coverage.js +0 -378
  527. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +0 -156
  528. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Dialog.js +0 -27
  529. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ElementHandle.js +0 -210
  530. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/EmulationManager.js +0 -462
  531. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExecutionContext.js +0 -462
  532. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Extension.js +0 -79
  533. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExtensionTransport.js +0 -179
  534. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Frame.js +0 -377
  535. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManager.js +0 -499
  536. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManagerEvents.js +0 -27
  537. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameTree.js +0 -95
  538. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/HTTPRequest.js +0 -199
  539. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/HTTPResponse.js +0 -130
  540. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Input.js +0 -506
  541. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorld.js +0 -191
  542. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorlds.js +0 -23
  543. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/JSHandle.js +0 -106
  544. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/LifecycleWatcher.js +0 -178
  545. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/NetworkEventManager.js +0 -166
  546. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/NetworkManager.js +0 -605
  547. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Page.js +0 -1038
  548. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +0 -72
  549. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Target.js +0 -260
  550. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManageEvents.js +0 -8
  551. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js +0 -418
  552. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.js +0 -114
  553. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebMCP.js +0 -281
  554. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebWorker.js +0 -102
  555. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/cdp.js +0 -60
  556. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/utils.js +0 -262
  557. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/AriaQueryHandler.js +0 -58
  558. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserConnector.js +0 -176
  559. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserWebSocketTransport.js +0 -43
  560. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CSSQueryHandler.js +0 -22
  561. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CallbackRegistry.js +0 -138
  562. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ConsoleMessage.js +0 -82
  563. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CustomQueryHandler.js +0 -118
  564. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Debug.js +0 -149
  565. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.js +0 -1607
  566. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Errors.js +0 -104
  567. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/EventEmitter.js +0 -142
  568. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.js +0 -79
  569. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/GetQueryHandler.js +0 -73
  570. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/HandleIterator.js +0 -145
  571. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/LazyArg.js +0 -27
  572. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/NetworkManagerEvents.js +0 -24
  573. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PDFOptions.js +0 -61
  574. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PQueryHandler.js +0 -22
  575. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PSelectorParser.js +0 -103
  576. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PierceQueryHandler.js +0 -22
  577. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Puppeteer.js +0 -102
  578. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.js +0 -229
  579. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ScriptInjector.js +0 -55
  580. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/SecurityDetails.js +0 -73
  581. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TaskQueue.js +0 -28
  582. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TextQueryHandler.js +0 -19
  583. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TimeoutSettings.js +0 -43
  584. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/USKeyboardLayout.js +0 -397
  585. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/WaitTask.js +0 -202
  586. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/XPathQueryHandler.js +0 -25
  587. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/common.js +0 -51
  588. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/util.js +0 -396
  589. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/environment.js +0 -27
  590. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/injected.js +0 -12
  591. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/index-browser.js +0 -27
  592. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/index.js +0 -24
  593. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/BrowserLauncher.js +0 -358
  594. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ChromeLauncher.js +0 -270
  595. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/FirefoxLauncher.js +0 -173
  596. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.js +0 -25
  597. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/NodeWebSocketTransport.js +0 -62
  598. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PipeTransport.js +0 -76
  599. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.js +0 -285
  600. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ScreenRecorder.js +0 -286
  601. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/node.js +0 -28
  602. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/util/fs.js +0 -31
  603. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/puppeteer-core.js +0 -82
  604. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/revisions.js +0 -17
  605. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/AsyncIterableUtil.js +0 -33
  606. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Deferred.js +0 -109
  607. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/ErrorLike.js +0 -47
  608. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Function.js +0 -76
  609. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Mutex.js +0 -50
  610. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/assert.js +0 -22
  611. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/decorators.js +0 -240
  612. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/disposable.js +0 -347
  613. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/encoding.js +0 -69
  614. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/incremental-id-generator.js +0 -21
  615. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/util.js +0 -29
  616. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/version.js +0 -13
  617. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/mitt/mitt.js +0 -99
  618. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/parsel-js/parsel-js.js +0 -219
  619. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/rxjs/rxjs.js +0 -9738
  620. package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/urlpattern-polyfill/urlpattern-polyfill.js +0 -853
  621. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/package.json +0 -1
  622. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Browser.js +0 -204
  623. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/BrowserContext.js +0 -183
  624. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/HTTPRequest.js +0 -461
  625. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/JSHandle.js +0 -227
  626. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js +0 -1512
  627. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Target.js +0 -49
  628. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.js +0 -120
  629. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.js +0 -799
  630. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BidiOverCdp.js +0 -146
  631. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Browser.js +0 -342
  632. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserConnector.js +0 -84
  633. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserContext.js +0 -382
  634. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Connection.js +0 -160
  635. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Deserializer.js +0 -80
  636. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/ExposedFunction.js +0 -261
  637. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Frame.js +0 -469
  638. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/HTTPResponse.js +0 -168
  639. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Page.js +0 -978
  640. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Realm.js +0 -340
  641. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Browser.js +0 -353
  642. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/BrowsingContext.js +0 -635
  643. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Navigation.js +0 -168
  644. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Realm.js +0 -302
  645. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Request.js +0 -308
  646. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Session.js +0 -178
  647. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/UserContext.js +0 -207
  648. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/UserPrompt.js +0 -132
  649. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Accessibility.js +0 -591
  650. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Binding.js +0 -162
  651. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Browser.js +0 -388
  652. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserConnector.js +0 -26
  653. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserContext.js +0 -192
  654. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/CdpSession.js +0 -129
  655. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Connection.js +0 -244
  656. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Coverage.js +0 -372
  657. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ElementHandle.js +0 -207
  658. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/EmulationManager.js +0 -458
  659. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js +0 -458
  660. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Extension.js +0 -75
  661. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Frame.js +0 -373
  662. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/FrameManager.js +0 -495
  663. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/HTTPRequest.js +0 -195
  664. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/HTTPResponse.js +0 -126
  665. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Input.js +0 -499
  666. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/JSHandle.js +0 -101
  667. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/NetworkManager.js +0 -601
  668. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Page.js +0 -1032
  669. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Target.js +0 -252
  670. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js +0 -414
  671. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebMCP.js +0 -275
  672. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebWorker.js +0 -98
  673. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserConnector.js +0 -139
  674. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +0 -39
  675. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/CallbackRegistry.js +0 -133
  676. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/Debug.js +0 -109
  677. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/EventEmitter.js +0 -135
  678. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/util.js +0 -375
  679. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/environment.js +0 -24
  680. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/generated/injected.js +0 -9
  681. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/BrowserLauncher.js +0 -321
  682. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ChromeLauncher.js +0 -261
  683. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/FirefoxLauncher.js +0 -166
  684. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/NodeWebSocketTransport.js +0 -55
  685. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/PipeTransport.js +0 -72
  686. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.js +0 -281
  687. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ScreenRecorder.js +0 -280
  688. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/puppeteer-core.js +0 -41
  689. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/revisions.js +0 -14
  690. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/Mutex.js +0 -46
  691. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/util.js +0 -13
  692. package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/version.js +0 -10
  693. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiMapper.js +0 -31
  694. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiNoOpParser.js +0 -274
  695. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiServer.js +0 -169
  696. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/CommandProcessor.js +0 -326
  697. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/OutgoingMessage.js +0 -52
  698. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/bluetooth/BluetoothProcessor.js +0 -411
  699. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.js +0 -294
  700. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/ContextConfig.js +0 -74
  701. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/ContextConfigStorage.js +0 -96
  702. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/UserContextStorage.js +0 -56
  703. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpProcessor.js +0 -60
  704. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpTarget.js +0 -695
  705. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpTargetManager.js +0 -252
  706. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextImpl.js +0 -1463
  707. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextProcessor.js +0 -267
  708. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextStorage.js +0 -134
  709. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/NavigationTracker.js +0 -331
  710. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/emulation/EmulationProcessor.js +0 -384
  711. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/ActionDispatcher.js +0 -744
  712. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputProcessor.js +0 -194
  713. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputSource.js +0 -161
  714. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputState.js +0 -93
  715. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputStateManager.js +0 -34
  716. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/USKeyboardLayout.js +0 -274
  717. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/keyUtils.js +0 -497
  718. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/log/LogManager.js +0 -187
  719. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/log/logHelper.js +0 -172
  720. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/CollectorsStorage.js +0 -153
  721. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkProcessor.js +0 -546
  722. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkRequest.js +0 -894
  723. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkStorage.js +0 -353
  724. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkUtils.js +0 -322
  725. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/permissions/PermissionsProcessor.js +0 -55
  726. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/ChannelProxy.js +0 -235
  727. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/PreloadScript.js +0 -133
  728. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/PreloadScriptStorage.js +0 -79
  729. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/Realm.js +0 -485
  730. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/RealmStorage.js +0 -82
  731. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/ScriptProcessor.js +0 -136
  732. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/SharedId.js +0 -74
  733. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/WindowRealm.js +0 -146
  734. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/WorkerRealm.js +0 -70
  735. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/EventManager.js +0 -269
  736. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/SessionProcessor.js +0 -131
  737. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/SubscriptionManager.js +0 -273
  738. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/events.js +0 -37
  739. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/speculation/SpeculationProcessor.js +0 -62
  740. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/storage/StorageProcessor.js +0 -195
  741. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/webExtension/WebExtensionProcessor.js +0 -69
  742. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/ErrorResponse.js +0 -199
  743. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/cdp.js +0 -3
  744. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/chromium-bidi.js +0 -127
  745. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.js +0 -19
  746. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-nav-speculation.js +0 -19
  747. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.js +0 -19
  748. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-ua-client-hints.js +0 -19
  749. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.js +0 -19
  750. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/protocol.js +0 -65
  751. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Buffer.js +0 -47
  752. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/DefaultMap.js +0 -40
  753. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Deferred.js +0 -71
  754. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/EventEmitter.js +0 -74
  755. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/IdWrapper.js +0 -34
  756. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Mutex.js +0 -68
  757. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/ProcessingQueue.js +0 -67
  758. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/assert.js +0 -25
  759. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/base64.js +0 -35
  760. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/graphemeTools.js +0 -38
  761. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/log.js +0 -31
  762. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/time.js +0 -27
  763. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/unitConversions.js +0 -24
  764. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/urlHelpers.js +0 -52
  765. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/uuid.js +0 -64
  766. package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/package.json +0 -252
  767. package/web/.next/standalone/node_modules/require-directory/index.js +0 -86
  768. package/web/.next/standalone/node_modules/require-directory/package.json +0 -40
  769. package/web/.next/standalone/node_modules/semver/functions/clean.js +0 -8
  770. package/web/.next/standalone/node_modules/semver/functions/compare-build.js +0 -9
  771. package/web/.next/standalone/node_modules/semver/functions/compare-loose.js +0 -5
  772. package/web/.next/standalone/node_modules/semver/functions/diff.js +0 -60
  773. package/web/.next/standalone/node_modules/semver/functions/inc.js +0 -21
  774. package/web/.next/standalone/node_modules/semver/functions/major.js +0 -5
  775. package/web/.next/standalone/node_modules/semver/functions/minor.js +0 -5
  776. package/web/.next/standalone/node_modules/semver/functions/patch.js +0 -5
  777. package/web/.next/standalone/node_modules/semver/functions/prerelease.js +0 -8
  778. package/web/.next/standalone/node_modules/semver/functions/rcompare.js +0 -5
  779. package/web/.next/standalone/node_modules/semver/functions/rsort.js +0 -5
  780. package/web/.next/standalone/node_modules/semver/functions/sort.js +0 -5
  781. package/web/.next/standalone/node_modules/semver/functions/valid.js +0 -8
  782. package/web/.next/standalone/node_modules/semver/index.js +0 -91
  783. package/web/.next/standalone/node_modules/semver/preload.js +0 -4
  784. package/web/.next/standalone/node_modules/semver/ranges/gtr.js +0 -6
  785. package/web/.next/standalone/node_modules/semver/ranges/intersects.js +0 -9
  786. package/web/.next/standalone/node_modules/semver/ranges/ltr.js +0 -6
  787. package/web/.next/standalone/node_modules/semver/ranges/max-satisfying.js +0 -27
  788. package/web/.next/standalone/node_modules/semver/ranges/min-satisfying.js +0 -26
  789. package/web/.next/standalone/node_modules/semver/ranges/min-version.js +0 -63
  790. package/web/.next/standalone/node_modules/semver/ranges/outside.js +0 -82
  791. package/web/.next/standalone/node_modules/semver/ranges/simplify.js +0 -49
  792. package/web/.next/standalone/node_modules/semver/ranges/subset.js +0 -249
  793. package/web/.next/standalone/node_modules/semver/ranges/to-comparators.js +0 -10
  794. package/web/.next/standalone/node_modules/semver/ranges/valid.js +0 -13
  795. package/web/.next/standalone/node_modules/streamx/index.js +0 -1184
  796. package/web/.next/standalone/node_modules/streamx/package.json +0 -34
  797. package/web/.next/standalone/node_modules/strip-ansi/index.js +0 -4
  798. package/web/.next/standalone/node_modules/strip-ansi/package.json +0 -54
  799. package/web/.next/standalone/node_modules/tar-fs/index.js +0 -400
  800. package/web/.next/standalone/node_modules/tar-fs/package.json +0 -61
  801. package/web/.next/standalone/node_modules/tar-stream/constants.js +0 -14
  802. package/web/.next/standalone/node_modules/tar-stream/extract.js +0 -406
  803. package/web/.next/standalone/node_modules/tar-stream/headers.js +0 -321
  804. package/web/.next/standalone/node_modules/tar-stream/index.js +0 -2
  805. package/web/.next/standalone/node_modules/tar-stream/pack.js +0 -287
  806. package/web/.next/standalone/node_modules/tar-stream/package.json +0 -42
  807. package/web/.next/standalone/node_modules/text-decoder/index.js +0 -64
  808. package/web/.next/standalone/node_modules/text-decoder/lib/pass-through-decoder.js +0 -19
  809. package/web/.next/standalone/node_modules/text-decoder/lib/utf8-decoder.js +0 -185
  810. package/web/.next/standalone/node_modules/text-decoder/package.json +0 -39
  811. package/web/.next/standalone/node_modules/wrappy/package.json +0 -29
  812. package/web/.next/standalone/node_modules/wrappy/wrappy.js +0 -33
  813. package/web/.next/standalone/node_modules/yargs/build/index.cjs +0 -1
  814. package/web/.next/standalone/node_modules/yargs/build/lib/utils/which-module.js +0 -10
  815. package/web/.next/standalone/node_modules/yargs/helpers/index.js +0 -14
  816. package/web/.next/standalone/node_modules/yargs/helpers/package.json +0 -3
  817. package/web/.next/standalone/node_modules/yargs/index.cjs +0 -53
  818. package/web/.next/standalone/node_modules/yargs/locales/be.json +0 -46
  819. package/web/.next/standalone/node_modules/yargs/locales/cs.json +0 -51
  820. package/web/.next/standalone/node_modules/yargs/locales/de.json +0 -46
  821. package/web/.next/standalone/node_modules/yargs/locales/en.json +0 -55
  822. package/web/.next/standalone/node_modules/yargs/locales/es.json +0 -46
  823. package/web/.next/standalone/node_modules/yargs/locales/fi.json +0 -49
  824. package/web/.next/standalone/node_modules/yargs/locales/fr.json +0 -53
  825. package/web/.next/standalone/node_modules/yargs/locales/hi.json +0 -49
  826. package/web/.next/standalone/node_modules/yargs/locales/hu.json +0 -46
  827. package/web/.next/standalone/node_modules/yargs/locales/id.json +0 -50
  828. package/web/.next/standalone/node_modules/yargs/locales/it.json +0 -46
  829. package/web/.next/standalone/node_modules/yargs/locales/ja.json +0 -51
  830. package/web/.next/standalone/node_modules/yargs/locales/ko.json +0 -49
  831. package/web/.next/standalone/node_modules/yargs/locales/nb.json +0 -44
  832. package/web/.next/standalone/node_modules/yargs/locales/nl.json +0 -49
  833. package/web/.next/standalone/node_modules/yargs/locales/nn.json +0 -44
  834. package/web/.next/standalone/node_modules/yargs/locales/pirate.json +0 -13
  835. package/web/.next/standalone/node_modules/yargs/locales/pl.json +0 -49
  836. package/web/.next/standalone/node_modules/yargs/locales/pt.json +0 -45
  837. package/web/.next/standalone/node_modules/yargs/locales/pt_BR.json +0 -48
  838. package/web/.next/standalone/node_modules/yargs/locales/ru.json +0 -51
  839. package/web/.next/standalone/node_modules/yargs/locales/th.json +0 -46
  840. package/web/.next/standalone/node_modules/yargs/locales/tr.json +0 -48
  841. package/web/.next/standalone/node_modules/yargs/locales/uk_UA.json +0 -51
  842. package/web/.next/standalone/node_modules/yargs/locales/uz.json +0 -52
  843. package/web/.next/standalone/node_modules/yargs/locales/zh_CN.json +0 -48
  844. package/web/.next/standalone/node_modules/yargs/locales/zh_TW.json +0 -51
  845. package/web/.next/standalone/node_modules/yargs-parser/build/index.cjs +0 -1050
  846. package/web/.next/standalone/node_modules/yauzl/fd-slicer.js +0 -188
  847. package/web/.next/standalone/node_modules/yauzl/index.js +0 -968
  848. package/web/.next/standalone/node_modules/yauzl/package.json +0 -40
  849. package/web/.next/standalone/packages/web/.next/server/chunks/1669.js +0 -1
  850. package/web/.next/standalone/packages/web/.next/server/chunks/1827.js +0 -1
  851. package/web/.next/standalone/packages/web/.next/server/chunks/2139.js +0 -1
  852. package/web/.next/standalone/packages/web/.next/server/chunks/3364.js +0 -3
  853. package/web/.next/standalone/packages/web/.next/server/chunks/3523.js +0 -3
  854. package/web/.next/standalone/packages/web/.next/server/chunks/3575.js +0 -1
  855. package/web/.next/standalone/packages/web/.next/server/chunks/3855.js +0 -1
  856. package/web/.next/standalone/packages/web/.next/server/chunks/4036.js +0 -1
  857. package/web/.next/standalone/packages/web/.next/server/chunks/4371.js +0 -7
  858. package/web/.next/standalone/packages/web/.next/server/chunks/4682.js +0 -1
  859. package/web/.next/standalone/packages/web/.next/server/chunks/4944.js +0 -1
  860. package/web/.next/standalone/packages/web/.next/server/chunks/5538.js +0 -1
  861. package/web/.next/standalone/packages/web/.next/server/chunks/6014.js +0 -1
  862. package/web/.next/standalone/packages/web/.next/server/chunks/6034.js +0 -1
  863. package/web/.next/standalone/packages/web/.next/server/chunks/6822.js +0 -1
  864. package/web/.next/standalone/packages/web/.next/server/chunks/7895.js +0 -1
  865. package/web/.next/standalone/packages/web/.next/server/chunks/8851.js +0 -1
  866. package/web/.next/standalone/packages/web/.next/server/chunks/9789.js +0 -1
  867. package/web/.next/standalone/packages/web/.next/static/chunks/13831.c5add20802d784d5.js +0 -1
  868. package/web/.next/standalone/packages/web/.next/static/chunks/19406.04136e47c9312bdb.js +0 -1
  869. package/web/.next/standalone/packages/web/.next/static/chunks/22799.10cdf9a63b484539.js +0 -1
  870. package/web/.next/standalone/packages/web/.next/static/chunks/24315.b4199b1b2bf0d590.js +0 -1
  871. package/web/.next/standalone/packages/web/.next/static/chunks/24607.272ce532ac5ed877.js +0 -3
  872. package/web/.next/standalone/packages/web/.next/static/chunks/26866.da7df15102380a9e.js +0 -1
  873. package/web/.next/standalone/packages/web/.next/static/chunks/2818.c726390e344d6293.js +0 -1
  874. package/web/.next/standalone/packages/web/.next/static/chunks/28386-521e4daee9fe51c3.js +0 -1
  875. package/web/.next/standalone/packages/web/.next/static/chunks/29450-8d186ad90ecd95e7.js +0 -1
  876. package/web/.next/standalone/packages/web/.next/static/chunks/30690.a8c29f006eadb5c9.js +0 -1
  877. package/web/.next/standalone/packages/web/.next/static/chunks/34443.dd685ddabb86dcd4.js +0 -1
  878. package/web/.next/standalone/packages/web/.next/static/chunks/35493-bec918ac58d9fc84.js +0 -1
  879. package/web/.next/standalone/packages/web/.next/static/chunks/35863.c344da3f5e1ece6c.js +0 -1
  880. package/web/.next/standalone/packages/web/.next/static/chunks/36902.58a2e10d61e1c29c.js +0 -1
  881. package/web/.next/standalone/packages/web/.next/static/chunks/37520.f4417e2e4b0933a8.js +0 -1
  882. package/web/.next/standalone/packages/web/.next/static/chunks/37668.804fa74c6bed7446.js +0 -1
  883. package/web/.next/standalone/packages/web/.next/static/chunks/37990.9e5281f849e5c037.js +0 -1
  884. package/web/.next/standalone/packages/web/.next/static/chunks/43971.78cca6926cb705d4.js +0 -1
  885. package/web/.next/standalone/packages/web/.next/static/chunks/54177-992dd90f131d13e7.js +0 -1
  886. package/web/.next/standalone/packages/web/.next/static/chunks/55623.fc2d575acd527888.js +0 -1
  887. package/web/.next/standalone/packages/web/.next/static/chunks/56701-1d3df200ffd6a638.js +0 -1
  888. package/web/.next/standalone/packages/web/.next/static/chunks/56817.538909e891e3b65d.js +0 -1
  889. package/web/.next/standalone/packages/web/.next/static/chunks/58607.bce7eb75dddcebd1.js +0 -1
  890. package/web/.next/standalone/packages/web/.next/static/chunks/60633.efb22d7f605ddec0.js +0 -1
  891. package/web/.next/standalone/packages/web/.next/static/chunks/61962-bd86b676175cca19.js +0 -1
  892. package/web/.next/standalone/packages/web/.next/static/chunks/62033.726b5765f23a0520.js +0 -1
  893. package/web/.next/standalone/packages/web/.next/static/chunks/652.12ff6c934f10168a.js +0 -1
  894. package/web/.next/standalone/packages/web/.next/static/chunks/65453.d024715dc3e78a51.js +0 -1
  895. package/web/.next/standalone/packages/web/.next/static/chunks/66173.b9ad09199df2d44d.js +0 -1
  896. package/web/.next/standalone/packages/web/.next/static/chunks/70232.eda405393dca2b67.js +0 -1
  897. package/web/.next/standalone/packages/web/.next/static/chunks/71006.c571b4062ce8ade9.js +0 -1
  898. package/web/.next/standalone/packages/web/.next/static/chunks/79167.6eff790c20304ba0.js +0 -1
  899. package/web/.next/standalone/packages/web/.next/static/chunks/79593-3520e533469cda7b.js +0 -9
  900. package/web/.next/standalone/packages/web/.next/static/chunks/79739.f779af05a3e0f6cf.js +0 -1
  901. package/web/.next/standalone/packages/web/.next/static/chunks/81132.8414066d4a5a3014.js +0 -3
  902. package/web/.next/standalone/packages/web/.next/static/chunks/81874.d7e8e971d89868fb.js +0 -1
  903. package/web/.next/standalone/packages/web/.next/static/chunks/82175-bc05c221ba90422c.js +0 -3
  904. package/web/.next/standalone/packages/web/.next/static/chunks/83742.86da416e90e96d34.js +0 -1
  905. package/web/.next/standalone/packages/web/.next/static/chunks/84271-4d1e0454ca612f5c.js +0 -2
  906. package/web/.next/standalone/packages/web/.next/static/chunks/883-bd3ca76b76fb6a07.js +0 -3
  907. package/web/.next/standalone/packages/web/.next/static/chunks/90694.044c53c7cbbb704b.js +0 -5
  908. package/web/.next/standalone/packages/web/.next/static/chunks/92333.3c74596acf217cc3.js +0 -1
  909. package/web/.next/standalone/packages/web/.next/static/chunks/93514.05e809fc49375ade.js +0 -1
  910. package/web/.next/standalone/packages/web/.next/static/chunks/app/bridge/connect/page-0c90eb3e3764ab94.js +0 -1
  911. package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-77fdeb28bba1c485.js +0 -1
  912. package/web/.next/standalone/packages/web/.next/static/chunks/app/page-4c94c2a3cc348ae9.js +0 -1
  913. package/web/.next/standalone/packages/web/.next/static/chunks/app/sessions/[id]/page-bda93e3cb096137a.js +0 -1
  914. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js +0 -9
  915. package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-35e34a3cc336595c.js +0 -9
  916. package/web/.next/standalone/packages/web/.next/static/chunks/app/unlock/page-873f594daba5cca9.js +0 -1
  917. package/web/.next/standalone/packages/web/.next/static/chunks/webpack-440ef92d9b83f1cc.js +0 -1
  918. package/web/.next/static/chunks/13831.c5add20802d784d5.js +0 -1
  919. package/web/.next/static/chunks/19406.04136e47c9312bdb.js +0 -1
  920. package/web/.next/static/chunks/22799.10cdf9a63b484539.js +0 -1
  921. package/web/.next/static/chunks/24315.b4199b1b2bf0d590.js +0 -1
  922. package/web/.next/static/chunks/24607.272ce532ac5ed877.js +0 -3
  923. package/web/.next/static/chunks/26866.da7df15102380a9e.js +0 -1
  924. package/web/.next/static/chunks/2818.c726390e344d6293.js +0 -1
  925. package/web/.next/static/chunks/28386-521e4daee9fe51c3.js +0 -1
  926. package/web/.next/static/chunks/29450-8d186ad90ecd95e7.js +0 -1
  927. package/web/.next/static/chunks/30690.a8c29f006eadb5c9.js +0 -1
  928. package/web/.next/static/chunks/34443.dd685ddabb86dcd4.js +0 -1
  929. package/web/.next/static/chunks/35493-bec918ac58d9fc84.js +0 -1
  930. package/web/.next/static/chunks/35863.c344da3f5e1ece6c.js +0 -1
  931. package/web/.next/static/chunks/36902.58a2e10d61e1c29c.js +0 -1
  932. package/web/.next/static/chunks/37520.f4417e2e4b0933a8.js +0 -1
  933. package/web/.next/static/chunks/37668.804fa74c6bed7446.js +0 -1
  934. package/web/.next/static/chunks/37990.9e5281f849e5c037.js +0 -1
  935. package/web/.next/static/chunks/43971.78cca6926cb705d4.js +0 -1
  936. package/web/.next/static/chunks/54177-992dd90f131d13e7.js +0 -1
  937. package/web/.next/static/chunks/55623.fc2d575acd527888.js +0 -1
  938. package/web/.next/static/chunks/56701-1d3df200ffd6a638.js +0 -1
  939. package/web/.next/static/chunks/56817.538909e891e3b65d.js +0 -1
  940. package/web/.next/static/chunks/58607.bce7eb75dddcebd1.js +0 -1
  941. package/web/.next/static/chunks/60633.efb22d7f605ddec0.js +0 -1
  942. package/web/.next/static/chunks/61962-bd86b676175cca19.js +0 -1
  943. package/web/.next/static/chunks/62033.726b5765f23a0520.js +0 -1
  944. package/web/.next/static/chunks/652.12ff6c934f10168a.js +0 -1
  945. package/web/.next/static/chunks/65453.d024715dc3e78a51.js +0 -1
  946. package/web/.next/static/chunks/66173.b9ad09199df2d44d.js +0 -1
  947. package/web/.next/static/chunks/70232.eda405393dca2b67.js +0 -1
  948. package/web/.next/static/chunks/71006.c571b4062ce8ade9.js +0 -1
  949. package/web/.next/static/chunks/79167.6eff790c20304ba0.js +0 -1
  950. package/web/.next/static/chunks/79593-3520e533469cda7b.js +0 -9
  951. package/web/.next/static/chunks/79739.f779af05a3e0f6cf.js +0 -1
  952. package/web/.next/static/chunks/81132.8414066d4a5a3014.js +0 -3
  953. package/web/.next/static/chunks/81874.d7e8e971d89868fb.js +0 -1
  954. package/web/.next/static/chunks/82175-bc05c221ba90422c.js +0 -3
  955. package/web/.next/static/chunks/83742.86da416e90e96d34.js +0 -1
  956. package/web/.next/static/chunks/84271-4d1e0454ca612f5c.js +0 -2
  957. package/web/.next/static/chunks/883-bd3ca76b76fb6a07.js +0 -3
  958. package/web/.next/static/chunks/90694.044c53c7cbbb704b.js +0 -5
  959. package/web/.next/static/chunks/92333.3c74596acf217cc3.js +0 -1
  960. package/web/.next/static/chunks/93514.05e809fc49375ade.js +0 -1
  961. package/web/.next/static/chunks/app/bridge/connect/page-0c90eb3e3764ab94.js +0 -1
  962. package/web/.next/static/chunks/app/layout-77fdeb28bba1c485.js +0 -1
  963. package/web/.next/static/chunks/app/page-4c94c2a3cc348ae9.js +0 -1
  964. package/web/.next/static/chunks/app/sessions/[id]/page-bda93e3cb096137a.js +0 -1
  965. package/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js +0 -9
  966. package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-35e34a3cc336595c.js +0 -9
  967. package/web/.next/static/chunks/app/unlock/page-873f594daba5cca9.js +0 -1
  968. package/web/.next/static/chunks/webpack-440ef92d9b83f1cc.js +0 -1
  969. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/DefaultProvider.js → DefaultProvider.js} +0 -0
  970. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chrome-headless-shell.js +0 -0
  971. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chromedriver.js +0 -0
  972. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chromium.js +0 -0
  973. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/firefox.js +0 -0
  974. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/detectPlatform.js → detectPlatform.js} +0 -0
  975. /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/provider.js → provider.js} +0 -0
  976. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/CDPSession.js +0 -0
  977. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/DeviceRequestPrompt.js +0 -0
  978. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Dialog.js +0 -0
  979. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/ElementHandle.js +0 -0
  980. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/ElementHandleSymbol.js +0 -0
  981. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Extension.js +0 -0
  982. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Frame.js +0 -0
  983. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/HTTPResponse.js +0 -0
  984. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Input.js +0 -0
  985. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Realm.js +0 -0
  986. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/api.js +0 -0
  987. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/BluetoothEmulation.js +0 -0
  988. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/CDPSession.js +0 -0
  989. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/DeviceRequestPrompt.js +0 -0
  990. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Dialog.js +0 -0
  991. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/ElementHandle.js +0 -0
  992. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/HTTPRequest.js +0 -0
  993. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Input.js +0 -0
  994. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/JSHandle.js +0 -0
  995. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Serializer.js +0 -0
  996. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Target.js +0 -0
  997. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/WebWorker.js +0 -0
  998. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/bidi.js +0 -0
  999. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/util.js +0 -0
  1000. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/BluetoothEmulation.js +0 -0
  1001. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/CdpIssue.js +0 -0
  1002. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/CdpPreloadScript.js +0 -0
  1003. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/DeviceRequestPrompt.js +0 -0
  1004. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/Dialog.js +0 -0
  1005. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/ExtensionTransport.js +0 -0
  1006. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/FrameManagerEvents.js +0 -0
  1007. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/FrameTree.js +0 -0
  1008. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/IsolatedWorld.js +0 -0
  1009. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/IsolatedWorlds.js +0 -0
  1010. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/LifecycleWatcher.js +0 -0
  1011. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/NetworkEventManager.js +0 -0
  1012. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/PredefinedNetworkConditions.js +0 -0
  1013. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/TargetManageEvents.js +0 -0
  1014. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/Tracing.js +0 -0
  1015. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/cdp.js +0 -0
  1016. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/utils.js +0 -0
  1017. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/AriaQueryHandler.js +0 -0
  1018. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/CSSQueryHandler.js +0 -0
  1019. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/ConsoleMessage.js +0 -0
  1020. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/CustomQueryHandler.js +0 -0
  1021. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Device.js +0 -0
  1022. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Errors.js +0 -0
  1023. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/FileChooser.js +0 -0
  1024. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/GetQueryHandler.js +0 -0
  1025. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/HandleIterator.js +0 -0
  1026. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/LazyArg.js +0 -0
  1027. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/NetworkManagerEvents.js +0 -0
  1028. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PDFOptions.js +0 -0
  1029. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PQueryHandler.js +0 -0
  1030. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PSelectorParser.js +0 -0
  1031. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PierceQueryHandler.js +0 -0
  1032. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Puppeteer.js +0 -0
  1033. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/QueryHandler.js +0 -0
  1034. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/ScriptInjector.js +0 -0
  1035. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/SecurityDetails.js +0 -0
  1036. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TaskQueue.js +0 -0
  1037. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TextQueryHandler.js +0 -0
  1038. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TimeoutSettings.js +0 -0
  1039. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/USKeyboardLayout.js +0 -0
  1040. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/WaitTask.js +0 -0
  1041. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/XPathQueryHandler.js +0 -0
  1042. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/common.js +0 -0
  1043. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/index-browser.js +0 -0
  1044. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/index.js +0 -0
  1045. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/LaunchOptions.js +0 -0
  1046. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/node.js +0 -0
  1047. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/util/fs.js +0 -0
  1048. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/AsyncIterableUtil.js +0 -0
  1049. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/Deferred.js +0 -0
  1050. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/ErrorLike.js +0 -0
  1051. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/Function.js +0 -0
  1052. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/assert.js +0 -0
  1053. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/decorators.js +0 -0
  1054. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/disposable.js +0 -0
  1055. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/encoding.js +0 -0
  1056. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/incremental-id-generator.js +0 -0
  1057. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/mitt/mitt.js +0 -0
  1058. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/parsel-js/parsel-js.js +0 -0
  1059. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/rxjs/rxjs.js +0 -0
  1060. /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/urlpattern-polyfill/urlpattern-polyfill.js +0 -0
  1061. /package/web/.next/standalone/packages/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_buildManifest.js +0 -0
  1062. /package/web/.next/standalone/packages/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_ssgManifest.js +0 -0
  1063. /package/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_buildManifest.js +0 -0
  1064. /package/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_ssgManifest.js +0 -0
@@ -1,1038 +0,0 @@
1
- "use strict";
2
- /**
3
- * @license
4
- * Copyright 2017 Google Inc.
5
- * SPDX-License-Identifier: Apache-2.0
6
- */
7
- var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
8
- if (value !== null && value !== void 0) {
9
- if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
10
- var dispose, inner;
11
- if (async) {
12
- if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
13
- dispose = value[Symbol.asyncDispose];
14
- }
15
- if (dispose === void 0) {
16
- if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
17
- dispose = value[Symbol.dispose];
18
- if (async) inner = dispose;
19
- }
20
- if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
21
- if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };
22
- env.stack.push({ value: value, dispose: dispose, async: async });
23
- }
24
- else if (async) {
25
- env.stack.push({ async: true });
26
- }
27
- return value;
28
- };
29
- var __disposeResources = (this && this.__disposeResources) || (function (SuppressedError) {
30
- return function (env) {
31
- function fail(e) {
32
- env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
33
- env.hasError = true;
34
- }
35
- var r, s = 0;
36
- function next() {
37
- while (r = env.stack.pop()) {
38
- try {
39
- if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
40
- if (r.dispose) {
41
- var result = r.dispose.call(r.value);
42
- if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
43
- }
44
- else s |= 1;
45
- }
46
- catch (e) {
47
- fail(e);
48
- }
49
- }
50
- if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
51
- if (env.hasError) throw env.error;
52
- }
53
- return next();
54
- };
55
- })(typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
56
- var e = new Error(message);
57
- return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
58
- });
59
- Object.defineProperty(exports, "__esModule", { value: true });
60
- exports.CdpPage = void 0;
61
- exports.convertSameSiteFromPuppeteerToCdp = convertSameSiteFromPuppeteerToCdp;
62
- exports.convertCookiesPartitionKeyFromPuppeteerToCdp = convertCookiesPartitionKeyFromPuppeteerToCdp;
63
- const rxjs_js_1 = require("../../third_party/rxjs/rxjs.js");
64
- const CDPSession_js_1 = require("../api/CDPSession.js");
65
- const Page_js_1 = require("../api/Page.js");
66
- const WebWorker_js_1 = require("../api/WebWorker.js");
67
- const ConsoleMessage_js_1 = require("../common/ConsoleMessage.js");
68
- const Errors_js_1 = require("../common/Errors.js");
69
- const EventEmitter_js_1 = require("../common/EventEmitter.js");
70
- const FileChooser_js_1 = require("../common/FileChooser.js");
71
- const NetworkManagerEvents_js_1 = require("../common/NetworkManagerEvents.js");
72
- const util_js_1 = require("../common/util.js");
73
- const environment_js_1 = require("../environment.js");
74
- const assert_js_1 = require("../util/assert.js");
75
- const Deferred_js_1 = require("../util/Deferred.js");
76
- const disposable_js_1 = require("../util/disposable.js");
77
- const ErrorLike_js_1 = require("../util/ErrorLike.js");
78
- const Binding_js_1 = require("./Binding.js");
79
- const BluetoothEmulation_js_1 = require("./BluetoothEmulation.js");
80
- const CdpSession_js_1 = require("./CdpSession.js");
81
- const Connection_js_1 = require("./Connection.js");
82
- const Coverage_js_1 = require("./Coverage.js");
83
- const Dialog_js_1 = require("./Dialog.js");
84
- const EmulationManager_js_1 = require("./EmulationManager.js");
85
- const FrameManager_js_1 = require("./FrameManager.js");
86
- const FrameManagerEvents_js_1 = require("./FrameManagerEvents.js");
87
- const Input_js_1 = require("./Input.js");
88
- const IsolatedWorlds_js_1 = require("./IsolatedWorlds.js");
89
- const JSHandle_js_1 = require("./JSHandle.js");
90
- const Tracing_js_1 = require("./Tracing.js");
91
- const utils_js_1 = require("./utils.js");
92
- const WebMCP_js_1 = require("./WebMCP.js");
93
- const WebWorker_js_2 = require("./WebWorker.js");
94
- /**
95
- * @internal
96
- */
97
- function convertSameSiteFromPuppeteerToCdp(sameSite) {
98
- switch (sameSite) {
99
- case 'Strict':
100
- case 'Lax':
101
- case 'None':
102
- return sameSite;
103
- default:
104
- return undefined;
105
- }
106
- }
107
- /**
108
- * @internal
109
- */
110
- class CdpPage extends Page_js_1.Page {
111
- static async _create(client, target, defaultViewport) {
112
- const page = new CdpPage(client, target);
113
- await page.#initialize();
114
- if (defaultViewport) {
115
- try {
116
- await page.setViewport(defaultViewport);
117
- }
118
- catch (err) {
119
- if ((0, ErrorLike_js_1.isErrorLike)(err) && (0, Connection_js_1.isTargetClosedError)(err)) {
120
- (0, util_js_1.debugError)(err);
121
- }
122
- else {
123
- throw err;
124
- }
125
- }
126
- }
127
- return page;
128
- }
129
- #closed = false;
130
- #targetManager;
131
- #cdpBluetoothEmulation;
132
- #primaryTargetClient;
133
- #primaryTarget;
134
- #tabTargetClient;
135
- #tabTarget;
136
- #keyboard;
137
- #mouse;
138
- #touchscreen;
139
- #frameManager;
140
- #emulationManager;
141
- #tracing;
142
- #webmcp;
143
- #bindings = new Map();
144
- #exposedFunctions = new Map();
145
- #coverage;
146
- #viewport;
147
- #workers = new Map();
148
- #fileChooserDeferreds = new Set();
149
- #sessionCloseDeferred = Deferred_js_1.Deferred.create();
150
- #serviceWorkerBypassed = false;
151
- #userDragInterceptionEnabled = false;
152
- constructor(client, target) {
153
- super();
154
- this.#primaryTargetClient = client;
155
- this.#tabTargetClient = client.parentSession();
156
- (0, assert_js_1.assert)(this.#tabTargetClient, 'Tab target session is not defined.');
157
- this.#tabTarget = this.#tabTargetClient.target();
158
- (0, assert_js_1.assert)(this.#tabTarget, 'Tab target is not defined.');
159
- this._tabId = this.#tabTarget._getTargetInfo().targetId;
160
- this.#primaryTarget = target;
161
- this.#targetManager = target._targetManager();
162
- this.#keyboard = new Input_js_1.CdpKeyboard(client);
163
- this.#mouse = new Input_js_1.CdpMouse(client, this.#keyboard);
164
- this.#touchscreen = new Input_js_1.CdpTouchscreen(client, this.#keyboard);
165
- this.#frameManager = new FrameManager_js_1.FrameManager(client, this, this._timeoutSettings);
166
- this.#emulationManager = new EmulationManager_js_1.EmulationManager(client);
167
- this.#tracing = new Tracing_js_1.Tracing(client);
168
- this.#webmcp = new WebMCP_js_1.WebMCP(client, this.#frameManager);
169
- this.#coverage = new Coverage_js_1.Coverage(client);
170
- this.#viewport = null;
171
- // Use browser context's connection, as current Bluetooth emulation in Chromium is
172
- // implemented on the browser context level, and not tight to the specific tab.
173
- this.#cdpBluetoothEmulation = new BluetoothEmulation_js_1.CdpBluetoothEmulation(this.#primaryTargetClient.connection());
174
- const frameManagerEmitter = new EventEmitter_js_1.EventEmitter(this.#frameManager);
175
- frameManagerEmitter.on(FrameManagerEvents_js_1.FrameManagerEvent.FrameAttached, frame => {
176
- this.emit("frameattached" /* PageEvent.FrameAttached */, frame);
177
- });
178
- frameManagerEmitter.on(FrameManagerEvents_js_1.FrameManagerEvent.FrameDetached, frame => {
179
- this.emit("framedetached" /* PageEvent.FrameDetached */, frame);
180
- });
181
- frameManagerEmitter.on(FrameManagerEvents_js_1.FrameManagerEvent.FrameNavigated, frame => {
182
- this.emit("framenavigated" /* PageEvent.FrameNavigated */, frame);
183
- });
184
- frameManagerEmitter.on(FrameManagerEvents_js_1.FrameManagerEvent.ConsoleApiCalled, ([world, event]) => {
185
- this.#onConsoleAPI(world, event);
186
- });
187
- frameManagerEmitter.on(FrameManagerEvents_js_1.FrameManagerEvent.BindingCalled, ([world, event]) => {
188
- void this.#onBindingCalled(world, event);
189
- });
190
- const networkManagerEmitter = new EventEmitter_js_1.EventEmitter(this.#frameManager.networkManager);
191
- networkManagerEmitter.on(NetworkManagerEvents_js_1.NetworkManagerEvent.Request, request => {
192
- this.emit("request" /* PageEvent.Request */, request);
193
- });
194
- networkManagerEmitter.on(NetworkManagerEvents_js_1.NetworkManagerEvent.RequestServedFromCache, request => {
195
- this.emit("requestservedfromcache" /* PageEvent.RequestServedFromCache */, request);
196
- });
197
- networkManagerEmitter.on(NetworkManagerEvents_js_1.NetworkManagerEvent.Response, response => {
198
- this.emit("response" /* PageEvent.Response */, response);
199
- });
200
- networkManagerEmitter.on(NetworkManagerEvents_js_1.NetworkManagerEvent.RequestFailed, request => {
201
- this.emit("requestfailed" /* PageEvent.RequestFailed */, request);
202
- });
203
- networkManagerEmitter.on(NetworkManagerEvents_js_1.NetworkManagerEvent.RequestFinished, request => {
204
- this.emit("requestfinished" /* PageEvent.RequestFinished */, request);
205
- });
206
- this.#tabTargetClient.on(CDPSession_js_1.CDPSessionEvent.Swapped, this.#onActivation.bind(this));
207
- this.#tabTargetClient.on(CDPSession_js_1.CDPSessionEvent.Ready, this.#onSecondaryTarget.bind(this));
208
- this.#targetManager.on("targetGone" /* TargetManagerEvent.TargetGone */, this.#onDetachedFromTarget);
209
- this.#tabTarget._isClosedDeferred
210
- .valueOrThrow()
211
- .then(() => {
212
- this.#targetManager.off("targetGone" /* TargetManagerEvent.TargetGone */, this.#onDetachedFromTarget);
213
- this.emit("close" /* PageEvent.Close */, undefined);
214
- this.#closed = true;
215
- })
216
- .catch(util_js_1.debugError);
217
- this.#setupPrimaryTargetListeners();
218
- this.#attachExistingTargets();
219
- }
220
- #attachExistingTargets() {
221
- const queue = [];
222
- for (const childTarget of this.#targetManager.getChildTargets(this.#primaryTarget)) {
223
- queue.push(childTarget);
224
- }
225
- let idx = 0;
226
- while (idx < queue.length) {
227
- const next = queue[idx];
228
- idx++;
229
- const session = next._session();
230
- if (session) {
231
- this.#onAttachedToTarget(session);
232
- }
233
- for (const childTarget of this.#targetManager.getChildTargets(next)) {
234
- queue.push(childTarget);
235
- }
236
- }
237
- }
238
- async #onActivation(newSession) {
239
- // TODO: Remove assert once we have separate Event type for CdpCDPSession.
240
- (0, assert_js_1.assert)(newSession instanceof CdpSession_js_1.CdpCDPSession, 'CDPSession is not instance of CdpCDPSession');
241
- this.#primaryTargetClient = newSession;
242
- this.#primaryTarget = newSession.target();
243
- (0, assert_js_1.assert)(this.#primaryTarget, 'Missing target on swap');
244
- this.#keyboard.updateClient(newSession);
245
- this.#mouse.updateClient(newSession);
246
- this.#touchscreen.updateClient(newSession);
247
- this.#emulationManager.updateClient(newSession);
248
- this.#tracing.updateClient(newSession);
249
- this.#webmcp.updateClient(newSession);
250
- this.#coverage.updateClient(newSession);
251
- await this.#frameManager.swapFrameTree(newSession);
252
- this.#setupPrimaryTargetListeners();
253
- }
254
- async #onSecondaryTarget(session) {
255
- (0, assert_js_1.assert)(session instanceof CdpSession_js_1.CdpCDPSession);
256
- if (session.target()._subtype() !== 'prerender') {
257
- return;
258
- }
259
- this.#frameManager.registerSpeculativeSession(session).catch(util_js_1.debugError);
260
- this.#emulationManager
261
- .registerSpeculativeSession(session)
262
- .catch(util_js_1.debugError);
263
- }
264
- /**
265
- * Sets up listeners for the primary target. The primary target can change
266
- * during a navigation to a prerended page.
267
- */
268
- #setupPrimaryTargetListeners() {
269
- const clientEmitter = new EventEmitter_js_1.EventEmitter(this.#primaryTargetClient);
270
- clientEmitter.on(CDPSession_js_1.CDPSessionEvent.Ready, this.#onAttachedToTarget);
271
- clientEmitter.on(CDPSession_js_1.CDPSessionEvent.Disconnected, () => {
272
- this.#sessionCloseDeferred.reject(new Errors_js_1.TargetCloseError('Target closed'));
273
- });
274
- clientEmitter.on('Page.domContentEventFired', () => {
275
- this.emit("domcontentloaded" /* PageEvent.DOMContentLoaded */, undefined);
276
- });
277
- clientEmitter.on('Page.loadEventFired', () => {
278
- this.emit("load" /* PageEvent.Load */, undefined);
279
- });
280
- clientEmitter.on('Page.javascriptDialogOpening', this.#onDialog.bind(this));
281
- clientEmitter.on('Runtime.exceptionThrown', this.#handleException.bind(this));
282
- clientEmitter.on('Inspector.targetCrashed', this.#onTargetCrashed.bind(this));
283
- clientEmitter.on('Performance.metrics', this.#emitMetrics.bind(this));
284
- clientEmitter.on('Log.entryAdded', this.#onLogEntryAdded.bind(this));
285
- clientEmitter.on('Page.fileChooserOpened', this.#onFileChooser.bind(this));
286
- }
287
- #onDetachedFromTarget = (target) => {
288
- const sessionId = target._session()?.id();
289
- const worker = this.#workers.get(sessionId);
290
- if (!worker) {
291
- return;
292
- }
293
- this.#workers.delete(sessionId);
294
- this.emit("workerdestroyed" /* PageEvent.WorkerDestroyed */, worker);
295
- };
296
- #onAttachedToTarget = (session) => {
297
- (0, assert_js_1.assert)(session instanceof CdpSession_js_1.CdpCDPSession);
298
- this.#frameManager.onAttachedToTarget(session.target());
299
- if (session.target()._getTargetInfo().type === 'worker') {
300
- const worker = new WebWorker_js_2.CdpWebWorker(session, session.target().url(), session.target()._targetId, session.target().type(), this.#handleException.bind(this), this.#frameManager.networkManager);
301
- this.#workers.set(session.id(), worker);
302
- worker.internalEmitter.on(WebWorker_js_1.WebWorkerEvent.Console, message => {
303
- const noListenersForConsoleOnPage = this.listenerCount("console" /* PageEvent.Console */) === 0;
304
- const noListenersForConsoleOnWorker = worker.listenerCount(WebWorker_js_1.WebWorkerEvent.Console) === 0;
305
- if (noListenersForConsoleOnPage && noListenersForConsoleOnWorker) {
306
- // eslint-disable-next-line max-len -- The comment is long.
307
- // eslint-disable-next-line @puppeteer/use-using -- These are not owned by this function.
308
- for (const arg of message.args()) {
309
- void arg.dispose().catch(util_js_1.debugError);
310
- }
311
- return;
312
- }
313
- if (!noListenersForConsoleOnPage) {
314
- this.emit("console" /* PageEvent.Console */, message);
315
- }
316
- });
317
- this.emit("workercreated" /* PageEvent.WorkerCreated */, worker);
318
- }
319
- session.on(CDPSession_js_1.CDPSessionEvent.Ready, this.#onAttachedToTarget);
320
- };
321
- async #initialize() {
322
- try {
323
- await Promise.all([
324
- this.#frameManager.initialize(this.#primaryTargetClient),
325
- this.#primaryTargetClient.send('Performance.enable'),
326
- this.#primaryTargetClient.send('Log.enable'),
327
- this.#webmcp.initialize(),
328
- ]);
329
- }
330
- catch (err) {
331
- if ((0, ErrorLike_js_1.isErrorLike)(err) && (0, Connection_js_1.isTargetClosedError)(err)) {
332
- (0, util_js_1.debugError)(err);
333
- }
334
- else {
335
- throw err;
336
- }
337
- }
338
- }
339
- async resize(params) {
340
- const windowId = await this.windowId();
341
- await this.#primaryTargetClient.send('Browser.setContentsSize', {
342
- windowId: Number(windowId),
343
- width: params.contentWidth,
344
- height: params.contentHeight,
345
- });
346
- }
347
- async windowId() {
348
- const { windowId } = await this.#primaryTargetClient.send('Browser.getWindowForTarget');
349
- return windowId.toString();
350
- }
351
- async #onFileChooser(event) {
352
- const env_1 = { stack: [], error: void 0, hasError: false };
353
- try {
354
- if (!this.#fileChooserDeferreds.size) {
355
- return;
356
- }
357
- const frame = this.#frameManager.frame(event.frameId);
358
- (0, assert_js_1.assert)(frame, 'This should never happen.');
359
- // This is guaranteed to be an HTMLInputElement handle by the event.
360
- const handle = __addDisposableResource(env_1, (await frame.worlds[IsolatedWorlds_js_1.MAIN_WORLD].adoptBackendNode(event.backendNodeId)), false);
361
- const fileChooser = new FileChooser_js_1.FileChooser(handle.move(), event.mode !== 'selectSingle');
362
- for (const promise of this.#fileChooserDeferreds) {
363
- promise.resolve(fileChooser);
364
- }
365
- this.#fileChooserDeferreds.clear();
366
- }
367
- catch (e_1) {
368
- env_1.error = e_1;
369
- env_1.hasError = true;
370
- }
371
- finally {
372
- __disposeResources(env_1);
373
- }
374
- }
375
- _client() {
376
- return this.#primaryTargetClient;
377
- }
378
- _isUrlAllowed(url) {
379
- return this.#targetManager.isUrlAllowed(url);
380
- }
381
- isServiceWorkerBypassed() {
382
- return this.#serviceWorkerBypassed;
383
- }
384
- isDragInterceptionEnabled() {
385
- return this.#userDragInterceptionEnabled;
386
- }
387
- isJavaScriptEnabled() {
388
- return this.#emulationManager.javascriptEnabled;
389
- }
390
- async openDevTools() {
391
- const pageTargetId = this.target()._targetId;
392
- const browser = this.browser();
393
- const devtoolsTargetId = await browser._hasDevToolsTarget(this.target()._targetId);
394
- if (devtoolsTargetId) {
395
- return await browser._getDevToolsTargetPage(devtoolsTargetId);
396
- }
397
- const devtoolsPage = await browser._createDevToolsPage(pageTargetId);
398
- return devtoolsPage;
399
- }
400
- async hasDevTools() {
401
- const browser = this.browser();
402
- const targetId = await browser._hasDevToolsTarget(this.target()._targetId);
403
- return Boolean(targetId);
404
- }
405
- async waitForFileChooser(options = {}) {
406
- const needsEnable = this.#fileChooserDeferreds.size === 0;
407
- const { timeout = this._timeoutSettings.timeout() } = options;
408
- const deferred = Deferred_js_1.Deferred.create({
409
- message: `Waiting for \`FileChooser\` failed: ${timeout}ms exceeded`,
410
- timeout,
411
- });
412
- if (options.signal) {
413
- options.signal.addEventListener('abort', () => {
414
- deferred.reject(options.signal?.reason);
415
- }, { once: true });
416
- }
417
- this.#fileChooserDeferreds.add(deferred);
418
- let enablePromise;
419
- if (needsEnable) {
420
- enablePromise = this.#primaryTargetClient.send('Page.setInterceptFileChooserDialog', {
421
- enabled: true,
422
- });
423
- }
424
- try {
425
- const [result] = await Promise.all([
426
- deferred.valueOrThrow(),
427
- enablePromise,
428
- ]);
429
- return result;
430
- }
431
- catch (error) {
432
- this.#fileChooserDeferreds.delete(deferred);
433
- throw error;
434
- }
435
- }
436
- async setGeolocation(options) {
437
- return await this.#emulationManager.setGeolocation(options);
438
- }
439
- target() {
440
- return this.#primaryTarget;
441
- }
442
- browser() {
443
- return this.#primaryTarget.browser();
444
- }
445
- browserContext() {
446
- return this.#primaryTarget.browserContext();
447
- }
448
- #onTargetCrashed() {
449
- this.emit("error" /* PageEvent.Error */, new Error('Page crashed!'));
450
- }
451
- #onLogEntryAdded(event) {
452
- const { level, text, args, source, url, lineNumber, stackTrace } = event.entry;
453
- if (args) {
454
- args.map(arg => {
455
- void (0, JSHandle_js_1.releaseObject)(this.#primaryTargetClient, arg);
456
- });
457
- }
458
- if (source !== 'worker') {
459
- this.emit("console" /* PageEvent.Console */, new ConsoleMessage_js_1.ConsoleMessage((0, utils_js_1.convertConsoleMessageLevel)(level), text, [], [{ url, lineNumber }], undefined, stackTrace, this.#primaryTarget._targetId));
460
- }
461
- }
462
- mainFrame() {
463
- return this.#frameManager.mainFrame();
464
- }
465
- get keyboard() {
466
- return this.#keyboard;
467
- }
468
- get touchscreen() {
469
- return this.#touchscreen;
470
- }
471
- get coverage() {
472
- return this.#coverage;
473
- }
474
- get tracing() {
475
- return this.#tracing;
476
- }
477
- get webmcp() {
478
- return this.#webmcp;
479
- }
480
- frames() {
481
- return this.#frameManager.frames();
482
- }
483
- workers() {
484
- return Array.from(this.#workers.values());
485
- }
486
- async setRequestInterception(value) {
487
- return await this.#frameManager.networkManager.setRequestInterception(value);
488
- }
489
- async setBypassServiceWorker(bypass) {
490
- this.#serviceWorkerBypassed = bypass;
491
- return await this.#primaryTargetClient.send('Network.setBypassServiceWorker', { bypass });
492
- }
493
- async setDragInterception(enabled) {
494
- this.#userDragInterceptionEnabled = enabled;
495
- return await this.#primaryTargetClient.send('Input.setInterceptDrags', {
496
- enabled,
497
- });
498
- }
499
- async setOfflineMode(enabled) {
500
- return await this.#frameManager.networkManager.setOfflineMode(enabled);
501
- }
502
- async emulateNetworkConditions(networkConditions) {
503
- return await this.#frameManager.networkManager.emulateNetworkConditions(networkConditions);
504
- }
505
- async emulateFocusedPage(enabled) {
506
- return await this.#emulationManager.emulateFocus(enabled);
507
- }
508
- setDefaultNavigationTimeout(timeout) {
509
- this._timeoutSettings.setDefaultNavigationTimeout(timeout);
510
- }
511
- setDefaultTimeout(timeout) {
512
- this._timeoutSettings.setDefaultTimeout(timeout);
513
- }
514
- getDefaultTimeout() {
515
- return this._timeoutSettings.timeout();
516
- }
517
- getDefaultNavigationTimeout() {
518
- return this._timeoutSettings.navigationTimeout();
519
- }
520
- async queryObjects(prototypeHandle) {
521
- (0, assert_js_1.assert)(!prototypeHandle.disposed, 'Prototype JSHandle is disposed!');
522
- (0, assert_js_1.assert)(prototypeHandle.id, 'Prototype JSHandle must not be referencing primitive value');
523
- const response = await this.mainFrame().client.send('Runtime.queryObjects', {
524
- prototypeObjectId: prototypeHandle.id,
525
- });
526
- return this.mainFrame()
527
- .mainRealm()
528
- .createCdpHandle(response.objects);
529
- }
530
- async cookies(...urls) {
531
- const originalCookies = (await this.#primaryTargetClient.send('Network.getCookies', {
532
- urls: urls.length ? urls : [this.url()],
533
- })).cookies;
534
- const unsupportedCookieAttributes = ['sourcePort'];
535
- const filterUnsupportedAttributes = (cookie) => {
536
- for (const attr of unsupportedCookieAttributes) {
537
- delete cookie[attr];
538
- }
539
- return cookie;
540
- };
541
- return originalCookies.map(filterUnsupportedAttributes).map(cookie => {
542
- return {
543
- ...cookie,
544
- // TODO: a breaking change is needed in Puppeteer types to support other
545
- // partition keys.
546
- partitionKey: cookie.partitionKey
547
- ? cookie.partitionKey.topLevelSite
548
- : undefined,
549
- // TODO: remove sameParty as it is removed from Chrome.
550
- sameParty: false,
551
- };
552
- });
553
- }
554
- async deleteCookie(...cookies) {
555
- const pageURL = this.url();
556
- for (const cookie of cookies) {
557
- const item = {
558
- ...cookie,
559
- partitionKey: convertCookiesPartitionKeyFromPuppeteerToCdp(cookie.partitionKey),
560
- };
561
- if (!cookie.url && pageURL.startsWith('http')) {
562
- item.url = pageURL;
563
- }
564
- await this.#primaryTargetClient.send('Network.deleteCookies', item);
565
- if (pageURL.startsWith('http') && !item.partitionKey) {
566
- const url = new URL(pageURL);
567
- // Delete also cookies from the page's partition.
568
- await this.#primaryTargetClient.send('Network.deleteCookies', {
569
- ...item,
570
- partitionKey: {
571
- topLevelSite: url.origin.replace(`:${url.port}`, ''),
572
- hasCrossSiteAncestor: false,
573
- },
574
- });
575
- }
576
- }
577
- }
578
- async setCookie(...cookies) {
579
- const pageURL = this.url();
580
- const startsWithHTTP = pageURL.startsWith('http');
581
- const items = cookies.map(cookie => {
582
- const item = Object.assign({}, cookie);
583
- if (!item.url && startsWithHTTP) {
584
- item.url = pageURL;
585
- }
586
- (0, assert_js_1.assert)(item.url !== 'about:blank', `Blank page can not have cookie "${item.name}"`);
587
- (0, assert_js_1.assert)(!String.prototype.startsWith.call(item.url || '', 'data:'), `Data URL page can not have cookie "${item.name}"`);
588
- return item;
589
- });
590
- await this.deleteCookie(...items);
591
- if (items.length) {
592
- await this.#primaryTargetClient.send('Network.setCookies', {
593
- cookies: items.map(cookieParam => {
594
- return {
595
- ...cookieParam,
596
- partitionKey: convertCookiesPartitionKeyFromPuppeteerToCdp(cookieParam.partitionKey),
597
- sameSite: convertSameSiteFromPuppeteerToCdp(cookieParam.sameSite),
598
- };
599
- }),
600
- });
601
- }
602
- }
603
- async exposeFunction(name,
604
- // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
605
- pptrFunction) {
606
- if (this.#bindings.has(name)) {
607
- throw new Error(`Failed to add page binding with name ${name}: window['${name}'] already exists!`);
608
- }
609
- const source = (0, utils_js_1.pageBindingInitString)('exposedFun', name);
610
- let binding;
611
- switch (typeof pptrFunction) {
612
- case 'function':
613
- binding = new Binding_js_1.Binding(name, pptrFunction, source);
614
- break;
615
- default:
616
- binding = new Binding_js_1.Binding(name, pptrFunction.default, source);
617
- break;
618
- }
619
- this.#bindings.set(name, binding);
620
- const [{ identifier }] = await Promise.all([
621
- this.#frameManager.evaluateOnNewDocument(source),
622
- this.#frameManager.addExposedFunctionBinding(binding),
623
- ]);
624
- this.#exposedFunctions.set(name, identifier);
625
- }
626
- async removeExposedFunction(name) {
627
- const exposedFunctionId = this.#exposedFunctions.get(name);
628
- if (!exposedFunctionId) {
629
- throw new Error(`Function with name "${name}" does not exist`);
630
- }
631
- // #bindings must be updated together with #exposedFunctions.
632
- const binding = this.#bindings.get(name);
633
- this.#exposedFunctions.delete(name);
634
- this.#bindings.delete(name);
635
- await Promise.all([
636
- this.#frameManager.removeScriptToEvaluateOnNewDocument(exposedFunctionId),
637
- this.#frameManager.removeExposedFunctionBinding(binding),
638
- ]);
639
- }
640
- async authenticate(credentials) {
641
- return await this.#frameManager.networkManager.authenticate(credentials);
642
- }
643
- async setExtraHTTPHeaders(headers) {
644
- return await this.#frameManager.networkManager.setExtraHTTPHeaders(headers);
645
- }
646
- async setUserAgent(userAgentOrOptions, userAgentMetadata) {
647
- if (typeof userAgentOrOptions === 'string') {
648
- return await this.#frameManager.networkManager.setUserAgent(userAgentOrOptions, userAgentMetadata);
649
- }
650
- else {
651
- const userAgent = userAgentOrOptions.userAgent ?? (await this.browser().userAgent());
652
- return await this.#frameManager.networkManager.setUserAgent(userAgent, userAgentOrOptions.userAgentMetadata, userAgentOrOptions.platform);
653
- }
654
- }
655
- async metrics() {
656
- const response = await this.#primaryTargetClient.send('Performance.getMetrics');
657
- return this.#buildMetricsObject(response.metrics);
658
- }
659
- async captureHeapSnapshot(options) {
660
- const { createWriteStream } = environment_js_1.environment.value.fs;
661
- const stream = createWriteStream(options.path);
662
- const streamPromise = new Promise((resolve, reject) => {
663
- stream.on('error', reject);
664
- stream.on('finish', resolve);
665
- });
666
- const client = this.#primaryTargetClient;
667
- await client.send('HeapProfiler.enable');
668
- await client.send('HeapProfiler.collectGarbage');
669
- const handler = (event) => {
670
- stream.write(event.chunk);
671
- };
672
- client.on('HeapProfiler.addHeapSnapshotChunk', handler);
673
- try {
674
- await client.send('HeapProfiler.takeHeapSnapshot', {
675
- reportProgress: false,
676
- });
677
- }
678
- finally {
679
- client.off('HeapProfiler.addHeapSnapshotChunk', handler);
680
- await client.send('HeapProfiler.disable');
681
- }
682
- stream.end();
683
- await streamPromise;
684
- }
685
- #emitMetrics(event) {
686
- this.emit("metrics" /* PageEvent.Metrics */, {
687
- title: event.title,
688
- metrics: this.#buildMetricsObject(event.metrics),
689
- });
690
- }
691
- #buildMetricsObject(metrics) {
692
- const result = {};
693
- for (const metric of metrics || []) {
694
- if (supportedMetrics.has(metric.name)) {
695
- result[metric.name] = metric.value;
696
- }
697
- }
698
- return result;
699
- }
700
- #handleException(exception) {
701
- this.emit("pageerror" /* PageEvent.PageError */, (0, utils_js_1.createClientError)(exception.exceptionDetails));
702
- }
703
- #onConsoleAPI(world, event, values) {
704
- if (!values) {
705
- values = event.args.map(arg => {
706
- return world.createCdpHandle(arg);
707
- });
708
- }
709
- const hasPageConsoleListeners = this.listenerCount("console" /* PageEvent.Console */) > 0;
710
- const hasWorkerConsoleListeners = world.environment instanceof WebWorker_js_1.WebWorker &&
711
- world.environment.listenerCount(WebWorker_js_1.WebWorkerEvent.Console) > 0;
712
- if (!hasPageConsoleListeners) {
713
- if (!hasWorkerConsoleListeners) {
714
- // eslint-disable-next-line max-len -- The comment is long.
715
- // eslint-disable-next-line @puppeteer/use-using -- These are not owned by this function.
716
- for (const value of values) {
717
- void value.dispose().catch(util_js_1.debugError);
718
- }
719
- }
720
- return;
721
- }
722
- let targetId;
723
- if (world.environment.client instanceof CdpSession_js_1.CdpCDPSession) {
724
- targetId = world.environment.client.target()._targetId;
725
- }
726
- this.emit("console" /* PageEvent.Console */, (0, utils_js_1.createConsoleMessage)(event, values, targetId));
727
- }
728
- async #onBindingCalled(world, event) {
729
- let payload;
730
- try {
731
- payload = JSON.parse(event.payload);
732
- }
733
- catch {
734
- // The binding was either called by something in the page or it was
735
- // called before our wrapper was initialized.
736
- return;
737
- }
738
- const { type, name, seq, args, isTrivial } = payload;
739
- if (type !== 'exposedFun') {
740
- return;
741
- }
742
- const context = world.context;
743
- if (!context) {
744
- return;
745
- }
746
- const binding = this.#bindings.get(name);
747
- await binding?.run(context, seq, args, isTrivial);
748
- }
749
- #onDialog(event) {
750
- const type = (0, util_js_1.validateDialogType)(event.type);
751
- const dialog = new Dialog_js_1.CdpDialog(this.#primaryTargetClient, type, event.message, event.defaultPrompt);
752
- this.emit("dialog" /* PageEvent.Dialog */, dialog);
753
- }
754
- async reload(options) {
755
- const [result] = await Promise.all([
756
- this.waitForNavigation({
757
- ...options,
758
- ignoreSameDocumentNavigation: true,
759
- }),
760
- this.#primaryTargetClient.send('Page.reload', {
761
- ignoreCache: options?.ignoreCache ?? false,
762
- }),
763
- ]);
764
- return result;
765
- }
766
- async createCDPSession() {
767
- return await this.target().createCDPSession();
768
- }
769
- async goBack(options = {}) {
770
- return await this.#go(-1, options);
771
- }
772
- async goForward(options = {}) {
773
- return await this.#go(+1, options);
774
- }
775
- async #go(delta, options) {
776
- const history = await this.#primaryTargetClient.send('Page.getNavigationHistory');
777
- const entry = history.entries[history.currentIndex + delta];
778
- if (!entry) {
779
- throw new Error('History entry to navigate to not found.');
780
- }
781
- const result = await Promise.all([
782
- this.waitForNavigation(options),
783
- this.#primaryTargetClient.send('Page.navigateToHistoryEntry', {
784
- entryId: entry.id,
785
- }),
786
- ]);
787
- return result[0];
788
- }
789
- async bringToFront() {
790
- await this.#primaryTargetClient.send('Page.bringToFront');
791
- }
792
- async setJavaScriptEnabled(enabled) {
793
- return await this.#emulationManager.setJavaScriptEnabled(enabled);
794
- }
795
- async setBypassCSP(enabled) {
796
- await this.#primaryTargetClient.send('Page.setBypassCSP', { enabled });
797
- }
798
- async triggerExtensionAction(extension) {
799
- return await extension.triggerAction(this);
800
- }
801
- async emulateMediaType(type) {
802
- return await this.#emulationManager.emulateMediaType(type);
803
- }
804
- async emulateCPUThrottling(factor) {
805
- return await this.#emulationManager.emulateCPUThrottling(factor);
806
- }
807
- async emulateMediaFeatures(features) {
808
- return await this.#emulationManager.emulateMediaFeatures(features);
809
- }
810
- async emulateTimezone(timezoneId) {
811
- return await this.#emulationManager.emulateTimezone(timezoneId);
812
- }
813
- async emulateIdleState(overrides) {
814
- return await this.#emulationManager.emulateIdleState(overrides);
815
- }
816
- async emulateVisionDeficiency(type) {
817
- return await this.#emulationManager.emulateVisionDeficiency(type);
818
- }
819
- async setViewport(viewport) {
820
- const needsReload = await this.#emulationManager.emulateViewport(viewport);
821
- this.#viewport = viewport;
822
- if (needsReload) {
823
- await this.reload();
824
- }
825
- }
826
- viewport() {
827
- return this.#viewport;
828
- }
829
- async evaluateOnNewDocument(pageFunction, ...args) {
830
- const source = (0, util_js_1.evaluationString)(pageFunction, ...args);
831
- return await this.#frameManager.evaluateOnNewDocument(source);
832
- }
833
- async removeScriptToEvaluateOnNewDocument(identifier) {
834
- return await this.#frameManager.removeScriptToEvaluateOnNewDocument(identifier);
835
- }
836
- async setCacheEnabled(enabled = true) {
837
- await this.#frameManager.networkManager.setCacheEnabled(enabled);
838
- }
839
- async _screenshot(options) {
840
- const env_2 = { stack: [], error: void 0, hasError: false };
841
- try {
842
- const { fromSurface, omitBackground, optimizeForSpeed, quality, clip: userClip, type, captureBeyondViewport, } = options;
843
- const stack = __addDisposableResource(env_2, new disposable_js_1.AsyncDisposableStack(), true);
844
- if (omitBackground && (type === 'png' || type === 'webp')) {
845
- await this.#emulationManager.setTransparentBackgroundColor();
846
- stack.defer(async () => {
847
- await this.#emulationManager
848
- .resetDefaultBackgroundColor()
849
- .catch(util_js_1.debugError);
850
- });
851
- }
852
- let clip = userClip;
853
- if (clip && !captureBeyondViewport) {
854
- const viewport = await this.mainFrame()
855
- .isolatedRealm()
856
- .evaluate(() => {
857
- const { height, pageLeft: x, pageTop: y, width, } = window.visualViewport;
858
- return { x, y, height, width };
859
- });
860
- clip = getIntersectionRect(clip, viewport);
861
- }
862
- const { data } = await this.#primaryTargetClient.send('Page.captureScreenshot', {
863
- format: type,
864
- optimizeForSpeed,
865
- fromSurface,
866
- ...(quality !== undefined ? { quality: Math.round(quality) } : {}),
867
- ...(clip ? { clip: { ...clip, scale: clip.scale ?? 1 } } : {}),
868
- captureBeyondViewport,
869
- });
870
- return data;
871
- }
872
- catch (e_2) {
873
- env_2.error = e_2;
874
- env_2.hasError = true;
875
- }
876
- finally {
877
- const result_1 = __disposeResources(env_2);
878
- if (result_1)
879
- await result_1;
880
- }
881
- }
882
- async createPDFStream(options = {}) {
883
- const { timeout: ms = this._timeoutSettings.timeout() } = options;
884
- const { landscape, displayHeaderFooter, headerTemplate, footerTemplate, printBackground, scale, width: paperWidth, height: paperHeight, margin, pageRanges, preferCSSPageSize, omitBackground, tagged: generateTaggedPDF, outline: generateDocumentOutline, waitForFonts, } = (0, util_js_1.parsePDFOptions)(options);
885
- if (omitBackground) {
886
- await this.#emulationManager.setTransparentBackgroundColor();
887
- }
888
- if (waitForFonts) {
889
- await (0, rxjs_js_1.firstValueFrom)((0, rxjs_js_1.from)(this.mainFrame()
890
- .isolatedRealm()
891
- .evaluate(() => {
892
- return document.fonts.ready;
893
- })).pipe((0, rxjs_js_1.raceWith)((0, util_js_1.timeout)(ms))));
894
- }
895
- const printCommandPromise = this.#primaryTargetClient.send('Page.printToPDF', {
896
- transferMode: 'ReturnAsStream',
897
- landscape,
898
- displayHeaderFooter,
899
- headerTemplate,
900
- footerTemplate,
901
- printBackground,
902
- scale,
903
- paperWidth,
904
- paperHeight,
905
- marginTop: margin.top,
906
- marginBottom: margin.bottom,
907
- marginLeft: margin.left,
908
- marginRight: margin.right,
909
- pageRanges,
910
- preferCSSPageSize,
911
- generateTaggedPDF,
912
- generateDocumentOutline,
913
- });
914
- const result = await (0, rxjs_js_1.firstValueFrom)((0, rxjs_js_1.from)(printCommandPromise).pipe((0, rxjs_js_1.raceWith)((0, util_js_1.timeout)(ms))));
915
- if (omitBackground) {
916
- await this.#emulationManager.resetDefaultBackgroundColor();
917
- }
918
- (0, assert_js_1.assert)(result.stream, '`stream` is missing from `Page.printToPDF');
919
- return await (0, util_js_1.getReadableFromProtocolStream)(this.#primaryTargetClient, result.stream);
920
- }
921
- async pdf(options = {}) {
922
- const { path = undefined } = options;
923
- const readable = await this.createPDFStream(options);
924
- const typedArray = await (0, util_js_1.getReadableAsTypedArray)(readable, path);
925
- (0, assert_js_1.assert)(typedArray, 'Could not create typed array');
926
- return typedArray;
927
- }
928
- async close(options = { runBeforeUnload: undefined }) {
929
- const env_3 = { stack: [], error: void 0, hasError: false };
930
- try {
931
- const _guard = __addDisposableResource(env_3, await this.browserContext().waitForScreenshotOperations(), false);
932
- const connection = this.#primaryTargetClient.connection();
933
- (0, assert_js_1.assert)(connection, 'Connection closed. Most likely the page has been closed.');
934
- const runBeforeUnload = !!options.runBeforeUnload;
935
- if (runBeforeUnload) {
936
- await this.#primaryTargetClient.send('Page.close');
937
- }
938
- else {
939
- await connection.send('Target.closeTarget', {
940
- targetId: this.#primaryTarget._targetId,
941
- });
942
- await this.#tabTarget._isClosedDeferred.valueOrThrow();
943
- }
944
- }
945
- catch (e_3) {
946
- env_3.error = e_3;
947
- env_3.hasError = true;
948
- }
949
- finally {
950
- __disposeResources(env_3);
951
- }
952
- }
953
- isClosed() {
954
- return this.#closed;
955
- }
956
- get mouse() {
957
- return this.#mouse;
958
- }
959
- /**
960
- * This method is typically coupled with an action that triggers a device
961
- * request from an api such as WebBluetooth.
962
- *
963
- * :::caution
964
- *
965
- * This must be called before the device request is made. It will not return a
966
- * currently active device prompt.
967
- *
968
- * :::
969
- *
970
- * @example
971
- *
972
- * ```ts
973
- * const [devicePrompt] = Promise.all([
974
- * page.waitForDevicePrompt(),
975
- * page.click('#connect-bluetooth'),
976
- * ]);
977
- * await devicePrompt.select(
978
- * await devicePrompt.waitForDevice(({name}) => name.includes('My Device')),
979
- * );
980
- * ```
981
- */
982
- async waitForDevicePrompt(options = {}) {
983
- return await this.mainFrame().waitForDevicePrompt(options);
984
- }
985
- get bluetooth() {
986
- return this.#cdpBluetoothEmulation;
987
- }
988
- extensionRealms() {
989
- return this.mainFrame().extensionRealms();
990
- }
991
- }
992
- exports.CdpPage = CdpPage;
993
- const supportedMetrics = new Set([
994
- 'Timestamp',
995
- 'Documents',
996
- 'Frames',
997
- 'JSEventListeners',
998
- 'Nodes',
999
- 'LayoutCount',
1000
- 'RecalcStyleCount',
1001
- 'LayoutDuration',
1002
- 'RecalcStyleDuration',
1003
- 'ScriptDuration',
1004
- 'TaskDuration',
1005
- 'JSHeapUsedSize',
1006
- 'JSHeapTotalSize',
1007
- ]);
1008
- /** @see https://w3c.github.io/webdriver-bidi/#rectangle-intersection */
1009
- function getIntersectionRect(clip, viewport) {
1010
- // Note these will already be normalized.
1011
- const x = Math.max(clip.x, viewport.x);
1012
- const y = Math.max(clip.y, viewport.y);
1013
- return {
1014
- x,
1015
- y,
1016
- width: Math.max(Math.min(clip.x + clip.width, viewport.x + viewport.width) - x, 0),
1017
- height: Math.max(Math.min(clip.y + clip.height, viewport.y + viewport.height) - y, 0),
1018
- };
1019
- }
1020
- /**
1021
- * @internal
1022
- */
1023
- function convertCookiesPartitionKeyFromPuppeteerToCdp(partitionKey) {
1024
- if (partitionKey === undefined) {
1025
- return undefined;
1026
- }
1027
- if (typeof partitionKey === 'string') {
1028
- return {
1029
- topLevelSite: partitionKey,
1030
- hasCrossSiteAncestor: false,
1031
- };
1032
- }
1033
- return {
1034
- topLevelSite: partitionKey.sourceOrigin,
1035
- hasCrossSiteAncestor: partitionKey.hasCrossSiteAncestor ?? false,
1036
- };
1037
- }
1038
- //# sourceMappingURL=Page.js.map