- Adjusted .prettierrc to ensure consistent formatting with a newline at the end of the file. - Reformatted eslint.config.mjs for improved readability by aligning array elements. - Updated pnpm-lock.yaml to use single quotes for consistency across dependencies. - Simplified worktree setup in .cursor/worktrees.json for cleaner configuration. - Enhanced documentation in .cursor/plans to clarify architecture refactoring. - Refactored various service files for improved readability and maintainability, including rate-limiting and auth services. - Updated imports and exports across multiple files for consistency and clarity. - Improved error handling and logging in service methods to enhance debugging capabilities. - Streamlined utility functions for better performance and maintainability across the domain packages.
18 lines
518 B
TypeScript
18 lines
518 B
TypeScript
/**
|
|
* Common Domain
|
|
*
|
|
* Shared types and utilities used across all domains.
|
|
*/
|
|
|
|
export * from "./types.js";
|
|
export * from "./schema.js";
|
|
export * from "./validation.js";
|
|
export * from "./errors.js";
|
|
|
|
// Common provider types (generic wrappers used across domains)
|
|
export * as CommonProviders from "./providers/index.js";
|
|
|
|
// Re-export provider types for convenience
|
|
export type { WhmcsResponse, WhmcsErrorResponse } from "./providers/whmcs.js";
|
|
export type { SalesforceResponse } from "./providers/salesforce.js";
|