feat: add $randomCompanyName predefined variable (#5479)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Eman Fateen 2025-10-27 18:29:39 +03:00 committed by GitHub
parent 76e6c3ae2f
commit 1b0a21a3b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -289,6 +289,38 @@ export const HOPP_SUPPORTED_PREDEFINED_VARIABLES: PredefinedVariable[] = [
}, },
}, },
// Company names
{
key: "$randomCompanyName",
description: "A random company name.",
getValue: () => {
const companyNames = [
"Nexora",
"CodeLoom",
"BitHaven",
"SynapseWorks",
"VoltEdge",
"Elevoria",
"Bridgent",
"Verniq",
"Corevia",
"Stratigen",
"Lunova Studio",
"Pixelora",
"MuseMind",
"BrightNest",
"Auralis",
"VerdaFlow",
"BloomShift",
"PureTrek",
"EcoVerse",
"ReLeaf Labs",
]
return companyNames[Math.floor(Math.random() * companyNames.length)]
},
},
// Addresses // Addresses
{ {
key: "$randomCity", key: "$randomCity",