feat: add $randomCompanyName predefined variable (#5479)
Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
parent
76e6c3ae2f
commit
1b0a21a3b2
1 changed files with 32 additions and 0 deletions
|
|
@ -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
|
||||
{
|
||||
key: "$randomCity",
|
||||
|
|
|
|||
Loading…
Reference in a new issue