first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { CustomerConfig, TeamConfig } from './pages/governance.page'
export function createTeamData(overrides: Partial<TeamConfig> = {}): TeamConfig {
const timestamp = Date.now()
return {
name: `E2E Team ${timestamp}`,
budget: { maxLimit: 100, resetDuration: '1M' },
...overrides,
}
}
export function createCustomerData(overrides: Partial<CustomerConfig> = {}): CustomerConfig {
const timestamp = Date.now()
return {
name: `E2E Customer ${timestamp}`,
budget: { maxLimit: 50, resetDuration: '1d' },
...overrides,
}
}