sistema creado v0.5.0
Some checks failed
build-and-push / deploy (push) Has been skipped
build-and-push / build (push) Failing after 6s

This commit is contained in:
2025-05-14 16:10:41 -06:00
parent b5e40cf4ac
commit 745168cf51
193 changed files with 7267 additions and 8789 deletions

12
api/node_modules/raw-body/index.d.ts generated vendored
View File

@@ -1,3 +1,5 @@
import { Readable } from 'stream';
declare namespace getRawBody {
export type Encoding = string | true;
@@ -56,29 +58,29 @@ declare namespace getRawBody {
* limit. Ideal for parsing request bodies.
*/
declare function getRawBody(
stream: NodeJS.ReadableStream,
stream: Readable,
callback: (err: getRawBody.RawBodyError, body: Buffer) => void
): void;
declare function getRawBody(
stream: NodeJS.ReadableStream,
stream: Readable,
options: (getRawBody.Options & { encoding: getRawBody.Encoding }) | getRawBody.Encoding,
callback: (err: getRawBody.RawBodyError, body: string) => void
): void;
declare function getRawBody(
stream: NodeJS.ReadableStream,
stream: Readable,
options: getRawBody.Options,
callback: (err: getRawBody.RawBodyError, body: Buffer) => void
): void;
declare function getRawBody(
stream: NodeJS.ReadableStream,
stream: Readable,
options: (getRawBody.Options & { encoding: getRawBody.Encoding }) | getRawBody.Encoding
): Promise<string>;
declare function getRawBody(
stream: NodeJS.ReadableStream,
stream: Readable,
options?: getRawBody.Options
): Promise<Buffer>;