Is it possible to change my username?
For example when creating a worker, it is using my old username. Which is a company now with a new name.
delete-all-deployments@1.0.0 start
node index.js

env object.import { z } from "zod";
import dotenv from "dotenv";
dotenv.config();
export const envVariables = z.object({
DATABASE_URL: z.string(),
VITE_POSTHOG_KEY: z.string().optional(),
VITE_POSTHOG_HOST: z.string().optional(),
VITE_GOOGLE_CLIENT_ID: z.string(),
GOOGLE_CLIENT_SECRET: z.string(),
GOOGLE_API_KEY: z.string(),
R2_SECRET_ACCESS_KEY: z.string(),
R2_ACCOUNT_ID: z.string(),
R2_ACCESS_KEY_ID: z.string(),
});
envVariables.parse(process.env);
declare global {
namespace NodeJS {
interface ProcessEnv extends z.infer<typeof envVariables> {}
}
}
declare module "bun" {
interface Env extends z.infer<typeof envVariables> {}
}