Tons of Solutions Engineering work done today for the rest of the CS team! Headway, Howard Hanna, Engels, Brighton, etc. Also completed Datasnippers auth flow and worked on Anthology's script. Cloned Anthology's courses (900..) and will clone Full Story on Monday.
This commit is contained in:
135
Scripts/node_modules/chromium-bidi/lib/cjs/bidiTab/BidiParser.js
generated
vendored
Normal file
135
Scripts/node_modules/chromium-bidi/lib/cjs/bidiTab/BidiParser.js
generated
vendored
Normal file
@ -0,0 +1,135 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BidiParser = void 0;
|
||||
const Parser = __importStar(require("../protocol-parser/protocol-parser.js"));
|
||||
class BidiParser {
|
||||
// Browsing Context domain
|
||||
// keep-sorted start block=yes
|
||||
parseActivateParams(params) {
|
||||
return Parser.BrowsingContext.parseActivateParams(params);
|
||||
}
|
||||
parseCaptureScreenshotParams(params) {
|
||||
return Parser.BrowsingContext.parseCaptureScreenshotParams(params);
|
||||
}
|
||||
parseCloseParams(params) {
|
||||
return Parser.BrowsingContext.parseCloseParams(params);
|
||||
}
|
||||
parseCreateParams(params) {
|
||||
return Parser.BrowsingContext.parseCreateParams(params);
|
||||
}
|
||||
parseGetTreeParams(params) {
|
||||
return Parser.BrowsingContext.parseGetTreeParams(params);
|
||||
}
|
||||
parseHandleUserPromptParams(params) {
|
||||
return Parser.BrowsingContext.parseHandleUserPromptParameters(params);
|
||||
}
|
||||
parseNavigateParams(params) {
|
||||
return Parser.BrowsingContext.parseNavigateParams(params);
|
||||
}
|
||||
parsePrintParams(params) {
|
||||
return Parser.BrowsingContext.parsePrintParams(params);
|
||||
}
|
||||
parseReloadParams(params) {
|
||||
return Parser.BrowsingContext.parseReloadParams(params);
|
||||
}
|
||||
parseSetViewportParams(params) {
|
||||
return Parser.BrowsingContext.parseSetViewportParams(params);
|
||||
}
|
||||
parseTraverseHistoryParams(params) {
|
||||
return Parser.BrowsingContext.parseTraverseHistoryParams(params);
|
||||
}
|
||||
// keep-sorted end
|
||||
// CDP domain
|
||||
// keep-sorted start block=yes
|
||||
parseGetSessionParams(params) {
|
||||
return Parser.Cdp.parseGetSessionRequest(params);
|
||||
}
|
||||
parseSendCommandParams(params) {
|
||||
return Parser.Cdp.parseSendCommandRequest(params);
|
||||
}
|
||||
// keep-sorted end
|
||||
// Input domain
|
||||
// keep-sorted start block=yes
|
||||
parsePerformActionsParams(params) {
|
||||
return Parser.Input.parsePerformActionsParams(params);
|
||||
}
|
||||
parseReleaseActionsParams(params) {
|
||||
return Parser.Input.parseReleaseActionsParams(params);
|
||||
}
|
||||
// keep-sorted end
|
||||
// Network domain
|
||||
// keep-sorted start block=yes
|
||||
parseAddInterceptParams(params) {
|
||||
return Parser.Network.parseAddInterceptParameters(params);
|
||||
}
|
||||
parseContinueRequestParams(params) {
|
||||
return Parser.Network.parseContinueRequestParameters(params);
|
||||
}
|
||||
parseContinueResponseParams(params) {
|
||||
return Parser.Network.parseContinueResponseParameters(params);
|
||||
}
|
||||
parseContinueWithAuthParams(params) {
|
||||
return Parser.Network.parseContinueWithAuthParameters(params);
|
||||
}
|
||||
parseFailRequestParams(params) {
|
||||
return Parser.Network.parseFailRequestParameters(params);
|
||||
}
|
||||
parseProvideResponseParams(params) {
|
||||
return Parser.Network.parseProvideResponseParameters(params);
|
||||
}
|
||||
parseRemoveInterceptParams(params) {
|
||||
return Parser.Network.parseRemoveInterceptParameters(params);
|
||||
}
|
||||
// keep-sorted end
|
||||
// Script domain
|
||||
// keep-sorted start block=yes
|
||||
parseAddPreloadScriptParams(params) {
|
||||
return Parser.Script.parseAddPreloadScriptParams(params);
|
||||
}
|
||||
parseCallFunctionParams(params) {
|
||||
return Parser.Script.parseCallFunctionParams(params);
|
||||
}
|
||||
parseDisownParams(params) {
|
||||
return Parser.Script.parseDisownParams(params);
|
||||
}
|
||||
parseEvaluateParams(params) {
|
||||
return Parser.Script.parseEvaluateParams(params);
|
||||
}
|
||||
parseGetRealmsParams(params) {
|
||||
return Parser.Script.parseGetRealmsParams(params);
|
||||
}
|
||||
parseRemovePreloadScriptParams(params) {
|
||||
return Parser.Script.parseRemovePreloadScriptParams(params);
|
||||
}
|
||||
// keep-sorted end
|
||||
// Session domain
|
||||
// keep-sorted start block=yes
|
||||
parseSubscribeParams(params) {
|
||||
return Parser.Session.parseSubscribeParams(params);
|
||||
}
|
||||
}
|
||||
exports.BidiParser = BidiParser;
|
||||
//# sourceMappingURL=BidiParser.js.map
|
||||
Reference in New Issue
Block a user