Files
klz-cables.com/.pnpm-store/v10/files/19/32f8cf499b0a3dab7900929484f2feda27a9b92c87a1057cd8fcfce557ac4a48f152f71fed09c7c1fa415a77a6d28eb258e44a3af1816cd2a89a6408a0e553
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

44 lines
1.6 KiB
Plaintext

import { AuthenticationData, AuthenticationMode } from "../../../auth/types.cjs";
import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/utils/shares.d.ts
/**
* Authenticate as a share user.
*
* @param share The ID of the share.
* @param password Password for the share, if one is configured.
* @param mode Whether to retrieve the refresh token in the JSON response, or in a httpOnly cookie. One of `json`, `cookie` or `session`. Defaults to `cookie`.
*
* @returns Authentication data.
*/
declare const authenticateShare: <Schema>(share: string, password?: string, mode?: AuthenticationMode) => RestCommand<AuthenticationData, Schema>;
/**
* Sends an email to the provided email addresses with a link to the share.
*
* @param share Primary key of the share you're inviting people to.
* @param emails Array of email strings to send the share link to.
*
* @returns Nothing
*/
declare const inviteShare: <Schema>(share: string, emails: string[]) => RestCommand<void, Schema>;
/**
* Allows unauthenticated users to retrieve information about the share.
*
* @param id Primary key of the share you're viewing.
*
* @returns The share objects for the given UUID, if it's still valid.
*/
declare const readShareInfo: <Schema>(id: string) => RestCommand<{
id: string;
collection: string;
item: string;
password: string | null;
date_start: string | null;
date_end: string | null;
times_used: number | null;
max_uses: number | null;
}, Schema>;
//#endregion
export { authenticateShare, inviteShare, readShareInfo };
//# sourceMappingURL=shares.d.cts.map