Skip to content

Commit f0d012c

Browse files
author
copybara-service
committed
deploy: 94e5f10
1 parent a3df6ba commit f0d012c

151 files changed

Lines changed: 2279 additions & 453 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

front_end/core/host/AidaClient.js

Lines changed: 32 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/host/AidaClient.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/host/DispatchHttpRequestClient.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
import type { DispatchHttpRequestRequest } from './InspectorFrontendHostAPI.js';
1+
import type { DispatchHttpRequestRequest, DispatchHttpRequestResult } from './InspectorFrontendHostAPI.js';
22
export declare enum ErrorType {
33
HTTP_RESPONSE_UNAVAILABLE = "HTTP_RESPONSE_UNAVAILABLE",
44
NOT_FOUND = "NOT_FOUND",
55
ABORT = "ABORT"
66
}
77
export declare class DispatchHttpRequestError extends Error {
88
readonly type: ErrorType;
9-
constructor(type: ErrorType, options?: ErrorOptions);
9+
readonly response?: DispatchHttpRequestResult | undefined;
10+
constructor(type: ErrorType, response?: DispatchHttpRequestResult | undefined, options?: ErrorOptions);
1011
}
1112
export declare function makeHttpRequest<R>(request: DispatchHttpRequestRequest, options?: {
1213
signal?: AbortSignal;

front_end/core/host/DispatchHttpRequestClient.js

Lines changed: 9 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/host/DispatchHttpRequestClient.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/host/InspectorFrontendHostAPI.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,14 @@ export type DispatchHttpRequestRequest = {
197197
path: string;
198198
method: 'GET';
199199
queryParams?: Record<string, string | string[]>;
200+
streamId?: number;
200201
body?: never;
201202
} | {
202203
service: string;
203204
path: string;
204205
method: 'POST';
205206
queryParams?: Record<string, string | string[]>;
207+
streamId?: number;
206208
body?: string;
207209
};
208210
interface DispatchHttpRequestSuccessResult {

front_end/core/host/InspectorFrontendHostAPI.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/host/host.js

Lines changed: 39 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/host/host.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/i18n/locales/en-GB.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)