Rocky_Mountain_Vending/.pnpm-store/v10/files/f4/6fe1a481c211c139ebba360701bd1108419533b0fe56a0a467ce87773eb98b20fdf7827f9a8f4ef517e2c368ba594f110ffb63bdd2e223bf95d7f6211ddd12
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
No EOL
1.6 KiB
Text

"use strict";
/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports._connectToCdpBrowser = _connectToCdpBrowser;
const util_js_1 = require("../common/util.js");
const incremental_id_generator_js_1 = require("../util/incremental-id-generator.js");
const Browser_js_1 = require("./Browser.js");
const Connection_js_1 = require("./Connection.js");
/**
* Users should never call this directly; it's called when calling
* `puppeteer.connect` with `protocol: 'cdp'`.
*
* @internal
*/
async function _connectToCdpBrowser(connectionTransport, url, options) {
const { acceptInsecureCerts = false, networkEnabled = true, defaultViewport = util_js_1.DEFAULT_VIEWPORT, downloadBehavior, targetFilter, _isPageTarget: isPageTarget, slowMo = 0, protocolTimeout, handleDevToolsAsPage, idGenerator = (0, incremental_id_generator_js_1.createIncrementalIdGenerator)(), } = options;
const connection = new Connection_js_1.Connection(url, connectionTransport, slowMo, protocolTimeout,
/* rawErrors */ false, idGenerator);
const { browserContextIds } = await connection.send('Target.getBrowserContexts');
const browser = await Browser_js_1.CdpBrowser._create(connection, browserContextIds, acceptInsecureCerts, defaultViewport, downloadBehavior, undefined, () => {
return connection.send('Browser.close').catch(util_js_1.debugError);
}, targetFilter, isPageTarget, undefined, networkEnabled, handleDevToolsAsPage);
return browser;
}
//# sourceMappingURL=BrowserConnector.js.map