Files
wifi-densepose/npm/packages/agentic-synth/examples/employee-simulation/workplace-events.d.ts
ruv d803bfe2b1 Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector
git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
2026-02-28 14:39:40 -05:00

49 lines
2.0 KiB
TypeScript

/**
* Workplace Events Simulation
*
* Generates realistic workplace events including onboarding, offboarding, promotions,
* performance reviews, training, team building, and conflict resolution scenarios.
*
* RESPONSIBLE USE: These simulations are for HR system testing and process optimization.
* Handle sensitive event data with appropriate privacy and security measures.
*/
/**
* Generate employee onboarding events
* Models the new hire journey and integration process
*/
export declare function generateOnboardingEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate employee offboarding events
* Models departure process and exit analytics
*/
export declare function generateOffboardingEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate promotion and transfer events
* Models career advancement and internal mobility
*/
export declare function generatePromotionEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate performance review events
* Models the review cycle and feedback process
*/
export declare function generatePerformanceReviewEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate training and development events
* Models learning activities and skill-building programs
*/
export declare function generateTrainingEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate team building activity events
* Models team cohesion and morale activities
*/
export declare function generateTeamBuildingEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate conflict resolution events
* Models workplace conflicts and resolution processes
*/
export declare function generateConflictResolutionEvents(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Run all workplace event examples
*/
export declare function runAllWorkplaceEventExamples(): Promise<void>;
//# sourceMappingURL=workplace-events.d.ts.map