FRE-651: CEO coordination notes for founder bio/headshot assets

This commit is contained in:
2026-04-26 07:41:45 -04:00
parent 3d5ff8650c
commit 5f4eb60a98
476 changed files with 67971 additions and 125 deletions

24
node_modules/standardwebhooks/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
/// <reference types="node" />
declare class ExtendableError extends Error {
constructor(message: any);
}
export declare class WebhookVerificationError extends ExtendableError {
constructor(message: string);
}
export interface WebhookUnbrandedRequiredHeaders {
"webhook-id": string;
"webhook-timestamp": string;
"webhook-signature": string;
}
export interface WebhookOptions {
format?: "raw";
}
export declare class Webhook {
private static prefix;
private readonly key;
constructor(secret: string | Uint8Array, options?: WebhookOptions);
verify(payload: string | Buffer, headers_: WebhookUnbrandedRequiredHeaders | Record<string, string>): unknown;
sign(msgId: string, timestamp: Date, payload: string | Buffer): string;
private verifyTimestamp;
}
export {};