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:
Norm Rasmussen
2024-01-05 17:07:59 -05:00
parent ce261975ca
commit a5fe4bd2c8
3157 changed files with 554269 additions and 16 deletions

View File

@ -0,0 +1,205 @@
/**
* Copyright 2022 Google LLC.
* Copyright (c) Microsoft Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview Provides parsing and validator for WebDriver BiDi protocol.
* Parser types should match the `../protocol` types.
*/
import { z, type ZodType } from 'zod';
import type * as Protocol from '../protocol/protocol.js';
export declare function parseObject<T extends ZodType>(obj: unknown, schema: T): z.infer<T>;
/** @see https://w3c.github.io/webdriver-bidi/#module-network */
export declare namespace Network {
function parseAddInterceptParameters(params: unknown): {
phases: ("beforeRequestSent" | "responseStarted" | "authRequired")[];
urlPatterns?: ({
type: "pattern";
protocol?: string | undefined;
hostname?: string | undefined;
port?: string | undefined;
pathname?: string | undefined;
search?: string | undefined;
} | {
type: "string";
pattern: string;
})[] | undefined;
};
function parseContinueRequestParameters(params: unknown): {
request: string;
body?: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
} | undefined;
cookies?: {
value: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
};
name: string;
}[] | undefined;
headers?: {
value: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
};
name: string;
}[] | undefined;
method?: string | undefined;
url?: string | undefined;
};
function parseContinueResponseParameters(params: unknown): {
request: string;
cookies?: {
value: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
};
name: string;
domain?: string | undefined;
httpOnly?: boolean | undefined;
expiry?: string | undefined;
maxAge?: number | undefined;
path?: string | undefined;
sameSite?: "strict" | "none" | "lax" | undefined;
secure?: boolean | undefined;
}[] | undefined;
credentials?: {
type: "password";
password: string;
username: string;
} | undefined;
headers?: {
value: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
};
name: string;
}[] | undefined;
reasonPhrase?: string | undefined;
statusCode?: number | undefined;
};
function parseContinueWithAuthParameters(params: unknown): {
request: string;
} & ({
credentials: {
type: "password";
password: string;
username: string;
};
action: "provideCredentials";
} | {
action: "default" | "cancel";
});
function parseFailRequestParameters(params: unknown): {
request: string;
};
function parseProvideResponseParameters(params: unknown): {
request: string;
body?: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
} | undefined;
cookies?: {
value: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
};
name: string;
domain?: string | undefined;
httpOnly?: boolean | undefined;
expiry?: string | undefined;
maxAge?: number | undefined;
path?: string | undefined;
sameSite?: "strict" | "none" | "lax" | undefined;
secure?: boolean | undefined;
}[] | undefined;
headers?: {
value: {
type: "string";
value: string;
} | {
type: "base64";
value: string;
};
name: string;
}[] | undefined;
reasonPhrase?: string | undefined;
statusCode?: number | undefined;
};
function parseRemoveInterceptParameters(params: unknown): {
intercept: string;
};
}
/** @see https://w3c.github.io/webdriver-bidi/#module-script */
export declare namespace Script {
function parseGetRealmsParams(params: unknown): Protocol.Script.GetRealmsParameters;
function parseEvaluateParams(params: unknown): Protocol.Script.EvaluateParameters;
function parseDisownParams(params: unknown): Protocol.Script.DisownParameters;
function parseAddPreloadScriptParams(params: unknown): Protocol.Script.AddPreloadScriptParameters;
function parseRemovePreloadScriptParams(params: unknown): {
script: string;
};
function parseCallFunctionParams(params: unknown): Protocol.Script.CallFunctionParameters;
}
/** @see https://w3c.github.io/webdriver-bidi/#module-browsingContext */
export declare namespace BrowsingContext {
function parseActivateParams(params: unknown): {
context: string;
};
function parseGetTreeParams(params: unknown): Protocol.BrowsingContext.GetTreeParameters;
function parseNavigateParams(params: unknown): Protocol.BrowsingContext.NavigateParameters;
function parseReloadParams(params: unknown): Protocol.BrowsingContext.ReloadParameters;
function parseCreateParams(params: unknown): Protocol.BrowsingContext.CreateParameters;
function parseCloseParams(params: unknown): Protocol.BrowsingContext.CloseParameters;
function parseCaptureScreenshotParams(params: unknown): Protocol.BrowsingContext.CaptureScreenshotParameters;
function parsePrintParams(params: unknown): Protocol.BrowsingContext.PrintParameters;
function parseSetViewportParams(params: unknown): Protocol.BrowsingContext.SetViewportParameters;
function parseTraverseHistoryParams(params: unknown): Protocol.BrowsingContext.TraverseHistoryParameters;
function parseHandleUserPromptParameters(params: unknown): Protocol.BrowsingContext.HandleUserPromptParameters;
}
/** @see https://w3c.github.io/webdriver-bidi/#module-session */
export declare namespace Session {
function parseSubscribeParams(params: unknown): Protocol.Session.SubscriptionRequest;
}
export declare namespace Input {
function parsePerformActionsParams(params: unknown): Protocol.Input.PerformActionsParameters;
function parseReleaseActionsParams(params: unknown): Protocol.Input.ReleaseActionsParameters;
}
export declare namespace Cdp {
function parseSendCommandRequest(params: unknown): Protocol.Cdp.SendCommandParameters;
function parseGetSessionRequest(params: unknown): Protocol.Cdp.GetSessionParameters;
}