Initial kitchen scaffold — Phase 1 kitchen port (build-verified 2026-07-11)
FastAPI backend (Python 3.11, MSSQL ODBC for SambaPOS, Azure DI OCR),
kitchen_db on central PG. React/TS/Vite frontend with navy sidebar layout.
Backend: auth.py (APP_SLUG=kitchen, SimpleNamespace — archive routes use
.kitchen_id/.is_admin without modification), main.py (51 migrations, scheduler,
internal router for KDS bookings feed), api/internal.py, full archive API
(31 routers: invoices, recipes, menus, sambapos, resos, newbook, disputes,
purchase_orders, etc.), models, migrations, OCR pipeline.
kitchen_id pinned to 1 (B1 — single hotel).
Frontend: AuthGate (app=kitchen, token shim for archive compat — B5b pending),
Layout (navy sidebar, 6 sections, Lucide icons, teal --app-primary),
App.tsx (Outlet pattern, UploadApp outside Layout), index.css (full :root block).
strict: false — archive components have type issues; build clean.
Note: 45 archive components call fetch('/api/...') without /kitchen/ prefix
(B5b). Runtime 404s; deferred until after initial testing.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
8d688b459d
10003 changed files with 1928395 additions and 0 deletions
39
frontend/node_modules/pdf-lib/cjs/api/PDFEmbeddedFile.d.ts
generated
vendored
Normal file
39
frontend/node_modules/pdf-lib/cjs/api/PDFEmbeddedFile.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
import Embeddable from "./Embeddable";
|
||||
import PDFDocument from "./PDFDocument";
|
||||
import FileEmbedder from "../core/embedders/FileEmbedder";
|
||||
import { PDFRef } from "../core";
|
||||
/**
|
||||
* Represents a file that has been embedded in a [[PDFDocument]].
|
||||
*/
|
||||
export default class PDFEmbeddedFile implements Embeddable {
|
||||
/**
|
||||
* > **NOTE:** You probably don't want to call this method directly. Instead,
|
||||
* > consider using the [[PDFDocument.attach]] method, which will create
|
||||
* instances of [[PDFEmbeddedFile]] for you.
|
||||
*
|
||||
* Create an instance of [[PDFEmbeddedFile]] from an existing ref and embedder
|
||||
*
|
||||
* @param ref The unique reference for this file.
|
||||
* @param doc The document to which the file will belong.
|
||||
* @param embedder The embedder that will be used to embed the file.
|
||||
*/
|
||||
static of: (ref: PDFRef, doc: PDFDocument, embedder: FileEmbedder) => PDFEmbeddedFile;
|
||||
/** The unique reference assigned to this embedded file within the document. */
|
||||
readonly ref: PDFRef;
|
||||
/** The document to which this embedded file belongs. */
|
||||
readonly doc: PDFDocument;
|
||||
private alreadyEmbedded;
|
||||
private readonly embedder;
|
||||
private constructor();
|
||||
/**
|
||||
* > **NOTE:** You probably don't need to call this method directly. The
|
||||
* > [[PDFDocument.save]] and [[PDFDocument.saveAsBase64]] methods will
|
||||
* > automatically ensure all embeddable files get embedded.
|
||||
*
|
||||
* Embed this embeddable file in its document.
|
||||
*
|
||||
* @returns Resolves when the embedding is complete.
|
||||
*/
|
||||
embed(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=PDFEmbeddedFile.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue