Skip to content

Commit

Permalink
Build 21-07-2024 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] and web-flow authored Jul 21, 2024
1 parent b5cd88a commit 4496624
Show file tree
Hide file tree
Showing 534 changed files with 7,488 additions and 2,233 deletions.
23 changes: 6 additions & 17 deletions public/core/common/Color.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,25 +334,14 @@ export declare const IsolationModeHighlight: {
ResizerHandle: Legacy;
Mask: Legacy;
};
type Space = number | {
min: number;
max: number;
count: (number | undefined);
};
export declare class Generator {
#private;
constructor(hueSpace?: number | {
min: number;
max: number;
count: (number | undefined);
}, satSpace?: number | {
min: number;
max: number;
count: (number | undefined);
}, lightnessSpace?: number | {
min: number;
max: number;
count: (number | undefined);
}, alphaSpace?: number | {
min: number;
max: number;
count: (number | undefined);
});
constructor(hueSpace?: Space, satSpace?: Space, lightnessSpace?: Space, alphaSpace?: Space);
setColorForID(id: string, color: string): void;
colorForID(id: string): string;
private generateColorForID;
Expand Down
2 changes: 1 addition & 1 deletion public/core/common/Color.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion public/core/host/AidaClient.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { type AidaClientResult } from './InspectorFrontendHostAPI.js';
export declare enum Entity {
UNKNOWN = 0,
USER = 1,
Expand Down Expand Up @@ -32,6 +33,7 @@ export interface AidaRequest {
};
metadata?: {
disable_user_content_logging: boolean;
string_session_id?: string;
};
functionality_type?: FunctionalityType;
client_feature?: ClientFeature;
Expand Down Expand Up @@ -83,5 +85,5 @@ export declare class AidaClient {
static buildConsoleInsightsRequest(input: string): AidaRequest;
static getAidaClientAvailability(): Promise<AidaAvailability>;
fetch(request: AidaRequest): AsyncGenerator<AidaResponse, void, void>;
registerClientEvent(clientEvent: AidaDoConversationClientEvent): void;
registerClientEvent(clientEvent: AidaDoConversationClientEvent): Promise<AidaClientResult>;
}
4 changes: 3 additions & 1 deletion public/core/host/AidaClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/host/AidaClient.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/host/AidaClient.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/host/AidaClient.test.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/core/host/InspectorFrontendHost.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as Common from '../common/common.js';
import * as Platform from '../platform/platform.js';
import * as Root from '../root/root.js';
import { type CanShowSurveyResult, type ChangeEvent, type ClickEvent, type ContextMenuDescriptor, type DoAidaConversationResult, type DragEvent, type EnumeratedHistogram, type EventTypes, type ExtensionDescriptor, type HoverEvent, type ImpressionEvent, type InspectorFrontendHostAPI, type KeyDownEvent, type LoadNetworkResourceResult, type ResizeEvent, type ShowSurveyResult, type SyncInformation } from './InspectorFrontendHostAPI.js';
import { type AidaClientResult, type CanShowSurveyResult, type ChangeEvent, type ClickEvent, type ContextMenuDescriptor, type DoAidaConversationResult, type DragEvent, type EnumeratedHistogram, type EventTypes, type ExtensionDescriptor, type HoverEvent, type ImpressionEvent, type InspectorFrontendHostAPI, type KeyDownEvent, type LoadNetworkResourceResult, type ResizeEvent, type ShowSurveyResult, type SyncInformation } from './InspectorFrontendHostAPI.js';
/**
* The InspectorFrontendHostStub is a stub interface used the frontend is loaded like a webpage. Examples:
* - devtools://devtools/bundled/devtools_app.html
Expand Down Expand Up @@ -105,7 +105,7 @@ export declare class InspectorFrontendHostStub implements InspectorFrontendHostA
setAddExtensionCallback(callback: (arg0: ExtensionDescriptor) => void): void;
initialTargetId(): Promise<string | null>;
doAidaConversation(request: string, streamId: number, callback: (result: DoAidaConversationResult) => void): void;
registerAidaClientEvent(request: string): void;
registerAidaClientEvent(request: string, callback: (result: AidaClientResult) => void): void;
recordImpression(event: ImpressionEvent): void;
recordResize(event: ResizeEvent): void;
recordClick(event: ClickEvent): void;
Expand Down
15 changes: 8 additions & 7 deletions public/core/host/InspectorFrontendHost.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/host/InspectorFrontendHost.js.map

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion public/core/host/InspectorFrontendHostAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ export interface DoAidaConversationResult {
error?: string;
detail?: string;
}
export interface AidaClientResult {
response?: string;
error?: string;
detail?: string;
}
export interface VisualElementImpression {
id: number;
type: number;
Expand Down Expand Up @@ -238,7 +243,7 @@ export interface InspectorFrontendHostAPI {
setAddExtensionCallback(callback: (arg0: ExtensionDescriptor) => void): void;
initialTargetId(): Promise<string | null>;
doAidaConversation: (request: string, streamId: number, cb: (result: DoAidaConversationResult) => void) => void;
registerAidaClientEvent: (request: string) => void;
registerAidaClientEvent: (request: string, cb: (result: AidaClientResult) => void) => void;
recordImpression(event: ImpressionEvent): void;
recordClick(event: ClickEvent): void;
recordHover(event: HoverEvent): void;
Expand Down
2 changes: 1 addition & 1 deletion public/core/host/InspectorFrontendHostAPI.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions public/core/host/UserMetrics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,6 @@ export declare enum DevtoolsExperiments {
'sources-frame-indentation-markers-temporarily-disable' = 83,
'css-type-component-length-deprecate' = 85,
'timeline-show-postmessage-events' = 86,
'timeline-extensions' = 89,
'timeline-enhanced-traces' = 90,
'timeline-compiled-sources' = 91,
'timeline-debug-mode' = 93,
Expand Down Expand Up @@ -1059,7 +1058,6 @@ export declare const enum SwatchType {
Flex = 6,
Angle = 7,
Length = 8,
PositionFallbackLink = 9,
PositionTryLink = 10,
MaxValue = 11
}
Expand Down
1 change: 0 additions & 1 deletion public/core/host/UserMetrics.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/host/UserMetrics.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/en-US.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/en-XL.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/generated/collected-ui-strings.d

Large diffs are not rendered by default.

Loading

0 comments on commit 4496624

Please sign in to comment.