Files
klz-cables.com/.pnpm-store/v10/files/0e/624f0070c97726fa6721a64f92f9584f6f4d62898bcc7f01ff500a98b7f7c9a9999f50c5a0f1fa3b04dcf13616ec80179c1901c75e6139b08f2025a9c933eb
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

28 lines
1.5 KiB
Plaintext

import { entityKind } from "../../entity.cjs";
import type { GelDialect } from "../dialect.cjs";
import type { GelPreparedQuery, GelQueryResultHKT, GelQueryResultKind, GelSession, PreparedQueryConfig } from "../session.cjs";
import type { GelMaterializedView } from "../view.cjs";
import { QueryPromise } from "../../query-promise.cjs";
import type { RunnableQuery } from "../../runnable-query.cjs";
import type { Query, SQLWrapper } from "../../sql/sql.cjs";
export interface GelRefreshMaterializedView<TQueryResult extends GelQueryResultHKT> extends QueryPromise<GelQueryResultKind<TQueryResult, never>>, RunnableQuery<GelQueryResultKind<TQueryResult, never>, 'gel'>, SQLWrapper {
readonly _: {
readonly dialect: 'gel';
readonly result: GelQueryResultKind<TQueryResult, never>;
};
}
export declare class GelRefreshMaterializedView<TQueryResult extends GelQueryResultHKT> extends QueryPromise<GelQueryResultKind<TQueryResult, never>> implements RunnableQuery<GelQueryResultKind<TQueryResult, never>, 'gel'>, SQLWrapper {
private session;
private dialect;
static readonly [entityKind]: string;
private config;
constructor(view: GelMaterializedView, session: GelSession, dialect: GelDialect);
concurrently(): this;
withNoData(): this;
toSQL(): Query;
prepare(name: string): GelPreparedQuery<PreparedQueryConfig & {
execute: GelQueryResultKind<TQueryResult, never>;
}>;
execute: ReturnType<this['prepare']>['execute'];
}