17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
/**
|
|
* Anthropic 1P event logging egress is disabled in this build.
|
|
*
|
|
* Only the shutdown and feedback call sites still need a local stub.
|
|
*/
|
|
|
|
export async function shutdown1PEventLogging(): Promise<void> {
|
|
return
|
|
}
|
|
|
|
export function logEventTo1P(
|
|
_eventName: string,
|
|
_metadata: Record<string, number | boolean | undefined> = {},
|
|
): void {
|
|
return
|
|
}
|