Files
klz-cables.com/.pnpm-store/v10/files/f5/f9195ef91453f0eb053e27fb12da330d1f0e722e8f63f66a2c8bbec27bcc2be9be55fb0b95643856528ea8895367778c161ddb5aaa0d5ea07148563fe9f03a
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

29 lines
1.5 KiB
Plaintext

import { entityKind } from "../../entity.cjs";
import type { PgDialect } from "../dialect.cjs";
import type { PgPreparedQuery, PgQueryResultHKT, PgQueryResultKind, PgSession, PreparedQueryConfig } from "../session.cjs";
import type { PgMaterializedView } 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 PgRefreshMaterializedView<TQueryResult extends PgQueryResultHKT> extends QueryPromise<PgQueryResultKind<TQueryResult, never>>, RunnableQuery<PgQueryResultKind<TQueryResult, never>, 'pg'>, SQLWrapper {
readonly _: {
readonly dialect: 'pg';
readonly result: PgQueryResultKind<TQueryResult, never>;
};
}
export declare class PgRefreshMaterializedView<TQueryResult extends PgQueryResultHKT> extends QueryPromise<PgQueryResultKind<TQueryResult, never>> implements RunnableQuery<PgQueryResultKind<TQueryResult, never>, 'pg'>, SQLWrapper {
private session;
private dialect;
static readonly [entityKind]: string;
private config;
constructor(view: PgMaterializedView, session: PgSession, dialect: PgDialect);
concurrently(): this;
withNoData(): this;
toSQL(): Query;
prepare(name: string): PgPreparedQuery<PreparedQueryConfig & {
execute: PgQueryResultKind<TQueryResult, never>;
}>;
private authToken?;
execute: ReturnType<this['prepare']>['execute'];
}